1. 15 2月, 2023 1 次提交
    • D
      WString Fix int64_t (#7765) · 345e3c63
      David McCurley 提交于
      WString Fix int64_t
      
      Fixed int64_t String support. Resolves issue #7760.
      
      Background:
      sprintf on esp32 doesn't support "%lld" parameter.  It's possible to recompile the underlying libraries to add that option, but I have an easier solution.
      This has already been solved in ESP8266 version of WString by replacing sprintf() with itoa/ltoa/lltoa.
      
      This PR does the following:
      Fixes integer print issues by replacing sprintf() with itoa/ltoa/lltoa
      Moves concat(long long num), concat(unsigned long long num) location (match ESP8266)
      Cleans up code formatting (matches ESP8266)
      Co-authored-by: NMe No Dev <me-no-dev@users.noreply.github.com>
      345e3c63
  2. 08 2月, 2023 1 次提交
  3. 18 5月, 2022 1 次提交
  4. 04 2月, 2022 1 次提交
  5. 31 1月, 2022 1 次提交
  6. 17 1月, 2022 1 次提交
  7. 31 8月, 2021 1 次提交
  8. 18 6月, 2021 1 次提交
  9. 18 5月, 2021 1 次提交
  10. 10 3月, 2021 1 次提交
  11. 05 3月, 2021 3 次提交
  12. 28 8月, 2019 1 次提交
  13. 27 4月, 2019 1 次提交
    • E
      Copy ESP8266 String w/SSO to ESP32 repo (#2715) · ab309e40
      Earle F. Philhower, III 提交于
      I redid the ESP8266 WString library to enable small string optimization
      (SSO) a while back, and think it would be helpful even on the ESP32 with
      its higher memory complement.
      
      SSO avoids lots of tiny mallocs() on the heap which cause fragmentation
      by using the memory in the class object itself to store the actual
      string and only mallocing() for buffers that are larger than what can
      fit in thie class object.  Modern C++ std::string implementations have
      this optimization as well, but since we're using Arduino strings we had
      to roll our own.
      ab309e40
  14. 19 11月, 2018 1 次提交
  15. 27 6月, 2018 1 次提交
    • M
      Update IDF to aaf1239 (#1539) · a59eafbc
      Me No Dev 提交于
      * fix sdmmc config
      
      * Fix warnings in EEPROM
      
      from @Curclamas
      
      * remove leftover TAG in EEPROM
      
      * Initial add of @stickbreaker i2c
      
      * Add log_n
      
      * fix warnings when log is off
      
      * i2c code clean up and reorganization
      
      * add flags to interrupt allocator
      
      * fix sdmmc config
      
      * Fix warnings in EEPROM
      
      from @Curclamas
      
      * remove leftover TAG in EEPROM
      
      * fix errors with latest IDF
      
      * fix debug optimization (#1365)
      
      incorrect optimization for debugging tick markers.
      
      * Fix some missing BT header
      
      * Change BTSerial log calls
      
      * Update BLE lib
      
      * Arduino-ESP32 release management scripted (#1515)
      
      * Calculate an absolute path for a custom partitions table (#1452)
      
      * * Arduino-ESP32 release management scripted
      (ready-to-merge)
      
      * * secure env for espressif/arduino-esp32
      
      * * build tests enabled
      * gitter webhook enabled
      
      * * gitter room link fixed
      * better comment
      
      * * filepaths fixed
      
      * BT Serial adjustments
      
      * * don't run sketch builds & tests for tagged builds
      
      * Return false from WiFi.hostByName() if hostname is not resolved
      
      * Free BT Memory when BT is not used
      
      * WIFI_MODE_NULL is not supported anymore
      
      * Select some key examples to build with PlatformIO to save some time
      
      * Update BLE lib
      
      * Fixed BLE lib
      
      * Major WiFi overhaul
      
      - auto reconnect on connection loss now works
      - moved to event groups
      - some code clean up and procedure optimizations
      - new methods to get a more elaborate system ststus
      
      * Add cmake tests to travis
      
      * Add initial AsyncUDP
      
      * Add NetBIOS lib and fix CMake includes
      
      * Add Initial WebServer
      
      * Fix WebServer and examples
      
      * travis not quiting on build fail
      
      * Try different travis build
      
      * Update IDF to aaf1239
      
      * Fix WPS Example
      
      * fix script permission and add some fail tests to sketch builder
      
      * Add missing space in WiFiClient::write(Stream &stream)
      a59eafbc
  16. 12 10月, 2017 1 次提交
  17. 09 2月, 2017 1 次提交
    • M
      Fixes implementation of __FlashStringHelper (#183) · 67128fcb
      Martin Sloup 提交于
      Previous __FlashStringHelper implementation was defines as a char which brought problem in case the method with char* parameter used overloading with __FlashStringHelper* parameter (they was identical). Now __FlashStringHelper is defined as a class and all casts between char* and __FlashStringHelper* are made with reinterpret_cast sugar.
      67128fcb
  18. 06 10月, 2016 1 次提交