LPC55S69_CMake_Template is a GitHub template project you can start a new project for this board from. This shows many the CI examples from the talk for GitHub Actions and CodeQL.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // See https://go.microsoft.com/fwlink/?LinkId=733558 | |
| // for the documentation about the tasks.json format | |
| "version": "0.1.0", | |
| "windows": { | |
| "command": "cmd", | |
| "args": ["/C"] | |
| }, | |
| "linux": { | |
| "command": "sh", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // See https://go.microsoft.com/fwlink/?LinkId=733558 | |
| // for the documentation about the tasks.json format | |
| "version": "0.1.0", | |
| "windows": { | |
| "command": "cmd", | |
| "args": ["/C"] | |
| }, | |
| "linux": { | |
| "command": "sh", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Arduino attach (Windows)", | |
| "type": "cppdbg", | |
| "request": "launch", | |
| "launchOptionType": "Local", | |
| "miDebuggerPath": "C:/Users/mgoodner/AppData/Local/Arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gdb.exe", | |
| "targetArchitecture": "ARM", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "C++ Launch", | |
| "type": "cppdbg", | |
| "request": "launch", | |
| "program": "${workspaceRoot}/BUILD/mbed_blinky.elf", | |
| "args": [], | |
| "stopAtEntry": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <LocalLaunchOptions xmlns="http://schemas.microsoft.com/vstudio/MDDDebuggerOptions/2014" | |
| MIDebuggerPath="c:\tools\armgcc\6-2017-q1-update\bin\arm-none-eabi-gdb.exe" | |
| MIDebuggerServerAddress="localhost:3333" | |
| ExePath="BUILD\mbed_blinky.elf" | |
| TargetArchitecture="arm"> | |
| <SetupCommands> | |
| <Command> | |
| target remote localhost:3333 | |
| </Command> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "BMP JTAG Launch", | |
| "type": "cppdbg", | |
| "request": "launch", | |
| "program": "${workspaceRoot}/fancyblink.elf", | |
| "args": [], | |
| "stopAtEntry": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get update | |
| sudo apt-get install -y git cmake | |
| git clone https://github.com/Kitware/CMake.git | |
| cd CMake | |
| Make sure you are on a supported release | |
| git checkout tags/v3.9.0 | |
| mkdir out | |
| cd out |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "0.2.1", | |
| "tasks": [ | |
| { | |
| "taskName": "flash", | |
| "appliesTo": "BUILD/Nucleo_blink_led.bin", | |
| "type": "launch", | |
| "command": "${env.COMSPEC}", | |
| "args": [ | |
| "copy BUILD\\Nucleo_blink_led.bin D:" |
This page collects links to embedded development topics related to VS and VS Code from the C++ team at Microsoft.
We are seeking feedback on our embedded experiences from developers, it would be a great help to us if you could take our short survey. Even if you are not using our products today your feedback would be very helpful.
OlderNewer