Maximilian Gerhardt
Maximilian Gerhardt
The [SX1261MBxAS](https://semtech.my.salesforce.com/sfc/p/#E0000000JelG/a/2R000000HUSF/0BIk9z8vpfnrPqx5xGq2WufNaJ3KsDrvLvK8TgO0ssg) board has a [PE4259 RF switch](https://www.psemi.com/pdf/datasheets/pe4259ds.pdf). The implementation for this board sets the pin to analog in (`PIN_ANALOGIC`) when the switch is supposed to be turned off. https://github.com/Lora-net/LoRaMac-node/blob/24d55f6319b11104ba1ebb0317244418bb68bd81/src/boards/NucleoL152/sx1261mbxbas-board.c#L317-L325...
The firmware I'm currently trying to emulate gets stuck in a loop when attempting to program its own flash memory using the HAL function `FLASH_UnlockBank1`/`2`, `FLASH_ProgramWord()`, `FLASH_LockBank1`/`2`. The firmware uses...
See https://community.platformio.org/t/cannot-upload-to-esp32/27392?u=maxgerhardt People are blocked on using the new platform version when they're running 32-bit Windows.
Issue #302 is again occuring. I'm using the latest PIO dev core `version 5.0.2b3` and the very latest development platform with `https://github.com/platformio/platform-espressif32.git` The "L" key seems to be mapped to...
See thread at https://community.platformio.org/t/how-to-add-kconfig-for-library/17856/. When using a reference project like https://github.com/platformio/platform-espressif32/tree/develop/examples/espidf-aws-iot one can execute the Project Tasks -> Platform -> Menuconfig target and see the AWS-IoT component configuration options in...
Per https://github.com/espressif/arduino-esp32/issues/5007 and https://github.com/espressif/arduino-esp32/issues/4998 The `espidf-arduino-blink` is uncompilable because the referenced `#idf-release/v4.0` was killed in the repo. https://github.com/platformio/platform-espressif32/blob/b9530d31e4f8dfe00b31994c70b1ac96d82346cb/examples/espidf-arduino-blink/platformio.ini#L16-L18 
Per https://community.platformio.org/t/please-update-jlink-to-v770a/29184. V7.70a is released at the 11.08.2022 (https://www.segger.com/downloads/jlink/), PIO still is at v7.50 (https://registry.platformio.org/tools/platformio/tool-jlink/versions).
Based on [community topic](https://community.platformio.org/t/bug-in-the-call-of-stm32flash/28727?u=maxgerhardt). Please verify independently.
This PR * activates the SPL framework for the `bluepill_f103c8` target * adds a blink LED example with SysTick usage for accurate timing (thereby tests the HSE PLL) This needed...
Per https://community.platformio.org/t/tone-different-behaviour-between-debug-and-release/25518. The current version of the `framework-arduinoststm32-maple` package contains a bug causing very simple code like ```cpp tone(PB9, 500); ``` to not work. However, PlatformIO's package version already lags...