- 29 Jan, 2022 5 commits
-
-
Earle F. Philhower, III authored
-
Earle F. Philhower, III authored
-
Earle F. Philhower, III authored
-
Spegs21 authored
-
Earle F. Philhower, III authored
Fixes #447
-
- 28 Jan, 2022 3 commits
-
-
Earle F. Philhower, III authored
In order to be consistent the other tools in the directory.
-
Maximilian Gerhardt authored
Correctly use earlephilhower.varant if variant not given, ensure USB power macro is always there (#444) Fixes a crash of the builder script, `board.get("build.variant", None)` will throw an exception if the `build.variant` was not found (and not return `None` as the fallback value), but an empty string works, so check against that. USB power defines moved directly into the board files, but still ensure that the macro always exists (with a default fallback value) to not fail the build.
-
Earle F. Philhower, III authored
As part of the boards.txt generation, also make necessary files for Platform.IO. Fixes #399
-
- 27 Jan, 2022 2 commits
-
-
Earle F. Philhower, III authored
-
Maximilian Gerhardt authored
-
- 26 Jan, 2022 3 commits
-
-
Kattni authored
-
Earle F. Philhower, III authored
-
风飘雨 authored
Thx!
-
- 24 Jan, 2022 1 commit
-
-
Earle F. Philhower, III authored
Fixes #416
-
- 22 Jan, 2022 1 commit
-
-
Earle F. Philhower, III authored
Fixes #427. The libpico.a build already includes the HW interpolator sources, but the include was missing from the Arduino path.
-
- 20 Jan, 2022 4 commits
-
-
Earle F. Philhower, III authored
-
Earle F. Philhower, III authored
Also clean up output in SpeedTest, make more human friendly
-
Earle F. Philhower, III authored
Keyboard class now has support for non-en_US layouts, and documentation has been added to the Mouse class. Thanks to @rico0260 for letting me know about the update, and for the initial PR!
-
Earle F. Philhower, III authored
The Pico HW seems to generate an interrupt on the end of every I2C write cycle, even if the slave address wasn't actually targeted. This would cause the onReceive method to be called with a 0-len parameter for every write on the I2C bus. Now, only call onReceive if there is 1 or more bytes of data available.
-
- 19 Jan, 2022 1 commit
-
-
Earle F. Philhower, III authored
SdFat used to point to unnamed commit in the ESP8266SdFat repo. Master in that repo has now been moved to that commit, so make this core use the master branch for sanity's sake.
-
- 15 Jan, 2022 1 commit
-
-
Earle F. Philhower, III authored
Fixes #418
-
- 09 Jan, 2022 2 commits
-
-
Juraj Andrássy authored
-
Khoi Hoang authored
Fixes #373
-
- 05 Jan, 2022 5 commits
-
-
Earle F. Philhower, III authored
-
Earle F. Philhower, III authored
Fixes #411
-
Earle F. Philhower, III authored
-
Earle F. Philhower, III authored
Allow setting the size of the receive buffer by the application using a call to Serial1/2.setFIFOSize(xxx) before the begin() call.
-
Earle F. Philhower, III authored
-
- 03 Jan, 2022 1 commit
-
-
arturo182 authored
-
- 02 Jan, 2022 3 commits
-
-
Earle F. Philhower, III authored
Defaults to 32 bytes, like the HW Serial ports, but can be set to any desired value when instantiated.
-
Earle F. Philhower, III authored
-
Earle F. Philhower, III authored
When the Serial software FIFOs overeflowed, the IRQ handler would not read any more data from the hardware FIFOs. This would cause the IRQ handler to be continually called as soon as it exited since the HW FIFOS were not empty. Now always read every available HW FIFO entry and throw out any that don't fit in the SW FIFO. Also fix a too long by half stop bit timing in the PIOSerial receiver.
-
- 01 Jan, 2022 1 commit
-
-
Khoi Hoang authored
Fix issues with [WiFiNINA](https://github.com/arduino-libraries/WiFiNINA) and [WiFiNINA_Generic](https://github.com/khoih-prog/WiFiNINA_Generic) libraries Fixes #373 Fixes #375 Fixes #376
-
- 31 Dec, 2021 1 commit
-
-
Earle F. Philhower, III authored
-
- 30 Dec, 2021 3 commits
-
-
Earle F. Philhower, III authored
Fixes #368. Thanks @bperrybap!
-
Earle F. Philhower, III authored
-
Ken Piper authored
-
- 29 Dec, 2021 1 commit
-
-
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)
-
- 28 Dec, 2021 2 commits
-
-
Earle F. Philhower, III authored
-
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.
-