1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-22 21:23:07 +03:00

1321 Commits

Author SHA1 Message Date
Kiril Zyapkov
d5ab22f4ae ESP8266AVRISP: switch default to active-low reset 2015-08-04 13:45:38 +03:00
Makuna
a2673f2f4b copy paste error fi 2015-08-03 19:58:42 -07:00
Makuna
dfeed84ecb make compatible with existing interrupt lock class
Support both the normal auto lock at all levels, and the lock at a
specific level requiring different syntax
2015-08-03 19:55:56 -07:00
Makuna
57642c10b6 Interrupt cleanup
Fixes issue of reentrant calls to nointerrupts()
exposed functional replacements to cli sei and SREG when dealing with
interrupts
InterruptLock class to auto stop and restore interrupt level
Fix user ISR calls to be like Arduino with interrupts disabled fully.
2015-08-03 19:35:17 -07:00
Kiril Zyapkov
56b70f6aab ESP8266AVRISP: add README.md 2015-08-04 01:33:00 +03:00
Kiril Zyapkov
5ac5d8e008 ESP8266AVRISP: initial 2015-08-04 01:08:24 +03:00
Markus Sattler
4c26729104 Merge remote-tracking branch 'remotes/esp8266/esp8266' into esp8266 2015-08-03 21:32:52 +02:00
Me No Dev
53c8d87e8f Merge pull request #3 from esp8266/esp8266
pull master
2015-08-03 22:00:28 +03:00
Ivan Grokhotkov
90efba073f Update esptool to 0.4.6 2015-08-03 14:04:35 -04:00
Juha Paananen
52390a3f35 Include WIFI_OFF option for WiFi.mode(m) 2015-08-03 18:21:52 +03:00
Markus Sattler
5465eb1755 add parameter names to Arduino.h 2015-08-03 17:12:46 +02:00
Me No Dev
c69135d773 Merge pull request #2 from esp8266/esp8266
pull master
2015-08-01 13:47:27 +03:00
Ivan Grokhotkov
8e09520501 Provide links to previous stable versions 2015-08-01 11:37:02 +03:00
Ivan Grokhotkov
47a24ef23a FileSystem: update test case 2015-07-30 13:58:00 +03:00
Ivan Grokhotkov
5b82668a75 Fix warning for __run_user_rf_pre_init declaration 2015-07-30 13:52:20 +03:00
Ivan Grokhotkov
4aa8e1b8d5 FileSystem: interface changes and some additions
- rename mount to begin to be more in line with other libraries
- add rename and remove methods
- remove freestanding functions (mount,open,openDir) from public API until that part is ready
- fix resource leak in SPIFFSDirImpl
2015-07-30 13:44:50 +03:00
Ivan Grokhotkov
544734bdc5 Merge pull request #633 from reaper7/patch-2
Update reference.md
2015-07-30 09:42:38 +03:00
Ivan Grokhotkov
b030a37bf1 Merge pull request #627 from Protoneer/patch-2
Fixed wrongly pasted comment
2015-07-30 09:42:25 +03:00
reaper7
a6a0b87b21 Update reference.md
fix: INPUT_PULLDOWN_16 instead INPUT_PULLDOWN
https://github.com/esp8266/Arduino/issues/604
2015-07-30 07:43:18 +02:00
Bertus Kruger
735fa18ad6 Fixed wrongly pasted Comment 2015-07-29 20:29:20 +12:00
Ivan Grokhotkov
c4a1af87c2 Fix typos 2015-07-28 20:16:21 +03:00
Ivan Grokhotkov
010a1a9f01 Update readme and change log 2015-07-28 20:08:21 +03:00
Ivan Grokhotkov
2ad5590798 Merge pull request #599 from raimohanska/patch-1
Mention DHT22 in addition to DHT11
2015-07-28 18:16:52 +03:00
Ivan Grokhotkov
c0e0836a0b Merge branch 'WifiSendP' of https://github.com/Makuna/Arduino into Makuna-WifiSendP
Conflicts:
	README.md
