Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/foxmd/vscode-stm32-template
CMake template for VSCode and STM32
https://github.com/foxmd/vscode-stm32-template
arm cmake stm32 template vscode
Last synced: 26 days ago
JSON representation
CMake template for VSCode and STM32
- Host: GitHub
- URL: https://github.com/foxmd/vscode-stm32-template
- Owner: FoxMD
- Created: 2022-03-18T14:07:16.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-03-18T15:33:23.000Z (almost 3 years ago)
- Last Synced: 2024-04-21T10:06:16.054Z (9 months ago)
- Topics: arm, cmake, stm32, template, vscode
- Language: CMake
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VSCode-STM32-template
STM32 template needed to open and build CUBE IDE/Atollic projects in VS Code
Example on: [STM32F303 Discovery](https://github.com/FoxMD/cube_ide_cmake_c_f303)### Used tools:
- arm-none-eabi-gcc
- STM32CubeProgrammer
- ST-Link_gdbserver[^1]
- CMake
- Ninja [Ninja build system](https://github.com/ninja-build/ninja/releases)### Used VSCode plugins/tools:
- ms-vscode.cpptools: [Syntax highlighting and other core features for C/C++ development](https://github.com/microsoft/vscode-cpptools)
- ms-vscode.cmake-tools: [CMake core tools, build system generator tool](https://github.com/microsoft/vscode-cmake-tools)
- twxs.cmake: [CMake color highlighting](https://github.com/zyxar/Sublime-CMakeLists)
- marus25.cortex-debug: [Cortex-M debugging extension, mandatory for STM32 debug from VSCode ](https://github.com/Marus/cortex-debug)
- dan-c-underwood.arm: [ARM Assembly syntax highlighter ](https://github.com/dan-c-underwood/vscode-arm)
- zixuanwang.linkerscript: [GCC Linker script syntax highlighter ](https://github.com/TheNetAdmin/vscode-linkerscript)## Requirements
Tools and VSCode plugins from above
### Installed with STM32-CUBE IDE```
arm-none-eabi-gcc
STM32CubeProgrammer
ST-Link_gdbserver
```
### Manual install
CMake - [Download, install](https://cmake.org/download/)
Ninja - [Standalone version](https://github.com/ninja-build/ninja/releases)### VSCode
To install them in one shot, copy code below to terminal in VSCode```
code --install-extension ms-vscode.cpptools
code --install-extension ms-vscode.cmake-tools
code --install-extension twxs.cmake
code --install-extension marus25.cortex-debug
code --install-extension dan-c-underwood.arm
code --install-extension zixuanwang.linkerscript
```
## Modifications
CMakeLists.txt - everywhere under #Modified
.vscode/launch.json - CPU and Paths## TODO
Intelisence highligting (.vscode/c_cpp_properties.json needs to be adjusted.
Workaround: "C_Cpp.errorSquiggles": "Disabled" -> "Enabled" (**not recommended**)## Known issues
- Generated files (.hex, .bin) are bigger with same compiler settings then in STM32-CUBE IDE[^1]: Some AV delete ST-Link_servergdb.exe and let the .bat file exist, while trying to debug your project, you get an error:
`Debugger error: Client: Error: read ECONNRESET`
**Solution:** Just install it again and put a exception in your AV for the exe file before you run it again[^1].