Maximilian Gerhardt

Results 143 issues of Maximilian Gerhardt
trafficstars

What kind of issue is this? - [X] **PlatformIO Core**. If you’ve found a bug, please provide an information below. ------------------------------------------------------------------ ### Configuration **Operating system**: Windows 10 x64 **PlatformIO Version**...

bug
known issue
build system

As noted in https://github.com/platformio/platformio-vscode-ide/issues/2586 and https://github.com/platformio/platformio-vscode-ide/issues/2368, the source code for the component responsible for the debugger integration between the PlatformIO core and VSCode, https://www.npmjs.com/package/platformio-vscode-debug, does not seem to be available...

known issue
debug

For the given `platformio.ini` ``` [env:uno] platform = atmelavr board = uno framework = arduino debug_tool = avr-stub debug_port = \\.\COM14 debug_build_flags = -O0 -ggdb3 -g3 lib_deps = jdolinay/avr-debugger @...

bug
debug

See https://github.com/platformio/platform-atmelavr/pull/238 for the SVD files that this occurrs with. Tested with the Arduino Uno json file as described. `platformio.ini` and code as per [this](https://community.platformio.org/t/how-to-debug-on-arduino-mega-2560/18446/2?u=maxgerhardt). If this is resolved, we...

bug
debug

Per [community post](https://community.platformio.org/t/new-user-bit-confused-with-workspcace-folder-structure-project/18458/5?u=maxgerhardt) The current logic seems to use the current date, the date the sketch file was created and the chosen board to create a new folder in the...

feature

The change in the project creation and selection workflow through the project and environment selector in extension version v2.3.0, has left many users baffled and frustrated, as in e.g. *...

feature

When compiling this project as shown in the README, it gives ``` [ 17%] Completed 'capnproto' [ 17%] Built target capnproto Scanning dependencies of target flatbuffers [ 18%] Creating directories...

Output of the https://github.com/Rahix/avr-device tool (all `*.svd.patched` files renamd to `*.svd`). Created as descripted in [community post](https://community.platformio.org/t/avr-simulator-as-aid-tool-for-debugging-code/13444/44?u=maxgerhardt). The SVD files are not yet referenced in the board JSON files because...

With a `platformio.ini` of ```ini [env:uno] platform = atmelavr board = uno framework = arduino debug_tool = avr-stub debug_port = \\.\COM14 ; GDB stub implementation lib_deps = jdolinay/avr-debugger @ ~1.1...

For the SX126x radios, the IRQ handler installed via https://github.com/Lora-net/LoRaMac-node/blob/24d55f6319b11104ba1ebb0317244418bb68bd81/src/boards/NucleoL476/sx1261mbxbas-board.c#L74-L77 just points to handler that toggles a boolean flag https://github.com/Lora-net/LoRaMac-node/blob/24d55f6319b11104ba1ebb0317244418bb68bd81/src/radio/sx126x/radio.c#L1245-L1248 which is later processed in RadioIrqProcess https://github.com/Lora-net/LoRaMac-node/blob/24d55f6319b11104ba1ebb0317244418bb68bd81/src/radio/sx126x/radio.c#L1250-L1258 Thus, unlike for...

enhancement