pico-project-generator
pico-project-generator copied to clipboard
Tool to automatically generate a Pico C SDK Project
Thanks for an excellent tool. Is there any appetite to extend what is generated to give a head-start for git within the generated project? e.g. - generate a basic .gitignore...
Let me know what you think - thanks
The compilerPath populated in c_cpp_properties.json can cause a parsing error to be thrown in VSCode due to unescaped backslashes. eg., ` "compilerPath": "C:\Program Files (x86)\Arm GNU Toolchain arm-none-eabi\12.2 rel1\bin\arm-none-eabi-gcc.EXE",` will...
I thought I should check with you before I try and do this myself :) In terms of creating VSCode projects, I note that there are a couple options missing...
I get this when I try to start it: ``` PS C:\Program Files\Raspberry Pi\Pico SDK v1.5.1> py C:\Users\mr\Documents\Pico-v1.5.1\pico-project-generator\pico_project.py --gui Python was not found; run without arguments to install from the...
https://github.com/raspberrypi/pico-project-generator/blob/2f3efc5134737b69f62efc53c0ea4415cbe832b7/pico_project.py#L1194 The launch config has a `preLaunchTask` settings but the referenced task is not defined in a `tasks.json`.
The `update_vscode_json_to_sdk1_5` branch contains some changes to the recommended extensions but a missing `,` causes `JSON.parse` in nodejs to fail. That causes VS Code to skip this file => no...
The updated `settings.json` content in the `update_vscode_json_to_sdk1_5` branch contains a `)` where I should not be. https://github.com/raspberrypi/pico-project-generator/blob/2ab988c000f7d5ded517ca6145845125af45e3fa/pico_project.py#L1240 Also following additional `,` causes JSON.parse to fail: ```json SyntaxError: Expected double-quoted property...
I started to play around with adding a `--docker` flag to the project generator and am looking for feedback on whether it's worth opening a PR. The big benefit of...