1. 21 Mar, 2019 1 commit
  2. 15 Mar, 2019 1 commit
  3. 09 Mar, 2019 1 commit
  4. 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
  5. 19 Feb, 2019 1 commit
  6. 18 Feb, 2019 2 commits
  7. 17 Feb, 2019 3 commits
  8. 16 Feb, 2019 2 commits
    • Philip Gladstone's avatar
      Initial version of code to support multiple hardware timers (#2497) · d7583040
      Philip Gladstone authored
      * Initial version of code to support multiple hardware timers
      * MAde the time sinca last tick work again
      * Add some documentation to the code
      d7583040
    • Nathaniel Wesley Filardo's avatar
      A generic fifo and fifosock wrapper, under telnet and http server (#2650) · dcc1ea2a
      Nathaniel Wesley Filardo authored
      * lua_modules/fifo: a generic queue & socket wrapper
      
      One occasionally wants a generic fifo, so here's a plausible
      implementation that's reasonably flexible in its usage.
      
      One possible consumer of this is a variant of TerryE's two-level fifo
      trick currently in the telnetd example.  Factor that out to fifosock for
      more general use.
      
      * lua_examples/telnet: use factored out fifosock
      
      * lua_modules/http: improve implementation
      
      Switch to fifosock for in-order sending and waiting for everything to be
      sent before closing.
      
      Fix header callback by moving the invocation of the handler higher
      
      * fifosock: optimistically cork and delay tx
      
      If we just pushed a little bit of data into a fifosock that had idled,
      wait a tick (1 ms) before transmitting.  Hopefully, this means that
      we let the rest of the system push more data in before we send the first
      packet.  But in a high-throughput situation, where we are streaming data
      without idling the fifo, there won't be any additional delay and we'll
      coalesce during operation as usual.
      
      The fifosocktest mocks up enough of tmr for this to run, but assumes
      an arbitrarily slow processor. ;)
      dcc1ea2a
  9. 14 Feb, 2019 1 commit
  10. 13 Feb, 2019 1 commit
  11. 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
  12. 11 Feb, 2019 2 commits
  13. 05 Feb, 2019 2 commits
  14. 02 Feb, 2019 1 commit
  15. 01 Feb, 2019 1 commit
  16. 24 Jan, 2019 1 commit
  17. 22 Jan, 2019 1 commit
  18. 20 Jan, 2019 2 commits
  19. 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
  20. 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
  21. 13 Jan, 2019 1 commit
    • Marcel Stör's avatar
      Re-organize documentation · b126c6b2
      Marcel Stör authored
      Drop support for localized content, #2213
      
      Restructure some content to match more closely what we have in master, #2542
      b126c6b2
  22. 28 Dec, 2018 1 commit
  23. 23 Dec, 2018 1 commit
  24. 19 Dec, 2018 1 commit
  25. 16 Dec, 2018 2 commits
  26. 12 Dec, 2018 1 commit
  27. 09 Dec, 2018 1 commit
  28. 05 Dec, 2018 1 commit
  29. 04 Dec, 2018 1 commit