1. 08 May, 2019 1 commit
  2. 07 May, 2019 1 commit
  3. 01 May, 2019 1 commit
  4. 28 Apr, 2019 2 commits
    • devsaurus's avatar
      u8g2: fix return value · b7a99358
      devsaurus authored
      b7a99358
    • Arnim Läuger's avatar
      Update u8g2 to v2.25.10 (#2735) · 530c353f
      Arnim Läuger authored
      * Upgrade u8g2 and add updateDisplayArea bindings
      
      * u8g2 2.25.10
      
      * add displays for 2.24.3 and 2.25.10
      
      * remove workaround for hal pointer and make use of u8x8's user_ptr
      
      * fix doc
      
      * add binding for `updateDisplay()`
      530c353f
  5. 11 Apr, 2019 1 commit
  6. 09 Apr, 2019 1 commit
  7. 08 Apr, 2019 1 commit
  8. 05 Apr, 2019 5 commits
    • Terry Ellison's avatar
    • Terry Ellison's avatar
      SDK 3.0 release (#2692) · 9a471079
      Terry Ellison authored
      * Rebaseline firmware to non-OS SDK version 3.0
      * Note that SDK version 3.0 introduces the concept of a Flash Partition Table(PT).  This is located at Flash offset 0x10000 in our firmware build.
      * The firmware is now PT aware with both LFS and SPIFFS taking their partition size and location from the PT
      * A new tool `tools/nodemcu-partition.py` is now used to initialise these data and can also download LFS and SPIFFS images to these partitions.
      9a471079
    • Nathaniel Wesley Filardo's avatar
      Remove moribund C ds18b20 module (#2492) · b6cd2c3e
      Nathaniel Wesley Filardo authored
      Just use Lua speaking OW (via C) instead.
      b6cd2c3e
    • Nathaniel Wesley Filardo's avatar
      mbedtls bump to 2.7.9 (#2655) · f0565ea5
      Nathaniel Wesley Filardo authored
      No major fixes, but was looking anyway.
      
      Specifically, to
      https://github.com/ARMmbed/mbedtls.git 079e813949251be1e7a9d395abd20b2c63422787
      f0565ea5
    • Natalia's avatar
      I2C sw driver with support of multiple buses, Slow, Fast, FastPlus, and... · ab61e9c0
      Natalia authored
      I2C sw driver with support of multiple buses, Slow, Fast, FastPlus, and user-defined speed selection (#2465)
      
      * I2C driver speed-up, i2c.SLOW, i2c.FAST and user-defined speed selection
      
      * - Multiple buses (up to 10) with different speeds on each bus
      - Standard(Slow, 100kHz), Fast(400kHz) and FastPlus(1MHz) modes or an 
      arbitrary clock speed
      - Sharing SDA line over multiple I²C buses to save available pins
      - GPIO16 pin can be used as SCL pin, but it does not support clock 
      stretching and selected bus will be limited to FAST speed.
      
      * Dynamic memory allocation, error checks, simplification, timing tweaks.
      
      * Separated the code of old driver for better compatibility and simplicity
      
      * Change of driver interface
      
      * Add bus status check in setup(); simplify getDC(); remove unnesessary lines in ACK read/write
      
      * Fix for moved doc file and trailing whitespaces
      ab61e9c0
  9. 24 Mar, 2019 1 commit
  10. 21 Mar, 2019 1 commit
  11. 23 Feb, 2019 3 commits
    • Arnim Läuger's avatar
      DHT11 read sometimes failed with checksum error (#2679) · ebd147b3
      Arnim Läuger authored
      * DHT11 read sometimes failed with checksum error.
      
      The code assumed DHT11 devices only ever return zero in the temperature and humidity decimal fraction bytes. The datasheet doesn't guarantee this is the case, and by observation I have noticed that indeed the DHT11 may sometimes return another number, usually close to zero. This means that the code would fail with a checksum error, as the fraction bytes were not included when the checksum was calculated. These bytes are now taken into account and also returned as part of the measurement.
      
      This also means that the related dht.read() function is non-functional. If you have a DHT11 device that returns a non-zero decimal part, dht.read() will interpret it as a DHT22 result and return the wrong measurement. For this reason dht.read() should be retired. This patch does not address this issue.
      ebd147b3
    • ziggurat29's avatar
    • ziggurat29's avatar
      added MSVC project configuration for host-side tools (#2665) · 62789da0
      ziggurat29 authored
      Added MSVC project configuration (@ziggurat29) and support of MinGW (@TerryE) for host-side`luac.cross` tool
      62789da0
  12. 19 Feb, 2019 1 commit
  13. 17 Feb, 2019 1 commit
  14. 16 Feb, 2019 1 commit
  15. 14 Feb, 2019 1 commit
  16. 12 Feb, 2019 1 commit
    • ziggurat29's avatar
      Fix occasional luac.cross crash (#2661) · 0c7758a5
      ziggurat29 authored
      A block of memory is accessed after having been freed. This was obscured by the fact that 'oBuf' is a pointer into the middle of the block 'dynamicTables', so when dynamicTables is freed, oBuf is pointing to freed memory. Occasionally, luac.cross would crash because of this.
      0c7758a5
  17. 05 Feb, 2019 1 commit
  18. 02 Feb, 2019 1 commit
  19. 01 Feb, 2019 1 commit
  20. 24 Jan, 2019 1 commit
  21. 22 Jan, 2019 1 commit
  22. 20 Jan, 2019 1 commit
  23. 16 Jan, 2019 1 commit
    • galjonsfigur's avatar
      Updated FatFS from 0.12a to 0.13c (#2608) · 5d2bb87c
      galjonsfigur authored
      Files changed only by the author of FatFS (only updated to new version):
      
      - 00history.txt
      - 00readme.txt
      - ff.c
      - ff.h
      - ffunicode.c
      - diskio.h
      - integer.h
      - files in `option` folder except `syscall.c`
      
      Changes:
      - removed option folder (now everything is in ffunicode.c)
      - modified Makefile to support new version of FatFS
      - removed syscall.c and modified ffsystem.c from FatFS author instead
      - modified files: diskio.c, ffconf.h to mimic changes from new version
      - modified files: fatfs_config.h, myfatfs.c
      because of changes of configuration keywords in 0.13 version
      - removed empty lines from beginning of files:
      fatfs_prefix_lib.h, myfatfs.c, sdcard.c
      - changed version number in documentation
      5d2bb87c
  24. 15 Jan, 2019 2 commits
    • Nathaniel Wesley Filardo's avatar
      Update TLS protocol support (#2587) · 6e95d74f
      Nathaniel Wesley Filardo authored
      * Update TLS protocol support
      
      TLS1.0 is past PCI's EOL; BEAST is no more
      Enable elliptic curve key exchanges
      	Do not enable the smallest ECs for security
      	Do not enable the largest ECs for computational time
      	Do not enable 25519 (sad) because it doesn't go across the wire
      Drop non-PFS key exchanges
      Drop ARC4, Blowfish, DES, genprime, XTEA code
      Drop renegotiation support completely
      	It takes so much heap that it's not likely to work out well
      
      Tidy handling of SSL_BUFFER_SIZE
      
      Update docs
      Drop mention of startcom, since they are no more, for letsencrypt
      
      * Update mbedtls to 2.7.7
      
      Preserve our vsnprintf and platform hacks
      
      * Introduce TLS maximum fragment size knob
      
      Reduce buffer size to 4Ki by default and advertize that.  That's the
      largest we can advertize with the TLS MFL extension, so there's no
      point in making them larger.  The truly adventurous can re-raise
      SSL_BUFFER_SIZE and undefine the SSL_MAX_FRAGMENT_LENGTH_CODE and get
      back to the earlier behavior.
      
      * Default to mbedTLS debug with DEVELOP_VERSION
      6e95d74f
    • Javier Peletier's avatar
  25. 16 Dec, 2018 1 commit
    • andyleap's avatar
      Add set clock div (#2572) · 0a500eb9
      andyleap authored
      * Add spi.set_clock_div
      
      This will allow the SPI clock divider to be changed relatively simply,
      to better support multiple devices with varying SPI clock rate support
      
      * Add documentation
      0a500eb9
  26. 09 Dec, 2018 1 commit
  27. 05 Dec, 2018 1 commit
  28. 03 Dec, 2018 1 commit
  29. 30 Nov, 2018 1 commit
    • Johan Ström's avatar
      Handle large/chunked/fragmented MQTT messages properly (#2571) · 2d958750
      Johan Ström authored
      * MQTT: handle large/chunked/fragmented messages properly
      
      If a message spans multiple TCP packets it must be buffered before
      delivered to LUA. Prior code did not do this at all, so this "patch"
      really adds proper handling of fragmented MQTT packets.
      This could also occur if multiple small messages was sent in a
      single TCP packet, and the last message did not completely fit in that
      packet.
      
      Introduces a new option to the mqtt.Client constructor:
      max_publish_length which defaults to 1024
      
      Introduces a new 'overflow' callback.
      
      Fixes issue #2308 and proper fix for PR #2544.
      
      * mqtt.md: clarified heap allocation
      
      * mqtt: ensure ack is sent for overflowed publish
      
      If QoS is used we should still acknowledge that we received it, or server might retransmit it later.
      2d958750
  30. 28 Nov, 2018 1 commit
  31. 23 Nov, 2018 1 commit
  32. 16 Nov, 2018 1 commit
    • Carsten Elton Sørensen's avatar
      Calling vol:umount() would fail (#2558) · bb9a5977
      Carsten Elton Sørensen authored
      The volume returned by file.mount() could not be unmounted, because vol:umount() would fail with a cryptic error about the uncallable nature of the volume userdata object. This was due to the wrong metatable name being used for setting up the volume structure. The correct name, as registered elsewhere in file.c, is now used, and vol:umount() is callable.
      bb9a5977