1. 07 7月, 2020 2 次提交
  2. 04 7月, 2020 1 次提交
  3. 02 7月, 2020 1 次提交
  4. 01 7月, 2020 2 次提交
  5. 30 6月, 2020 1 次提交
  6. 25 6月, 2020 3 次提交
  7. 22 6月, 2020 3 次提交
  8. 17 6月, 2020 1 次提交
  9. 16 6月, 2020 1 次提交
  10. 15 6月, 2020 1 次提交
  11. 14 6月, 2020 1 次提交
    • M
      libraries/SPI: abs -> std::abs and cast fixes (#7362) · 599492ec
      Max Prokhorov 提交于
      * libraries/SPI: remove pointless abs(...) call
      
      SPI library code erroneously assumed that:
      - abs() is a C function, so include stdlib.h is required.
        what happens instead is Arduino.h shadows `abs()` with it's own macro
      - uint32_t() - int32_t() promotes to int32_t, thus needing abs()
      
      Fix both issues, leaving existing calculations as-is.
      
      * additional changes for freq and constants
      
      - restore abs call, cast freq to correctly display the intent
      - update magic numbers comments
      - move some spiclk_t magic numbers to func consts
      599492ec
  12. 13 6月, 2020 1 次提交
  13. 12 6月, 2020 2 次提交
  14. 11 6月, 2020 1 次提交
  15. 09 6月, 2020 2 次提交
  16. 08 6月, 2020 5 次提交
  17. 07 6月, 2020 1 次提交
    • M
      elf2bin.py objcopy cleanup (#7351) · 23febc18
      Max Prokhorov 提交于
      * elf2bin: clean-up after objcopy, use kwargs interfaces
      
      * unique names for segments
      
      * names
      
      * run with python2, just os.remove file after use
      23febc18
  18. 03 6月, 2020 1 次提交
    • V
      Graph example (#7299) · c3796a4d
      vdeconinck 提交于
      * New Graph Example
      
      * Now using isFlashInterfacePin() no define default GPIO mask.
      
      * Added info about zooming.
      
      * Adressed requested changes (boolean > bool,
      using esp8266::polledTimeout::periodicMs, reducing complexity)
      c3796a4d
  19. 31 5月, 2020 1 次提交
  20. 30 5月, 2020 1 次提交
  21. 29 5月, 2020 1 次提交
  22. 27 5月, 2020 2 次提交
    • M
      Xmc flash 2 (#7317) · 51daecc2
      Mike Nix 提交于
      * Remove unnecessary XMC support from eboot
      
      eboot is always run with the flash access speed set to 20MHz, so
      there is no need for special treatment of XMC chips.
      
      * After eboot copies the new firmware into place, verify the copy.
      
      If the data written to flash is as expected, the line cmp:0 will be displayed
      after the usual @CP:0 from eboot.
      
      * Disable interrupts during the precached part of _SPICommand()
      
      For some reason this was an issue during the reboot after an OTA update.
      51daecc2
    • E
      Document ESP.getMaxFreeBlockSize() != max malloc size (#7328) · 0deb8748
      Earle F. Philhower, III 提交于
      Fixes #7322.  Because of UMM internals, the largest `malloc()`able block
      will be smaller than the largest contiguous free RAM block.  Note in the docs.
      0deb8748
  23. 21 5月, 2020 1 次提交
  24. 19 5月, 2020 4 次提交
    • E
      Bring SPIFFS up to latest version (#7276) · 57627122
      Earle F. Philhower, III 提交于
      Manually merged the PATCH files from upstream up until Jan 26, 2020.
      
      Looks to only fix a single bug related to reading past the end of a file
      in certain cases.  Other new features (secure erase) are included to
      make it easier to merge any future releases, but are not enabled in the
      core.
      
      Merges included:
      20fc6df0ab2bee391961b5f823a327887abc96b4
      da1cf494796d68bb5c02ba70cf78a904db08a170
      13935985cdde6d6b4ec77f2685264242ee55e7ac
      ec68ba8208d7550860e4e78299d58a529b88bf85
      f59d958e0b2f169b549e5cdc293a70bc6873cd45
      f7d3e9f2b207958dfc2c01cf3fc42f98a4b9b239
      554b59c147d96223ccce18374989f191f7222b45
      07e013056dd976d12ae36db5c54a275e1497f6c8
      d0d44c4908efff7a443ed9b1174d9173fb784a72
      3cb24dbfd32a396dca46a7ca56a8e75bdcb97078
      8172b40813ff36aa0df4c88a6e9c76e5300d7e32
      57627122
    • S
      Flash size reduction for mime-type (#7312) · 7c008e31
      s-hadinger 提交于
      * Flash size reduction for mime-type
      * moving from fixed size strings to standard PROGMEM strings
      * adding `#define MIMETYPE_MINIMAL` to reduce the footprint to
        mime-types that are strictly necessary
      
      * Added MIMETYPE_MINIMAL conditionals
      7c008e31
    • S
      Allow non-aligned PSTR() (#7275) · 3e4d7c76
      s-hadinger 提交于
      * Allow non-aligned PSTR()
      
      * Add PSTR4() macro to first 4-bytes aligned PSTR
      3e4d7c76
    • A
      - Add required BearSSL include in header. (#7310) · 1b20cd62
      aerlon 提交于
      Co-authored-by: NAnders <andlo151@student.liu.se>
      1b20cd62