2015-07-28 18:15:20 +03:00
Ivan Grokhotkov
f96e36ad02 Merge branch 'feature/fs' into esp8266 2015-07-28 18:10:26 +03:00
Ivan Grokhotkov
6c90b34130 Merge branch 'Links2004-esp8266' into esp8266
* Links2004-esp8266:
  allow user to run code in user_rf_pre_init. add void to "C" functions.
  add debug out to ESP8266WiFiMulti::APlistAdd
  update SDK to esp_iot_sdk_v1.2.0_15_07_13_p4
  add softAPdisconnect function ```int softAPdisconnect(bool wifioff = false);``` external mode calls now change the use flags see #529
  function dumps moved to esp8266-wiki
  filter addresses out of function list
  patch the SDK to latest version (3 patches)
  rename example of ILI9341 (before the IDE dont display it)
  send postmortem infos to Serial1 to.
  add lib dump
  add basic WPS function
  allow setting the host name of AP interface
  update ld add *(.sdk.version)
  update SDK to v1.2.0_15_07_03
  upate phy with values from SDK 1.1.2 (esp_init_data_default.bin)
  Pulldown only possible for in 16. ( see #478 ) rename define to INPUT_PULLDOWN_16 to make it clear
  disable DEBUG_HTTP_UPDATE
2015-07-28 18:08:08 +03:00
Ivan Grokhotkov
bbd8c9b411 FS wrapper 2015-07-28 15:23:11 +03:00
Markus Sattler
42332fc46e allow user to run code in user_rf_pre_init.
add void to "C" functions.

example:
extern "C" void __run_user_rf_pre_init(void) {
    system_phy_set_rfoption(2);
}

see: #515 and #413
2015-07-25 09:22:37 +02:00
Markus Sattler
cf942a2ae6 Merge remote-tracking branch 'remotes/esp8266/esp8266' into esp8266 2015-07-24 22:49:52 +02:00
Makuna
8fa156d356 send_P, sendContent_P, and FPSTR
This allows for the content of server response to be stored in flash
memory.
2015-07-24 12:41:26 -07:00
Juha Paananen
599eb5a357 Mention DHT22 in addition to DHT11
Also, update dht library version to 1.1.1
2015-07-23 23:24:59 +03:00
Ivan Grokhotkov
d96959cef7 Update change log 2015-07-23 23:02:58 +03:00
Ivan Grokhotkov
d645c01be8 Update change log 2015-07-23 19:02:07 +03:00
Markus Sattler
c33e2a60db Merge remote-tracking branch 'remotes/esp8266/esp8266' into esp8266 2015-07-23 17:27:30 +02:00
Ivan Grokhotkov
91ca9ba75b Make sure WDT is re-enabled in eboot even in case of error (#517) 2015-07-23 16:39:56 +03:00
Ivan Grokhotkov
481cee6460 Disable WDT in eboot while copying new sketch (#517) 2015-07-23 16:34:11 +03:00
Ivan Grokhotkov
973ae3986b Merge pull request #595 from esp8266/travis-tests
Verify sketches as part of travis build
2015-07-23 16:19:29 +03:00
Ivan Grokhotkov
496da02f14 Verify sketches as part of travis build
Squashed commits:
[7d1b42f] Encrypt token, skip some tests
[17b8f39] Fix sha1 example path
[f3050b1] Fix build, add webhook
[fd2c9bd] Fix build errors, update mDNS library readme
[7b87031] Make common.sh more flexible
[3ba3eb2] Test all sketches
[87beb8a] Build all sketches in esp8266 core
[f2464f1] Fix paths
[823a9ae] Remove sudo usage
[7fce734] Fix arduino commands
[619bc7d] Move all commands into travis script
[15a5ada] First attempt test runner
2015-07-23 16:06:07 +03:00
Ivan Grokhotkov
d35b72d41c Documentation update
- mention analogWriteRange and analogWriteFreq
- update change log
- add pwm output symbol for pin 16 to svg
2015-07-23 01:29:12 +03:00
Ivan Grokhotkov
11594b1340 Fix optimistic_yield usage (#588) 2015-07-22 22:50:26 +03:00
Ivan Grokhotkov
a9d5ef198a Fix SparkFun Thing board definition 2015-07-22 22:48:52 +03:00
Ivan Grokhotkov
467716de81 Fix travis build link 2015-07-22 18:01:32 +03:00
Ivan Grokhotkov
de34190c79 Update build status link, fix typo 2015-07-22 18:00:15 +03:00
Ivan Grokhotkov
17399b3c08 Merge pull request #587 from esp8266/doc-update
Documentation update
2015-07-22 17:46:37 +03:00
Ivan Grokhotkov
72ac19821c Fix errors in core reference, mention new libraries. 2015-07-22 17:45:30 +03:00
Ivan Grokhotkov
a1fa03f007 Update supported boards description 2015-07-22 17:35:35 +03:00
Ivan Grokhotkov
d93f05f7e0 Add line missing after rebase 2015-07-22 17:23:28 +03:00
Ivan Grokhotkov
e03efe3b5d Documentation update
add jekyll front matters, update links
2015-07-22 17:22:04 +03:00
h4rm0n1c
f709abb658 Added workaround for broken SVG rendering.
As discussed here: https://github.com/isaacs/github/issues/316
2015-07-22 17:22:04 +03:00
h4rm0n1c
146eebb7bc Added Note about Pullup and Pulldown resistors. 2015-07-22 17:22:04 +03:00