Maximilian Gerhardt

Results 143 issues of Maximilian Gerhardt

Per https://community.platformio.org/t/cannot-run-debugger-on-esp32-c6/36473. Currently there seem to be at least the following issues for debugging ESP32-C6 based boards: 1. Outdated Espressif/OpenOCD version used 2. Board definitions missing the declaration of the...

known issue

Espressif has released them at https://github.com/espressif/svd/releases. When using a debug probe, the peripheral view should be available for all ESP32 chips.

feature

Reproduction: 1. Create a new blank ESP-IDF project for ESP32 Dev Module 2. Modify the source code `src/main.c` to ```cpp #include "mbedtls/aes.h" void app_main() { mbedtls_aes_context ctx; mbedtls_aes_init(&ctx); } ```...

bug
ESP-IDF

STM32WLxx series chips should be supported by the `stm32cube` framework through a `framework-stm32cubewl` package. However, this doesn't exist yet and the board JSONs are also not marked to have support...

board request

Enables Simple Peripheral LIbrary (SPL) framework support for STM32F1. Uses the most recent SPL F1 package version 3.6.0 from [here](https://www.st.com/content/my_st_com/en/products/embedded-software/mcu-mpu-embedded-software/stm32-embedded-software/stm32-standard-peripheral-libraries/stsw-stm32054.license=1553116408827.product=STSW-STM32054.version=3.5.0.html). The SPL framework needs the boards to have an identifying...

Since https://github.com/riscv-mcu/GD32VF103_Firmware_Library/pull/3 was merged this is critical to support C++ development. Please update the `framework-gd32vf103-sdk` package accordingly.

OS: Ubuntu 22.10 PyOCD version: 0.34.3 Hardware: Dialog DA14695 (ARM Cortex-M33) Description: I'm trying to use PyOCD to control a firmware. The firmware itself places a breakpoint instruction in its...

improvement

(derived from https://github.com/earlephilhower/arduino-pico/issues/1900) [Wikipedia says](https://en.wikipedia.org/wiki/Serial_Peripheral_Interface#Clock_polarity_and_phase) ![grafik](https://github.com/earlephilhower/arduino-pico/assets/26485477/0768859d-4b1e-4a13-a372-dc0d542fbf53) so for CPOL = 0, the SCLK pin should idle LOW before and after a SPI transfer. However, testing with ```cpp #include static int...

review

1. Download https://github.com/lefticus/json2cpp/releases/download/snapshot-fc69acfd190ff0aa23689fae339ed89db4c3ed75/json2cpp-0.0.1-fc69acfd-Windows-Release-MSVC-19.34.31944.0.zip 2. Extract 3. Start json2cpp.exe 4. Get ![grafik](https://github.com/lefticus/json2cpp/assets/26485477/77c4a161-e34a-4832-a732-ac21d12b36e3) misses `clang_rt.asan_dynamic-x86_64.dll` (on the MSVC build even). Funnily enough, the Clang build has *no* such dependency on that file...

Adds support for the Wiscore RAK4631 Board and its (from Adafruit) forked core https://github.com/RAKWireless/RAK-nRF52-Arduino in the latest 1.3.3. version. Following from [community discussion](https://community.platformio.org/t/rak4631-nrf52-no-serial-port-when-compiled-with-platformio-same-code-fine-in-arduino-ide/35830). Attempts to supersede the weird "live-patch" method...

feature