1. 18 May, 2016 1 commit
    • Johny Mattsson's avatar
      Rework ADC mode setting approach (#1285) · 30d354c2
      Johny Mattsson authored
      - Stop fighting against the SDK in terms of owning/writing the init_data block.
        NodeMCU included a default init_data block because originally the SDK did
        not, but by now it's not needed.
      
      - Expose a way to reconfigure the ADC mode from Lua land. With most people
        using the cloud builder and not able to change the #define for byte 107
        this has been a pain point.
      
      - Less confusion about which init_data has been used. Lua code can now simply
        state what mode it wants the ADC to be in, and not worry about the rest of
        the init_data complexities such as the init_data changing location due to
        flashing with wrong flash_size setting, or doing/not doing a chip-erase
        before loading new NodeMCU firmware.
      30d354c2
  2. 16 May, 2016 1 commit
  3. 15 May, 2016 1 commit
  4. 14 May, 2016 2 commits
  5. 13 May, 2016 2 commits
  6. 09 May, 2016 1 commit
    • Thomas Soëte's avatar
      Finalize work on ws2812 module · 0577c8af
      Thomas Soëte authored
      * Fix bug on first write
      	Pin is 'HIGH' at reset, so we need to pull it down and generate a
      	reset.
      
      * Move init code to flash section, not needed to be in iram.
      
      * Remove pin choice in API
      
      * Remove lock in ws2812_buffer_write
      
      * Remove naked malloc
      
      * Drop ws2812_writergb
      
      * Drop support of ws2812.buffers to ws2812_writegrb should use ws2812.buffers:write
      
      * Add support for <>3 colors per leds strips (RGBW)
      
      * Remove ICACHE_FLASH_ATTR
      
      * Add static const on _uartData to avoid initialization penalty
      0577c8af
  7. 02 May, 2016 1 commit
  8. 01 May, 2016 1 commit
  9. 29 Apr, 2016 1 commit
  10. 28 Apr, 2016 1 commit
  11. 26 Apr, 2016 1 commit
  12. 25 Apr, 2016 1 commit
  13. 17 Apr, 2016 2 commits
  14. 15 Apr, 2016 1 commit
    • Johny Mattsson's avatar
      SNTP module enhancements (#1243) · f4288978
      Johny Mattsson authored
      * Provide an error code to SNTP error callback.
      
      * Switch SNTP to use ephemeral port.
      
      In case we're being hit by ISP-level thou-shall-not-run-NTP silliness.
      f4288978
  15. 11 Apr, 2016 2 commits
  16. 03 Apr, 2016 2 commits
    • Marcel Stör's avatar
      Fix link syntax · 7d576efe
      Marcel Stör authored
      7d576efe
    • Philip Gladstone's avatar
      Take 2: Add regular sends to mdns. Check for (some) buffer overflows. Make it handle unicast · 3a5e5f10
      Philip Gladstone authored
      Merging as suggested by @TerryE (and squashing at the same time. Turns out that this feature is enabled for this repo).
      
      * Squashed commit of the following:
      
      commit f985f10d9d2ee035f5a6ee6245c60d9904d98cc1
      Author: philip <philip@gladstonefamily.net>
      Date:   Sun Mar 27 21:52:46 2016 -0400
      
          Better mdns code
      
      commit 6ee49ee106274bc63f6309047e57f7bc9828523e
      Author: philip <philip@gladstonefamily.net>
      Date:   Fri Mar 25 23:25:11 2016 -0400
      
          Update the docs
      
      commit 7e455541c6f2531824cfb2419d051f1306935fdf
      Author: philip <philip@gladstonefamily.net>
      Date:   Thu Mar 24 21:58:16 2016 -0400
      
          Add retries and buffer checking to mdns
      
          Get the length right
      
          Now it seems to work
      
      * Might work for combined mode
      
      * Fix crash
      
      * Simplified various bits of code. Changed the LUA interface
      
      Added checking (to some degree) incoming quyery types
      
      Move the defaults to the right place
      
      Added reference to the RFC`
      3a5e5f10
  17. 02 Apr, 2016 1 commit
  18. 01 Apr, 2016 2 commits
    • Arnim Läuger's avatar
      Net docs, 2nd round · a1ffe2e9
      Arnim Läuger authored
      * add doc for net methods
      - net.socket:getpeer()
      - net.server:on()
      - net.server:send()
      
      * document net.multicast[Join|Leave]()
      a1ffe2e9
    • dnc40085's avatar
      Modified wifi module · 5e9ab015
      dnc40085 authored
      Implement SDK event monitor
      Move wifi status event monitor code into seperate file
      (app/modules/wifi_eventmon.c)
      Modify wifi lua callback registration code.
      Add Functions wifi.ap.deauth and wifi.sta.getrssi
      Rework wifi event monitor to use tasking interface
      fix for Lua coroutine compatibility issue
      Made changes Suggested by TerryE
      
      Also, moved code that sets the default host name out of
      luaopen_wifi_init and into a separate function and added a post_task_low
      entry in it's place.
      
      Replaced some if test then return error lines with
      luaL_argcheck
      Add check for malloc null return in wifi.eventmon 
      to catch out of memory errors
      5e9ab015
  19. 31 Mar, 2016 1 commit
  20. 30 Mar, 2016 2 commits
  21. 29 Mar, 2016 2 commits
  22. 28 Mar, 2016 1 commit
    • Robert Foss's avatar
      Improved overall enduser_setup user experience. · 2d4f8f8e
      Robert Foss authored
      A single bug is fixed, a few features are added and overall the codebase has been worked through.
      
       - Added support for calls to /generate_204 that let's android know that the internet is accessible.
       - Added 10 second delay to the shutdown call to allow a final status update to be fetched by the client.
       - Added iframe to html to avoid having a form submission change the page.
       - Added support for dynamic /status responses.
       - Improved HTML appearance by removing AP-list button.
       - Improved CSS to center form, even when list of access points have loaded.
       - Improved debug prints to contain line numbers and not require lua_State*.
       - Fixed broken failure check when calling wifi_station_connect().
       - Fixed unguarded malloc().
      2d4f8f8e
  23. 27 Mar, 2016 1 commit
  24. 25 Mar, 2016 1 commit
  25. 20 Mar, 2016 2 commits
  26. 16 Mar, 2016 1 commit
  27. 14 Mar, 2016 1 commit
  28. 13 Mar, 2016 1 commit
    • dnc40085's avatar
      fix for #1065 · 7def6ec7
      dnc40085 authored
      Also changed wifi.sta.eventMonStop("unreg all") to
      wifi.sta.eventMonStop(1) and wifi.sta.eventMonReg(wifi.status, "unreg")
      to wifi.sta.eventMonReg(wifi.status)
      7def6ec7
  29. 10 Mar, 2016 1 commit
    • philip's avatar
      Adds support for verifying the certificate offered by an SSL server. · 501bd1fb
      philip authored
      Squashed commit of the following:
      
      commit 4439b8c45192f6dee1222df78bbb59f74509e0ee
      Author: philip <philip@gladstonefamily.net>
      Date:   Sun Mar 6 20:23:21 2016 -0500
      
          Fix the ignore
      
      commit a07ee5acdf91286607c3e2dce128c9b8bfd7bd80
      Author: philip <philip@gladstonefamily.net>
      Date:   Sun Mar 6 20:20:41 2016 -0500
      
          Remove uneeded stuff
      
      commit b3604ace92fc13b30161d385c354b0f1c5fe4046
      Author: philip <philip@gladstonefamily.net>
      Date:   Sun Mar 6 20:15:26 2016 -0500
      
          Remove client cert auth
      
      commit 6e48c633569630736a986cd07a59a12de954391e
      Author: philip <philip@gladstonefamily.net>
      Date:   Sun Mar 6 20:11:42 2016 -0500
      
          More cleanup
      
      commit d40eade405ef071d0d1b60d038566b5b8f2cafa3
      Author: philip <philip@gladstonefamily.net>
      Date:   Sat Mar 5 10:56:56 2016 -0500
      
          Move to almost working version
      
      commit 1860a2d90afa94461c53bd41251d4870d6527f9d
      Author: philip <philip@gladstonefamily.net>
      Date:   Fri Mar 4 08:04:09 2016 -0500
      
          Changed the naem to server-ca.crt
      
      commit e7a315660843273fe62943b7fe8ee6c0541dada2
      Author: philip <philip@gladstonefamily.net>
      Date:   Thu Mar 3 21:16:26 2016 -0500
      
          Update gitignores
      
      commit 2b037d185c396209b64381399c40821c15e1840e
      Author: philip <philip@gladstonefamily.net>
      Date:   Thu Mar 3 08:56:17 2016 -0500
      
          Getting better
      
      commit 763255cffba8e279158cd7f43391a3573efdeca8
      Author: philip <philip@gladstonefamily.net>
      Date:   Wed Mar 2 22:28:21 2016 -0500
      
          Works a bit better
      
      commit a38325d1a47dbad255cb3e681da8415e8cf699ea
      Author: philip <philip@gladstonefamily.net>
      Date:   Wed Mar 2 09:11:04 2016 -0500
      
          First building version
      
      commit 4aef13da33470ed954f2eaf5f7ac0ac3dcdf3774
      Merge: 180e147 ebb0c333
      Author: philip <philip@gladstonefamily.net>
      Date:   Tue Mar 1 22:03:06 2016 -0500
      
          Merge remote-tracking branch 'upstream/dev' into ssl-client
      
      commit 180e147c1abdcf4046ad9be9b3c1a48f4a875312
      Author: philip <philip@gladstonefamily.net>
      Date:   Sun Feb 28 21:34:21 2016 -0500
      
          Missing files from espressif
      
      Try to imporve layout
      
      Align the file names with the contents
      
      Missing file
      
      Review comments
      
      More review coments
      501bd1fb
  30. 09 Mar, 2016 2 commits