embassy/embassy-rp/src/pio_instr_util.rs

91 lines
2.5 KiB
Rust
Raw Normal View History

2022-07-27 22:45:46 +02:00
use pio::{InSource, InstructionOperands, JmpCondition, OutDestination, SetDestination};
use crate::pio::{Instance, StateMachine};
2022-07-27 22:45:46 +02:00
pub unsafe fn set_x<PIO: Instance, const SM: usize>(sm: &mut StateMachine<PIO, SM>, value: u32) {
2022-07-27 22:45:46 +02:00
const OUT: u16 = InstructionOperands::OUT {
destination: OutDestination::X,
bit_count: 32,
}
.encode();
sm.tx().push(value);
2022-07-27 22:45:46 +02:00
sm.exec_instr(OUT);
}
pub unsafe fn get_x<PIO: Instance, const SM: usize>(sm: &mut StateMachine<PIO, SM>) -> u32 {
2022-07-27 22:45:46 +02:00
const IN: u16 = InstructionOperands::IN {
source: InSource::X,
bit_count: 32,
}
.encode();
sm.exec_instr(IN);
sm.rx().pull()
2022-07-27 22:45:46 +02:00
}
pub unsafe fn set_y<PIO: Instance, const SM: usize>(sm: &mut StateMachine<PIO, SM>, value: u32) {
2022-07-27 22:45:46 +02:00
const OUT: u16 = InstructionOperands::OUT {
destination: OutDestination::Y,
bit_count: 32,
}
.encode();
sm.tx().push(value);
2022-07-27 22:45:46 +02:00
sm.exec_instr(OUT);
}
pub unsafe fn get_y<PIO: Instance, const SM: usize>(sm: &mut StateMachine<PIO, SM>) -> u32 {
2022-07-27 22:45:46 +02:00
const IN: u16 = InstructionOperands::IN {
source: InSource::Y,
bit_count: 32,
}
.encode();
sm.exec_instr(IN);
sm.rx().pull()
2022-07-27 22:45:46 +02:00
}
pub unsafe fn set_pindir<PIO: Instance, const SM: usize>(sm: &mut StateMachine<PIO, SM>, data: u8) {
2022-07-27 22:45:46 +02:00
let set: u16 = InstructionOperands::SET {
destination: SetDestination::PINDIRS,
data,
}
.encode();
sm.exec_instr(set);
}
pub unsafe fn set_pin<PIO: Instance, const SM: usize>(sm: &mut StateMachine<PIO, SM>, data: u8) {
2022-07-27 22:45:46 +02:00
let set: u16 = InstructionOperands::SET {
destination: SetDestination::PINS,
data,
}
.encode();
sm.exec_instr(set);
}
pub unsafe fn set_out_pin<PIO: Instance, const SM: usize>(sm: &mut StateMachine<PIO, SM>, data: u32) {
2022-07-27 22:45:46 +02:00
const OUT: u16 = InstructionOperands::OUT {
destination: OutDestination::PINS,
bit_count: 32,
}
.encode();
sm.tx().push(data);
2022-07-27 22:45:46 +02:00
sm.exec_instr(OUT);
}
pub unsafe fn set_out_pindir<PIO: Instance, const SM: usize>(sm: &mut StateMachine<PIO, SM>, data: u32) {
2022-07-27 22:45:46 +02:00
const OUT: u16 = InstructionOperands::OUT {
destination: OutDestination::PINDIRS,
bit_count: 32,
}
.encode();
sm.tx().push(data);
2022-07-27 22:45:46 +02:00
sm.exec_instr(OUT);
}
pub unsafe fn exec_jmp<PIO: Instance, const SM: usize>(sm: &mut StateMachine<PIO, SM>, to_addr: u8) {
2022-07-27 22:45:46 +02:00
let jmp: u16 = InstructionOperands::JMP {
address: to_addr,
condition: JmpCondition::Always,
}
.encode();
sm.exec_instr(jmp);
}