mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
89160b7cb9
* Fix nrf::timer * Bootstrap nrf52840-blinky example * More work on nrf blinky example * Fix README * Add asserts for correct timer functionality * Add correctness check to other monotonics as well * Update Changelog * Fix potential timing issues * Fix race condition in nrf::rtc * Add changelog * Add rtc blinky example * Change rtc example to RC lf clock source * Add changelog to rtic-time * Add changelog * Attempt to fix CI * Update teensy4-blinky Cargo.lock
9 lines
384 B
JSON
9 lines
384 B
JSON
{
|
|
// override the default setting (`cargo check --all-targets`) which produces the following error
|
|
// "can't find crate for `test`" when the default compilation target is a no_std target
|
|
// with these changes RA will call `cargo check --bins` on save
|
|
"rust-analyzer.checkOnSave.allTargets": false,
|
|
"rust-analyzer.checkOnSave.extraArgs": [
|
|
"--bins"
|
|
]
|
|
}
|