Arnim Läuger
fc2f325029
add missing NULLification of serout.delay_table after luaM_freearray() ( #2220 )
2018-01-10 21:25:35 +01:00
Philip Gladstone
ceadd30bca
Add support for the wifi monitor mode in the SDK ( #2204 )
2018-01-10 21:24:41 +01:00
Philip Gladstone
77fe51050a
Addition of gpio.pulse functions ( #2190 )
2018-01-10 21:08:39 +01:00
Johny Mattsson
452778eda8
Fix batch multi-line UART input discarding all but first line ( #2217 )
...
* Only load a single non-empty line from the uart at a time.
* Don't fall behind in processing of uart buffer.
2018-01-04 22:50:39 +01:00
Pawel Jasinski
05b0a0134c
host field in HTTP header is no longer limited to 31 charcters ( #2210 )
2017-12-25 21:47:45 +01:00
Carlos Bastos Filho
442e3e2e6c
Update file.c
...
Buffer size of funtion readline is wrong (Line 480)
Should be FILE_READ_CHUNK = 1024 bytes instead 256 bytes
2017-12-19 15:32:23 -02:00
Philip Gladstone
9aebc84b72
Add support of counting of interrupts ( #2149 )
...
* Add support of counting of interrupts
* Update the timestamp when interrupt happens during dispatch. Also
clear out interrupts when setting up a new callback
2017-12-17 21:42:54 +01:00
Philip Gladstone
11c47fa17a
New version of spiffs ( #2172 )
2017-12-03 13:14:22 +01:00
Philip Gladstone
ef91580c7b
Addition of a Bloom Filter object ( #2176 )
...
* Initial checkin
* Add bloom.md into mkdocs
* Added reset and improved info
* Update bloom.c
* Update bloom.md
* Add Wikipedia link
2017-12-03 13:10:59 +01:00
Lukáš Voborský
87a6a9bdb9
Add BME680 module ( #2151 )
2017-11-19 20:49:07 +01:00
Mark Deneen
4af68d8360
WiFi method to adjust maximum TX power ( #2171 )
2017-11-19 20:00:20 +01:00
Philip Gladstone
5ece2fda20
Another dsleep fix (or rather a not-deep-sleep case) ( #2155 )
...
* Make the rtc variables not be cleared by the .bss initialization
* Move the save to the right place
* Make sure that we reset the rtctime to 0 if we didn't sleep properly.
* Setting the seconds to zero doesn't update the dsleep calibration
2017-11-03 17:50:10 +01:00
Philip Gladstone
0f7716297c
Make the CRON module work reliably ( #2153 )
2017-10-30 11:05:41 +01:00
Terry Ellison
ffc914dad0
Merge pull request #2152 from pjsg/fix-no-int
...
Make it build without INTERRUPT_ENABLE
2017-10-29 18:19:40 +00:00
philip
f17b5ebf59
Make it build without INTERRUPT_ENABLE
2017-10-29 10:35:24 -04:00
Johny Mattsson
4a91464467
Fixed broken wifi.sta.{dis,}connect() with event mon enabled. ( #2098 )
2017-10-28 23:23:15 +02:00
Philip Gladstone
1a6e83d088
Fixes problems with time not preserved through dsleep ( #2148 )
...
* Make the rtc variables not be cleared by the .bss initialization
* Move the save to the right place
2017-10-28 22:16:09 +02:00
Nathaniel Wesley Filardo
5c8619eb4d
ws2812 mix: add all, then divide ( #2032 )
...
This achieves rounding between multiple summed frame buffers
2017-10-22 19:20:45 +02:00
Suraj151
aebfd1a907
Swap reading y and z values ( #2137 )
2017-10-16 14:51:24 +02:00
Johny Mattsson
3e60fa8f60
Fix data loss in TCP streams. ( #2097 )
...
* Fix data loss in TCP streams.
* Factored out the UDP extra args handling.
2017-09-28 22:41:22 +02:00
dnc40085
7946deadab
Added boolean return value for wifi.sta.sethostname ( #2079 )
...
- simplified wifi_change_default_host_name
- refactored code that checks hostname for compliance
2017-09-15 22:38:35 +02:00
Philip Gladstone
e4d010e1c0
Handle doublequotes in strings. ( #2104 )
2017-09-15 22:25:13 +02:00
Nathaniel Wesley Filardo
f9e0aab200
cron: don't include rtctime_internal.h ( #2084 )
...
That file is supposed to only be included once because it does things
like declare static globals. As it stands, cron doesn't believe time is
ticking.
Fixes #2080
2017-08-24 21:17:31 +02:00
Nathaniel Wesley Filardo
fe032edd9c
Add %p to libc's debug printf ( #2062 )
2017-08-16 21:38:10 +02:00
fetchbot
d079b842a8
add ds18b20 module ( #2003 )
...
* add ds18b20 module
* add intitial eeprom value definition
* adjust read() function and address handling
2017-08-16 21:04:23 +02:00
dnc40085
c9e8621821
fix for travisCI
2017-08-05 14:46:14 -07:00
dnc40085
295e640a7a
Comment out pmsleep and timer_suspend options in user_config.h
...
for master drop
2017-08-05 14:05:26 -07:00
Johny Mattsson
e09e830d4b
Fixed alignment assumptions in SHA2 update. ( #2034 )
...
Unaligned loads are a no-no on many architectures, the ESP8266 included.
2017-07-31 14:12:34 +02:00
Philip Gladstone
d93465cd86
Add tracking and control of the rate error in the clock crystal. ( #1697 )
...
* Improve RTC timekeeping -- includes clock rate tracking
* Improved division by 1M
* Fix crash in sntp
* Disable RTC debug
* Get the offset correct
* Add comments on where the mysterious numbers came from
* Fix a crash with auto repeat mode and errors on repeat
2017-07-18 22:51:20 +02:00
Johny Mattsson
864bcdbd89
Merge pull request #2038 from pjsg/spiffs-blocksize
...
Fix the SPIFFS blocksize issues
2017-07-12 11:15:25 +10:00
dnc40085
9edcce5b44
Update wifi.sta.config to save configuration to flash by default ( #1998 )
2017-07-08 22:51:33 +02:00
dnc40085
2e33abe198
Modify wifi.sta.get*config() to return AP's MAC ( #2026 )
...
* Modified wifi.sta.get*config() to return AP's MAC even if bssid_set==0
* Improved documentation for wifi.sta.getapinfo, fixes #2025
2017-07-08 22:49:02 +02:00
philip
761c9dff7f
Try to fix the blocksize issues
2017-07-06 23:18:06 -04:00
Johny Mattsson
c01f653736
Unbreak build when SPIFFS_CACHE==0. ( #2028 )
2017-07-05 18:00:26 +02:00
Johny Mattsson
0c315ed0ef
Merge pull request #2024 from DiUS/sjson_undefined_symbol_fix
...
Sjson undefined symbol fix
2017-07-04 14:21:41 +10:00
Johny Mattsson
ea4d33715f
Cleaned up sjson module build.
...
- Move jsonsl build to regular library build rather than #include the .c file
- Provide wrappers for malloc/calloc/free to fix undefined symbol warnings.
2017-07-03 13:35:45 +10:00
Gregor Hartmann
15b4fa24fd
Call HTTP callback in all cases ( #2020 )
...
* fix 2007 Call callback in all cases, call callback with errorcode -1 if no connection could be establioshed
* change logging from ERR to DEBUG
* make debug output more clear (hopefully)
* add handling of errors to docs, note error handling on every call instead of only in the main documentation
2017-07-01 18:29:54 +02:00
dnc40085
e2fc37fa17
Removed code allowing argument style station configuration ( #2018 )
2017-06-29 22:05:40 +02:00
Arnim Läuger
435a4cf5a1
backport fix for https://github.com/espressif/esp-idf/issues/631 ( #2006 )
...
* backport fix for https://github.com/espressif/esp-idf/issues/631
* remove code from intermediate fix
2017-06-20 21:59:12 +02:00
Philip Gladstone
438f1609f6
Only handle errors if we have not parsed a complete object ( #1999 )
...
* Only handle errors if we have not parsed a complete object
* Fix typo which means that \n was not an ending character
2017-06-18 08:20:26 +02:00
Arnim Läuger
216b820d08
Ensure standard DHCP message length when sending response to clients ( #1985 )
2017-05-25 13:59:45 +02:00
dnc40085
e90ffb4266
Add mcp4725 module ( #1966 )
2017-05-21 16:30:26 +02:00
dnc40085
169cb69ee2
Add event callbacks to wifi.sta.config() and wifi.ap.config() and more ( #1903 )
...
* Add event callbacks to wifi.sta.config() and wifi.ap.config() and more
Added option to register event callbacks during configuration of both
station and AP.
Added option to register event callbacks to `wifi.sta.connect()` and
`wifi.sta.disconnect()`
* Add note about event registration to wifi module documentation
Other minor changes to wifi documentation are also included
* Add more detail to documentation for wifi.sta.config()
2017-05-21 16:18:56 +02:00
dnc40085
7b1f0223ad
Removed wifi station event monitor ( #1900 )
...
The following functions were removed:
- `wifi.sta.eventMonReg()`
- `wifi.sta.eventMonStart()`
- `wifi.sta.eventMonStop()`
The corresponding documentation has also been removed
This PR addresses issue #1893
2017-05-21 16:17:54 +02:00
Arnim Läuger
7dae5236e6
Deprecate xyz.init() in favor of xyz.setup(), removing inherent i2c configuration ( #1887 )
2017-05-21 16:17:29 +02:00
Philip Gladstone
e7f063950b
Update to current version of SPIFFS ( #1949 )
2017-05-21 16:16:39 +02:00
Arnim Läuger
4e4dfc1d88
Align 8 MB & 16 MB flash sizes with SDK 2.1.0. ( #1968 )
...
* align 8MB and 16MB auto flash support with sdk 2.1.0
* remove SAFE_API
* fix flash size mismatch detection logic
2017-05-16 16:50:36 +02:00
dnc40085
447fcd397d
Exposed wifi event OPMODE_CHANGED. ( #1967 )
2017-05-15 09:05:22 +02:00
Arnim Läuger
c4516f1a17
Upgrade to SDK 2.1.0. ( #1962 )
2017-05-11 07:13:23 +02:00
fetchbot
faefc09595
add ads1115 module ( #1942 )
...
* add ads1115 module
* replace os_delay with os_timer
* typo
2017-05-07 09:49:57 +02:00