diff options
| author | Matthieu <[email protected]> | 2025-07-10 18:45:31 +0200 |
|---|---|---|
| committer | Matthieu <[email protected]> | 2025-07-10 18:45:31 +0200 |
| commit | 7b7a62a0c255890f26dc59c17f2e3815b71455e7 (patch) | |
| tree | f5a0d6f3bb03f8da3d88ed3ec6cdf5b173a68cb2 /embassy-nrf | |
| parent | 7f1f2377022757a50fb8d23197baef6b576bffb3 (diff) | |
Fixing the nrf54l drive configuration bug
Diffstat (limited to 'embassy-nrf')
| -rw-r--r-- | embassy-nrf/src/gpio.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-nrf/src/gpio.rs b/embassy-nrf/src/gpio.rs index d02da9ac5..65f2d99f7 100644 --- a/embassy-nrf/src/gpio.rs +++ b/embassy-nrf/src/gpio.rs | |||
| @@ -292,7 +292,7 @@ pub(crate) fn convert_drive(w: &mut pac::gpio::regs::PinCnf, drive: OutputDrive) | |||
| 292 | } | 292 | } |
| 293 | 293 | ||
| 294 | w.set_drive0(convert(drive.low)); | 294 | w.set_drive0(convert(drive.low)); |
| 295 | w.set_drive0(convert(drive.high)); | 295 | w.set_drive1(convert(drive.high)); |
| 296 | } | 296 | } |
| 297 | } | 297 | } |
| 298 | 298 | ||
