Robin Mueller
4160df667f
- Added basic accelerometer example. Board in not populated so it is not complete, but it provides a starting point - Added ADC base library and example building on the new `max116xx-10bit` device driver crate
21 lines
773 B
JSON
21 lines
773 B
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "cortex-debug",
|
|
"request": "launch",
|
|
"name": "Debug Blinky",
|
|
"servertype": "jlink",
|
|
"cwd": "${workspaceRoot}",
|
|
"device": "VA10820",
|
|
"svdFile": "../va108xx-rs/va108xx.svd",
|
|
"preLaunchTask": "rust: cargo build minimal blinky",
|
|
"executable": "${workspaceFolder}/target/thumbv6m-none-eabi/debug/examples/blinky-leds",
|
|
"interface": "jtag",
|
|
"runToMain": true,
|
|
},
|
|
]
|
|
} |