- 08 Aug, 2024 3 commits
-
-
Earle F. Philhower, III authored
-
Earle F. Philhower, III authored
RP2040::memcpyDMA implements a DMA-controlled memory copy call identical in function to standard memcpy, but using an onboard DMA engine. For large memory transfers this can be significantly faster than using the CPU-based memcpy. Only 4-byte aligned source, destination, and counts are allowed. If any inputs are not 4-byte aligned, then standard memcpy will occur so it will behave correctly for any inputs.
-
Earle F. Philhower, III authored
No functionality differences expected.
-
- 04 Aug, 2024 1 commit
-
-
Earle F. Philhower, III authored
The included USB libraries are not compatible with Adafruit TinyUSB, so add a #error message when they're built with the define set.
-
- 03 Aug, 2024 1 commit
-
-
Dominic Pearman authored
Lowered level of segment 'ESP32 Compatibility' in documentation of 'WiFiClientSecure Class' to be a subsection thereof.
-
- 02 Aug, 2024 1 commit
-
-
Earle F. Philhower, III authored
Somehow returning the results of a `void` function from another `void` wrapper didn't trigger any warnings. Also missed tcp_bind actual GCC wrapping.
-
- 30 Jul, 2024 1 commit
-
-
Earle F. Philhower, III authored
-
- 28 Jul, 2024 1 commit
-
-
Earle F. Philhower, III authored
In ported libraries there were still some remaining DEBUG_ESP_PORT references. Moved to their RP2040 equivalents.
-
- 27 Jul, 2024 1 commit
-
-
Earle F. Philhower, III authored
From @JAndrassy https://github.com/esp8266/Arduino/pull/9173
-
- 26 Jul, 2024 2 commits
-
-
Earle F. Philhower, III authored
Create a single spot with the gamepad16's HID report descriptor and report structure. Avoids cut-n-pasted code.
-
Earle F. Philhower, III authored
Found via #2296, the HTTPClient was looking for old ESP8266 defines and not the RP2040 core ones to enable it. Now dump on `Core` level.
-
- 25 Jul, 2024 1 commit
-
-
Earle F. Philhower, III authored
Picoprobe was rechristened Debugprobe earlier this year, add a note in the menus to be specific about it. See https://github.com/raspberrypi/debugprobe
-
- 24 Jul, 2024 1 commit
-
-
Earle F. Philhower, III authored
Underlying HID_Joystick now always using 16-bit format axes, need to update BT and BLE descriptors sent to the BT master or it will misinterpret the reports and the reported joystick state will be read as garbage. Fixes bug introduced in #2276, oops!
-
- 23 Jul, 2024 1 commit
-
-
Earle F. Philhower, III authored
Use GH native ones instead.
-
- 22 Jul, 2024 3 commits
-
-
Earle F. Philhower, III authored
-
Earle F. Philhower, III authored
Variant builds were taking longer than the actual individual CI jobs, so split it up. Combine the spelling and style checks, they ran very fast and spent more time in checking out than in running.
-
Earle F. Philhower, III authored
Upstream patch https://github.com/espressif/arduino-esp32/pull/9991
-
- 21 Jul, 2024 1 commit
-
-
Earle F. Philhower, III authored
Fixes #2287
-
- 20 Jul, 2024 1 commit
-
-
deltaford authored
-
- 19 Jul, 2024 1 commit
-
-
Amken USA authored
Added 4 new boards from Amken LLC. * Amken Bunny * Amken Revelop * Amken Revelop Plus * Amken Revelop eS Co-authored-by: H.Keni <151807089+hrken1@users.noreply.github.com>
-
- 18 Jul, 2024 2 commits
-
-
Earle F. Philhower, III authored
-
Earle F. Philhower, III authored
Fixes #2275 Adds `Joystick.use10bit` and `Joystick.use16bit` methods. 10-bit is unsigned from 0...1023 while 16-bit is signed -32767..32767. Defines a new HID descriptor to support the increased resolution.
-
- 13 Jul, 2024 2 commits
-
-
Heng Teng Yi authored
Co-authored-by: HTY2003 <randumbperson@gmail.com>
-
Earle F. Philhower, III authored
The repo and development use only '\n' (UNIX) EOLs. When a user runs makeboards on a Windows system they end up changing every line in boards.txt and the JSON files to Windows '\r\n' format. Explicitly set the newline character when opening the output files to avoid this.
-
- 12 Jul, 2024 2 commits
-
-
Earle F. Philhower, III authored
* Add a build of all variants to CI using P.IO * Split out into separate job, use BOOTSEL sketch * Fix Breadstick variant * Fix Bridgetech boards with illegal define names Dash(-) to underscore(_) in define and variant for the -7 and -43. * Bridgetech JSON updates * Temporarily remove Bridgetech boards from CI Needs an update to the P.IO external repo to work since the names of the boards have changed.
-
AcThPaU authored
* Fix D pins on Adafruit IB RP2040 * Fix Adafruit Feather D pins mapping as well * Change common.h to accept D pin def per board
-
- 09 Jul, 2024 1 commit
-
-
Earle F. Philhower, III authored
FreeRTOS often seems to have interesting corner cases. Add two simple tests that have been useful while debugging issues found from users or from FreeRTOS updates.
-
- 08 Jul, 2024 2 commits
-
-
Earle F. Philhower, III authored
Fixes #2254 The faked certificate was allocated but not deleted in certain cases. Make sure to clean up in the destructor.
-
Maximilian Gerhardt authored
An oversight in the order of updating the ASFLAGS with a copy of the CCFLAGS (see line 110) and then updating the CCFLAGS (without resyncing the ASFLAGS) leads to a fatal compilation error in the Adafruit PicoDVI library, in which `tmds_encode.S` fails to find the `pico/config.h` include file. This fix updates the ASFLAGS manually after changing the CCFLAGS so that they're equal again, and the library can be compiled.
-
- 04 Jul, 2024 2 commits
-
-
Earle F. Philhower, III authored
Fixes #2251 The 2-phase send could get out of whack if transmission was attempted when no device was connected. Clear things up so if things aren't connected, then no data gets set as pending.
-
Earle F. Philhower, III authored
FreeRTOS has merged the SMP branch into its main, so move to that and adjust the core accordingly. V11.1.0 + several minor edits.
-
- 03 Jul, 2024 1 commit
-
-
Pontus Oldberg authored
* Fixed incorrect AVR compatibility macros. --------- Co-authored-by: Pontus Oldberg <pontus.oldberg@non.se.com>
-
- 27 Jun, 2024 1 commit
-
-
chungsoftvn-tuannguyen authored
- Board information brtchip.com/product/idm2040-43a Signed-off-by: Tuan Nguyen <tuan.nguyen@brtchip.com> Co-authored-by: Tuan Nguyen <tuan.nguyen@brtchip.com>
-
- 24 Jun, 2024 3 commits
-
-
Earle F. Philhower, III authored
A Timer is not active after the alarm fires once, so clear the alarm ID so we know we're not running.
-
Earle F. Philhower, III authored
Uses the Pico SDK alarms and repeated-timers to provide for IRQ-level periodic tasks to be scheduled.
-
Earle F. Philhower, III authored
Fixes #2231
-
- 19 Jun, 2024 1 commit
-
-
Earle F. Philhower, III authored
-
- 18 Jun, 2024 3 commits
-
-
Earle F. Philhower, III authored
Instead of manually iterating over netifs to find the one a packet came in over for NetBIOS name lookup, use a built-in LWIP macro that's available for udp_recv callbacks. Shrinks and simplifies NetBIOS code.
-
Earle F. Philhower, III authored
-
Limor "Ladyada" Fried authored
Co-authored-by: hathach <thach@tinyusb.org>
-