File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 489
489
//! The `--atomics` flag can be passed to `svd2rust` to extends the register API with operations to
490
490
//! atomically set, clear, and toggle specific bits. The atomic operations allow limited
491
491
//! modification of register bits without read-modify-write sequences. As such, they can be
492
- //! concurrently called on different bits in the same register without data races.
492
+ //! concurrently called on different bits in the same register without data races. This flag won't
493
+ //! work for RISCV chips without the atomic extension.
493
494
//!
494
- //! `portable-atomic` v0.3.15 must be added to the dependencies, with default features off if
495
- //! possible to disable the `fallback` feature.
495
+ //! `portable-atomic` v0.3.15 must be added to the dependencies, with default features off to
496
+ //! disable the `fallback` feature.
496
497
//!
497
498
//! Usage examples:
498
499
//!
You can’t perform that action at this time.
0 commit comments