Peter S. Hollander
Peter S. Hollander
Oh? I was going based off of the Getting started with Raspberry Pi Pico guide, [which says](https://datasheets.raspberrypi.com/pico/getting-started-with-pico.pdf#_installing_the_toolchain_2) VSCode is included so I avoided it.
@zarakshR @CVasilakis - My understanding is that OpenOCD 0.12.0 (the most recent release) does not support SMP, and this is causing the issue. I believe the only workaround on Linux...
I'd prefer not to override a core feature of CMake when the solution proposed above addresses the issue directly. Is there a reason I'm not aware of to preserve the...
Setting to draft as I've identified a bug where the initial configuring produces `-Og -Og ` instead of `-Og -g`, as visible in `compile_commands.json`. Subsequent configurings behave as expected. This...
Okay, I understand the problem. It appears that when CMake is provided `-DCMAKE_BUILD_TYPE:STRING=Debug`, [it sets](https://github.com/Kitware/CMake/blob/master/Modules/Compiler/GNU.cmake#L111): ```cmake string(APPEND CMAKE_${lang}_FLAGS_DEBUG_INIT " -g") ``` This gets appended *after* calling: ```cmake project(project-name) ``` Since...
If accepted, I'd recommend squashing before merge as the first commit contains bugs.
After hours of searching to finally understand the reason clangd wasn't recognizing my system headers, it all came down to allowlisting my compiler with the launch argument `--query-driver=C:/mingw32/bin/*` 🥴 I...
I believe this is a problem for Windows builds in general, as it is reproducible on multiple Windows 10 machines as well. See here: - #124 - #135 - #98
This problem appears to be isolated to specific microcontrollers, and only present on Windows (as mentioned in [#135](https://github.com/Serial-Studio/Serial-Studio/issues/135#issuecomment-1937016698)). The issue appears to be that some sort of initial handshake is...
I also support "save unzipped" and "open unzipped". Alternatively, it could be nice to simply have the FCStd file format be accepted as a zip with zero compression, and having...