diff options
| author | Caleb Jamison <[email protected]> | 2024-08-07 23:20:26 -0400 |
|---|---|---|
| committer | Caleb Jamison <[email protected]> | 2024-08-08 21:35:21 -0400 |
| commit | b185e02a42ad751ec6c31ffa6a1b87503f15489d (patch) | |
| tree | 0f0c66747267d24d95b5957b22db7e5c525cb00e /embassy-rp/src/reset.rs | |
| parent | 891c5ee10584cd990dad529e3506fe1328e4e69d (diff) | |
Initial rp235x support
Examples have been run, but there is not yet a test suite.
Diffstat (limited to 'embassy-rp/src/reset.rs')
| -rw-r--r-- | embassy-rp/src/reset.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-rp/src/reset.rs b/embassy-rp/src/reset.rs index 70512fa14..4b9e42483 100644 --- a/embassy-rp/src/reset.rs +++ b/embassy-rp/src/reset.rs | |||
| @@ -2,7 +2,7 @@ pub use pac::resets::regs::Peripherals; | |||
| 2 | 2 | ||
| 3 | use crate::pac; | 3 | use crate::pac; |
| 4 | 4 | ||
| 5 | pub const ALL_PERIPHERALS: Peripherals = Peripherals(0x01ffffff); | 5 | pub const ALL_PERIPHERALS: Peripherals = Peripherals(0x01ff_ffff); |
| 6 | 6 | ||
| 7 | pub(crate) fn reset(peris: Peripherals) { | 7 | pub(crate) fn reset(peris: Peripherals) { |
| 8 | pac::RESETS.reset().write_value(peris); | 8 | pac::RESETS.reset().write_value(peris); |
