Fixing the nrf54l drive configuration bug

This commit is contained in:
Matthieu 2025-07-10 18:45:31 +02:00
parent 7f1f237702
commit 7b7a62a0c2

View File

@ -292,7 +292,7 @@ pub(crate) fn convert_drive(w: &mut pac::gpio::regs::PinCnf, drive: OutputDrive)
} }
w.set_drive0(convert(drive.low)); w.set_drive0(convert(drive.low));
w.set_drive0(convert(drive.high)); w.set_drive1(convert(drive.high));
} }
} }