Completed BSP core features

- 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
This commit is contained in:
2021-12-12 13:46:45 +01:00
parent 1b2e973470
commit 4160df667f
8 changed files with 349 additions and 2 deletions

View File

@ -66,6 +66,17 @@ the [`Cortex-Debug` plugin](https://marketplace.visualstudio.com/items?itemName=
Some sample configuration files for VS code were provided as well. You can simply use `Run and Debug`
to automatically rebuild and flash your application.
The `tasks.json` and the `launch.json` files are generic and you can use them immediately by
opening the folder in VS code or adding it to a workspace.
If you would like to use a custom GDB application, you can specify the gdb binary in the following
configuration variables in your `settings.json`:
- `"cortex-debug.gdbPath"`
- `"cortex-debug.gdbPath.linux"`
- `"cortex-debug.gdbPath.windows"`
- `"cortex-debug.gdbPath.osx"`
## Flashing the non-volatile memory
Coming Soon