1. 06 Dec, 2021 1 commit
  2. 03 Dec, 2021 1 commit
  3. 01 Dec, 2021 3 commits
  4. 28 Nov, 2021 1 commit
    • Earle F. Philhower, III's avatar
      Add RTC headers to path and pico_utils to link (#353) · 1afbbaba
      Earle F. Philhower, III authored
      Fixes #348
      
      Add the RTC header path in the SDK to the Arduino build path.  Also add
      pico_utils to the libpico.a for the datetime_to_str call.
      
      Note that the pico_sdk has a bug in the datetime.h header so you need to
      manually bracket the include file as "C":
      
      extern "C" {
          #include "pico/util/datetime.h"
      }
      1afbbaba
  5. 02 Nov, 2021 1 commit
  6. 29 Oct, 2021 5 commits
  7. 06 Oct, 2021 1 commit
  8. 27 Sep, 2021 3 commits
  9. 22 Sep, 2021 2 commits
  10. 19 Sep, 2021 3 commits
  11. 14 Sep, 2021 1 commit
    • Maximilian Gerhardt's avatar
      Add PlatformIO support (#250) · 3df3f074
      Maximilian Gerhardt authored
      * Add package.json
      
      To make package easily integratable with PlatformIO
      
      * Correct name back to original one
      
      * Format package.json
      
      * Add first shot at builder script
      
      * Add USB stack flags, fix compile flags
      
      * Formatting
      
      * Add more link & USB flags
      
      * Build Boot2 bootloader
      
      * Formatting
      
      * Generate linkerscript, linker fixes
      
      * Fix linkflags, make firmware runnable
      
      * Update USB flags and RAM size
      
      * Correct USB flags, add dynamic sketch partitioning
      
      * Restructure filesystem size and flash size logic into platform code
      
      * Move C++ only flags to CXXFLAGS
      
      * Add PlatformIO documentation
      
      * Link to new platform.io document in the docs TOC
      
      * Fix typos in platformio docs
      
      * Fix one additional typo in platformio.rst
      
      * Update docs
      
      * Remove wrongly commited build folder
      3df3f074
  12. 03 Sep, 2021 1 commit
  13. 30 Aug, 2021 1 commit
  14. 24 Aug, 2021 2 commits
  15. 17 Aug, 2021 1 commit
  16. 12 Aug, 2021 3 commits
  17. 29 Jul, 2021 4 commits
  18. 23 Jul, 2021 3 commits
  19. 22 Jul, 2021 1 commit
    • Earle F. Philhower, III's avatar
      Set available() to 0 when Wire.requestFrom fails (#259) · cb9931f3
      Earle F. Philhower, III authored
      Wire::requestFrom() returns the number of bytes read from the slave.  In
      the case of error, the slave can end up returning a very large integer
      for PICO_GENERIC_ERROR which would then be used as the # of bytes read
      causing crashes and errors.
      
      Running TalkingToMyself without connecting the I2C ports would show
      this behavior.
      
      Now, when PICO_GENERIC_ERROR is returned, set the read-back buffer len
      to 0 explicitly.
      cb9931f3
  20. 20 Jul, 2021 1 commit
  21. 19 Jul, 2021 1 commit