1. 30 Dec, 2021 2 commits
  2. 29 Dec, 2021 1 commit
    • Maximilian Gerhardt's avatar
      Fix PlatformIO build (#395) · 6591da9a
      Maximilian Gerhardt authored
      Defines USBD_MAX_POWER_MA as a static 250mA, which is correct for all the boards supported in platform-raspberrypi (aka, RaspberryPi Pico and Nano RP2040 Connect)
      6591da9a
  3. 28 Dec, 2021 3 commits
    • Earle F. Philhower, III's avatar
      Update package.json · c80c08d3
      Earle F. Philhower, III authored
      c80c08d3
    • Earle F. Philhower, III's avatar
      Add SoftwareSerial-like PIO based UARTs (#391) · ce7d337c
      Earle F. Philhower, III authored
      Adds support to the core for PIO-based, software-created UARTs, up to 8 (the number of PIO state machines) possible.
      
      By using a custom program on the PIO state machines, it allows for very high bit rates and does not require CPU or interrupts.
      
      Bit widths from 5- to 8-bits, 1 or 2 stop bits, and even/odd/none parity are supported.
      ce7d337c
    • Earle F. Philhower, III's avatar
      Use interrupts to capture Serial UART data, not polling (#393) · dc1198bd
      Earle F. Philhower, III authored
      PR #379 was an ugly hack which works only if you poll the Serial port more
      frequently than ~8 byte times.
      
      This PR replaces the polling with an IRQ based lockless writer/reader queue
      so that even if you only read every 32 byte times, the Serial1/2 port should
      not lose data.  It also should use less CPU and allow for somewhat higher
      throughput.
      dc1198bd
  4. 27 Dec, 2021 1 commit
  5. 26 Dec, 2021 2 commits
  6. 23 Dec, 2021 3 commits
  7. 15 Dec, 2021 1 commit
  8. 10 Dec, 2021 1 commit
  9. 09 Dec, 2021 1 commit
  10. 07 Dec, 2021 1 commit
  11. 06 Dec, 2021 2 commits
  12. 03 Dec, 2021 1 commit
  13. 01 Dec, 2021 3 commits
  14. 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
  15. 02 Nov, 2021 1 commit
  16. 29 Oct, 2021 5 commits
  17. 06 Oct, 2021 1 commit
  18. 27 Sep, 2021 3 commits
  19. 22 Sep, 2021 2 commits
  20. 19 Sep, 2021 3 commits
  21. 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
  22. 03 Sep, 2021 1 commit