Skip to content

Commit

Permalink
add notes
Browse files Browse the repository at this point in the history
  • Loading branch information
bunnie committed Jan 20, 2024
1 parent d4e6cbc commit b5be447
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libs/xous-pl230/src/pl230_tests/units.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ pub fn pio_test(pl230: &mut Pl230) -> bool {
report_api("id1", pl230.csr.r(utra::pl230::PERIPH_ID_1));
report_api("id2", pl230.csr.r(utra::pl230::PERIPH_ID_2));

// Configure PB15 -> PIO0 for test (although the code is capable of toggling all pins, only map one).
let mut iox = iox::Iox::new(utralib::generated::HW_IOX_BASE as *mut u32);
let pin = iox.set_pio_bit_from_port_and_pin(iox::IoxPort::PB, 15).unwrap();
report_api("Configured PIO pin: ", pin as u32);
Expand All @@ -156,6 +157,7 @@ pub fn pio_test(pl230: &mut Pl230) -> bool {
sm_a.config_set_out_pins(0, 32);
sm_a.config_set_clkdiv(133.0); // have it run slow so this test operates in the background
sm_a.config_set_out_shift(false, true, 32);
// map the pin returned from set_pio_bit_from_port_and_pin
sm_a.sm_set_pindirs_with_mask(1 << pin as usize, 1 << pin as usize);
sm_a.sm_init(a_prog.entry());
sm_a.sm_clear_fifos(); // ensure the fifos are cleared for this test
Expand Down

0 comments on commit b5be447

Please sign in to comment.