Neil Kolban
71d19752ee
Changes requested for #606 .
2015-11-10 10:56:17 -06:00
Neil Kolban
73d6e30b30
Issue #689 . Fixes for memory leaks in wifi.scan().
2015-10-31 12:19:42 -05:00
Neil Kolban
c3f9948ff5
Issue #688 . Fixes for #688 .
2015-10-30 23:44:31 -05:00
Neil Kolban
ce07d7b9fe
Issue #589 . Design and implementation of wifi.getStatus().
2015-10-29 23:07:58 -05:00
Neil Kolban
f10b99d605
Issue #589 . Changes to the default modes of connect and createAP.
2015-10-28 22:10:50 -05:00
Neil Kolban
cb11ad9b6d
Works for issue #589 . Inclusion of dnsServers option.
2015-10-26 23:21:12 -05:00
Neil Kolban
700415b0a8
Fixes and enhancements to #589 and #630 .
2015-10-25 13:30:30 -05:00
Neil Kolban
d754fa33cd
Issue #589 . Addition of authMode to createAP.
...
The `createAP` method allows us to become an access point. This
commit adds the ability to specify an `authMode` to allow us to
define the incoming authentication mode to be used.
2015-10-24 18:51:04 -05:00
Neil Kolban
dcd5b34f23
More implementation and fixes for Issues #589 and #630 .
2015-10-24 18:06:20 -05:00
Neil Kolban
23846eed72
Initial work on issue #589 . Generic WiFi interface.
...
The first pass of the generic WiFi interface has been performed. We
now have implementations for:
* jswrap_ESP8266_wifi_connect
* jswrap_ESP8266_wifi_createAP
* jswrap_ESP8266_wifi_disconnect
* jswrap_ESP8266_wifi_getIP
* jswrap_ESP8266_wifi_scan
2015-10-24 10:55:12 -05:00
Neil Kolban
6d660c8af7
Implementation of #590 . Implementation of gethostbyname.
2015-10-19 23:00:59 -05:00
Neil Kolban
b866ab37d1
Fix for #673 . Assert through not freeing currentTxBuffer.
2015-10-18 17:45:44 -05:00
Neil Kolban
7151c38c5a
Merge remote-tracking branch 'refs/remotes/espruino/master'
2015-10-17 00:55:17 -05:00
Neil Kolban
60d468ca50
Fixed Unix LF errors.
2015-10-16 18:32:10 -05:00
Neil Kolban
0ae876fe13
Fixes for #670 . JsVar leaks on WiFi Event Handler.
2015-10-16 17:31:06 -05:00
Thorsten von Eicken
512de5d5bb
esp8266 uart clean-up
2015-10-15 22:02:08 -07:00
Thorsten von Eicken
23d80a4939
esp8266: switch OTA to 512 byte chunks
2015-10-15 12:47:03 -07:00
Thorsten von Eicken
354cbb13ff
disable mdns for now
2015-10-15 12:46:34 -07:00
Thorsten von Eicken
ef72504444
merge master into i2c branch
2015-10-14 23:14:54 -07:00
Thorsten von Eicken
644673752c
fix OTA upgrade
2015-10-14 23:07:39 -07:00
Neil Kolban
3f45fa4ccb
Implementation of #655 .
...
This commit provides the first pass at debug log enablement/disablement.
2015-10-13 11:55:50 -05:00
Neil Kolban
314b0542ce
Merge remote-tracking branch 'refs/remotes/espruino/master'
2015-10-12 22:01:21 -05:00
Neil Kolban
ddfc7d4793
Implementation of #642 and #643
2015-10-12 21:30:01 -05:00
Thorsten von Eicken
9234117bd4
reduce OTA chatter; fix wiflash
2015-10-11 14:30:18 -07:00
Thorsten von Eicken
34512a7223
merge master into tve/ota
2015-10-11 14:07:56 -07:00
Thorsten von Eicken
229097c520
add esp8266 OTA firmware update
2015-10-11 14:02:59 -07:00
Neil Kolban
51508dd221
Implementation of a WiFi changes.
...
A number of issues have been addressed here including:
#640 - Addition of stopAP
#637 - Don't require a password when being an access point
#636 - Ensure password meets requirements
2015-10-09 18:07:08 -05:00
Gordon Williams
f3535fa59f
Merge branch 'master' of github.com:espruino/Espruino
...
Conflicts:
libs/network/esp8266/jswrap_esp8266.c
2015-10-09 08:46:35 +01:00
Gordon Williams
198efd02d9
Merge branch 'master' of github.com:espruino/Espruino
...
Conflicts:
libs/network/esp8266/jswrap_esp8266.c
2015-10-09 08:45:22 +01:00
Neil Kolban
f511b70bd0
Typo correction.
2015-10-08 15:18:35 -05:00
Neil Kolban
cae3e971e7
Added unlocks for other functions. #603
...
It dawned on me that other callback functions beyond connect might
suffer the same lack of proper reset support and, sure enough, there
were a few including:
* scanCallback
* wifiEventCallback
* pingCallback
These have now been accommodated.
2015-10-08 15:17:06 -05:00
Neil Kolban
ebd6d90935
Addition of kill support for unlocking vars. #603
2015-10-08 15:04:41 -05:00
Neil Kolban
da89887b29
Addition of copyright commentary. #632 .
2015-10-08 12:51:21 -05:00
Gordon Williams
71fb3f0843
tweaks needed so docs for the website can be compiled again
2015-10-08 16:31:35 +01:00
Neil Kolban
d7efbe2b43
Implementation of DHCP set hostname. Issue #629 .
2015-10-07 23:07:09 -05:00
Neil Kolban
77caad9901
Fixes for issue #603 . Unlocking JsVars that are no longer present.
2015-10-07 18:48:03 -05:00
Neil Kolban
68ea8c2f00
Implementation of #622 . Change operating frequency.
2015-10-06 21:43:00 -05:00
Neil Kolban
b119764160
Fix for code for #618 caught by @igrr.
2015-10-06 17:54:33 -05:00
Neil Kolban
15248475cd
Changed all tab characters to two spaces as per #600 .
2015-10-06 17:46:11 -05:00
Neil Kolban
c2cc382700
Fix for issue #621 - espconn freed and then accessed.
2015-10-06 17:33:25 -05:00
Neil Kolban
6dcfc779f8
Removed all the \brief additions. Issue #600 .
2015-10-05 23:41:01 -05:00
Neil Kolban
8b0c2ee282
No change commit just to force Travis to re-run.
2015-10-05 20:47:48 -05:00
Neil Kolban
d8a5421d32
Logic fixes.
2015-10-05 20:36:38 -05:00
Neil Kolban
cf969a4136
Converted source to Unix style end of line markers.
2015-10-05 20:31:00 -05:00
Neil Kolban
4bec81341a
Implementation of designs for issue #618 .
...
Three designs implemented with a compile time choice of which to use.
2015-10-05 20:28:26 -05:00
Thorsten von Eicken
516ef3cef7
Fix merge issues;
...
Partially address #602 , SDK1.4 is usable now;
2015-10-03 23:18:35 -07:00
Thorsten von Eicken
e11ebcfc1c
esp8266: remove multiple wifi event handler registrations
2015-10-03 23:04:41 -07:00
Thorsten von Eicken
e263ff43e0
merge upstream master into tve's fork
2015-10-03 23:00:46 -07:00
Thorsten von Eicken
360bbae37a
add utility timers; pseudo-fix jshSleep to avoid WDT reset
2015-10-03 22:02:06 -07:00
Neil Kolban
7911591515
Implementation of #596
2015-10-02 20:10:28 -05:00