Maximilian Gerhardt
Maximilian Gerhardt
Per [community topic](https://community.platformio.org/t/cannot-install-raspberry-pi-rp2040-platform/21623). Compiling any project for the RP2040 on a Raspberry Pi is impossible since the compiler package is missing. ``` PIO Core Call Error: "Platform Manager: raspberrypi @...
Issue is just for tracking what was said in #38. >However, debugging the Arduino framework code is currently not possible because of one freaking file failing compilation in --debug mode:...
Since I finally got an SPL example to build and upload correctly on my STM8S103F3 board per #43, I tried to access debugging, but it fails in the sense that...
An alternative core to SDuino is at https://github.com/stm32duino/Arduino_Core_STM8, which very recently had a stable 1.0.0 release. It supports only the Nucleo 8S208RB and Nucleo 8L152R8 boards for now.
Per https://github.com/arduino/ArduinoCore-samd/pull/651#issuecomment-1492773652. Due to the `#undef` construct done in https://github.com/arduino/ArduinoCore-samd/blob/a5d52dbf7bcf338de2042eb74cfba33993729c81/cores/arduino/Uart.h#L25-L29 it's not possible to set a global `-DSERIAL_BUFFER_SIZE=...` value and have it be use used anymore. A user has a...
Testing a 1.5MByte file ``` dd if=/dev/zero of=test.bin bs=1500000 count=1 ``` and using the Picoprobe setup (two Picos, one flashed with https://github.com/raspberrypi/picoprobe, latest 1.0.3 firmware), gives extremely slow speeds of...
**Is your feature request related to a problem? Please describe.** Currently, LMIC supports, [per README](https://github.com/mcci-catena/arduino-lmic#selecting-the-lorawan-version), LoRaWAN versions 1.0.2 and 1.0.3. Per https://www.thethingsnetwork.org/article/whats-new-in-lorawan-104-1 and https://lora-alliance.org/resource_hub/lorawan-104-specification-package/, LoRaWAN version 1.0.4 has been released...
I've bought a Wio Lite RISC-V (https://www.seeedstudio.com/Wio-Lite-RISC-V-GD32VF103-p-4293.html) with a GD32VF103CBT6 chip on it. I've installed the "MCU Drivers" in the "MCU tool" package listed under https://gd32mcu.21ic.com/en/index. The USB device successfully...
Your code reads https://github.com/davetcc/TaskManagerIO/blob/2840e53c91f4184497180c27c8bbafc851fdc10c/src/TaskManagerIO.cpp#L410-L412 However, this throws the error message ``` .pio\libdeps\disco_f051r8\TaskManagerIO\src\TaskManagerIO.cpp:404:5: error: 'ThisThread' has not been declared 404 | ThisThread::yield(); | ^~~~~~~~~~ *** [.pio\build\disco_f051r8\libca9\TaskManagerIO\TaskManagerIO.o] Error 1 ``` and is...
If I use PlatformIO to tell GDB to connect to the GDB server upload the debug firmware by using the default GDB `load` command, I get a crash in the...