pounder_test/src/bin/dual-iir.rs

296 lines
12 KiB
Rust
Raw Normal View History

2020-11-10 22:13:57 +08:00
#![deny(warnings)]
2019-03-18 19:56:26 +08:00
#![no_std]
#![no_main]
2019-10-22 21:43:49 +08:00
#![cfg_attr(feature = "nightly", feature(core_intrinsics))]
2019-03-18 19:56:26 +08:00
2021-01-18 23:47:47 +08:00
use stm32h7xx_hal as hal;
2019-06-07 17:26:24 +08:00
2019-03-18 19:56:26 +08:00
#[macro_use]
extern crate log;
2020-06-17 18:20:45 +08:00
use rtic::cyccnt::{Instant, U32Ext};
2020-06-16 22:22:12 +08:00
use heapless::{consts::*, String};
2020-06-09 01:13:55 +08:00
2021-01-20 19:49:07 +08:00
use stabilizer::{hardware, server};
2020-11-03 17:52:37 +08:00
2020-11-22 23:45:32 +08:00
use dsp::iir;
2021-01-19 00:23:21 +08:00
use hardware::{Adc0Input, Adc1Input, Dac0Output, Dac1Output, AFE0, AFE1};
2019-05-31 00:03:48 +08:00
const SCALE: f32 = ((1 << 15) - 1) as f32;
2019-03-25 17:08:27 +08:00
2019-04-30 19:42:05 +08:00
const TCP_RX_BUFFER_SIZE: usize = 8192;
const TCP_TX_BUFFER_SIZE: usize = 8192;
2021-01-20 19:49:07 +08:00
// The number of cascaded IIR biquads per channel. Select 1 or 2!
const IIR_CASCADE_LENGTH: usize = 1;
2020-06-17 18:20:45 +08:00
#[rtic::app(device = stm32h7xx_hal::stm32, peripherals = true, monotonic = rtic::cyccnt::CYCCNT)]
2019-05-31 00:03:48 +08:00
const APP: () = {
2019-08-26 21:47:42 +08:00
struct Resources {
2020-11-26 18:33:08 +08:00
afes: (AFE0, AFE1),
2020-11-26 17:58:11 +08:00
adcs: (Adc0Input, Adc1Input),
2020-11-26 18:16:08 +08:00
dacs: (Dac0Output, Dac1Output),
2021-01-18 23:47:47 +08:00
net_interface: hardware::Ethernet,
2020-06-09 00:20:10 +08:00
// Format: iir_state[ch][cascade-no][coeff]
2020-12-05 01:22:53 +08:00
#[init([[[0.; 5]; IIR_CASCADE_LENGTH]; 2])]
iir_state: [[iir::IIRState; IIR_CASCADE_LENGTH]; 2],
#[init([[iir::IIR { ba: [1., 0., 0., 0., 0.], y_offset: 0., y_min: -SCALE - 1., y_max: SCALE }; IIR_CASCADE_LENGTH]; 2])]
iir_ch: [[iir::IIR; IIR_CASCADE_LENGTH]; 2],
2019-08-26 21:47:42 +08:00
}
2019-05-31 00:03:48 +08:00
#[init]
2019-05-31 00:03:48 +08:00
fn init(c: init::Context) -> init::LateResources {
2021-01-18 23:47:47 +08:00
// Configure the microcontroller
let (mut stabilizer, _pounder) = hardware::setup(c.core, c.device);
2020-04-19 19:37:03 +08:00
2021-01-18 23:47:47 +08:00
// Enable ADC/DAC events
stabilizer.adcs.0.start();
stabilizer.adcs.1.start();
stabilizer.dacs.0.start();
stabilizer.dacs.1.start();
2021-01-06 20:29:19 +08:00
// Start sampling ADCs.
2021-01-18 23:47:47 +08:00
stabilizer.adc_dac_timer.start();
2020-06-08 15:36:28 +08:00
2019-05-31 04:57:41 +08:00
init::LateResources {
2021-01-18 23:47:47 +08:00
afes: stabilizer.afes,
adcs: stabilizer.adcs,
dacs: stabilizer.dacs,
net_interface: stabilizer.net.interface,
2019-05-31 04:57:41 +08:00
}
}
/// Main DSP processing routine for Stabilizer.
///
/// # Note
/// Processing time for the DSP application code is bounded by the following constraints:
///
/// DSP application code starts after the ADC has generated a batch of samples and must be
/// completed by the time the next batch of ADC samples has been acquired (plus the FIFO buffer
/// time). If this constraint is not met, firmware will panic due to an ADC input overrun.
///
/// The DSP application code must also fill out the next DAC output buffer in time such that the
/// DAC can switch to it when it has completed the current buffer. If this constraint is not met
/// it's possible that old DAC codes will be generated on the output and the output samples will
/// be delayed by 1 batch.
///
/// Because the ADC and DAC operate at the same rate, these two constraints actually implement
/// the same time bounds, meeting one also means the other is also met.
2021-01-18 23:47:47 +08:00
#[task(binds=DMA1_STR4, resources=[adcs, dacs, iir_state, iir_ch], priority=2)]
2020-11-26 18:29:16 +08:00
fn process(c: process::Context) {
let adc_samples = [
c.resources.adcs.0.acquire_buffer(),
c.resources.adcs.1.acquire_buffer(),
2020-11-26 18:29:16 +08:00
];
2020-11-26 18:29:16 +08:00
let dac_samples = [
c.resources.dacs.0.acquire_buffer(),
c.resources.dacs.1.acquire_buffer(),
2020-11-26 18:29:16 +08:00
];
for channel in 0..adc_samples.len() {
for sample in 0..adc_samples[0].len() {
let x = f32::from(adc_samples[channel][sample] as i16);
let mut y = x;
for i in 0..c.resources.iir_state[channel].len() {
y = c.resources.iir_ch[channel][i]
.update(&mut c.resources.iir_state[channel][i], y);
}
2020-11-26 00:53:13 +08:00
// Note(unsafe): The filter limits ensure that the value is in range.
// The truncation introduces 1/2 LSB distortion.
let y = unsafe { y.to_int_unchecked::<i16>() };
2020-11-26 00:53:13 +08:00
// Convert to DAC code
dac_samples[channel][sample] = y as u16 ^ 0x8000;
2020-11-26 18:29:16 +08:00
}
2020-11-17 21:23:56 +08:00
}
}
2021-01-18 23:47:47 +08:00
#[idle(resources=[net_interface, iir_state, iir_ch, afes])]
fn idle(mut c: idle::Context) -> ! {
let mut socket_set_entries: [_; 8] = Default::default();
2020-06-16 22:22:12 +08:00
let mut sockets =
2021-01-18 23:47:47 +08:00
smoltcp::socket::SocketSet::new(&mut socket_set_entries[..]);
let mut rx_storage = [0; TCP_RX_BUFFER_SIZE];
let mut tx_storage = [0; TCP_TX_BUFFER_SIZE];
2020-06-09 01:13:55 +08:00
let tcp_handle = {
2020-06-16 22:22:12 +08:00
let tcp_rx_buffer =
2021-01-18 23:47:47 +08:00
smoltcp::socket::TcpSocketBuffer::new(&mut rx_storage[..]);
2020-06-16 22:22:12 +08:00
let tcp_tx_buffer =
2021-01-18 23:47:47 +08:00
smoltcp::socket::TcpSocketBuffer::new(&mut tx_storage[..]);
2020-06-16 22:22:12 +08:00
let tcp_socket =
2021-01-18 23:47:47 +08:00
smoltcp::socket::TcpSocket::new(tcp_rx_buffer, tcp_tx_buffer);
sockets.add(tcp_socket)
};
2020-04-29 01:26:43 +08:00
let mut server = server::Server::new();
2020-04-29 01:15:00 +08:00
let mut time = 0u32;
let mut next_ms = Instant::now();
// TODO: Replace with reference to CPU clock from CCDR.
next_ms += 400_000.cycles();
loop {
let tick = Instant::now() > next_ms;
if tick {
next_ms += 400_000.cycles();
time += 1;
}
2019-05-31 04:57:41 +08:00
{
2019-11-24 22:09:52 +08:00
let socket =
2021-01-18 23:47:47 +08:00
&mut *sockets.get::<smoltcp::socket::TcpSocket>(tcp_handle);
if socket.state() == smoltcp::socket::TcpState::CloseWait {
2019-06-03 23:06:11 +08:00
socket.close();
} else if !(socket.is_open() || socket.is_listening()) {
2019-11-24 22:09:52 +08:00
socket
.listen(1235)
.unwrap_or_else(|e| warn!("TCP listen error: {:?}", e));
2019-05-31 04:57:41 +08:00
} else {
server.poll(socket, |req| {
info!("Got request: {:?}", req);
2021-01-20 19:49:07 +08:00
stabilizer::route_request!(req,
readable_attributes: [
"stabilizer/iir/state": (|| {
2020-06-03 23:04:09 +08:00
let state = c.resources.iir_state.lock(|iir_state|
server::Status {
t: time,
x0: iir_state[0][0][0],
y0: iir_state[0][0][2],
x1: iir_state[1][0][0],
y1: iir_state[1][0][2],
});
Ok::<server::Status, ()>(state)
}),
// "_b" means cascades 2nd IIR
2021-01-18 23:47:47 +08:00
"stabilizer/iir_b/state": (|| { let state = c.resources.iir_state.lock(|iir_state|
server::Status {
t: time,
x0: iir_state[0][IIR_CASCADE_LENGTH-1][0],
y0: iir_state[0][IIR_CASCADE_LENGTH-1][2],
x1: iir_state[1][IIR_CASCADE_LENGTH-1][0],
y1: iir_state[1][IIR_CASCADE_LENGTH-1][2],
2020-06-03 23:04:09 +08:00
});
Ok::<server::Status, ()>(state)
}),
2020-11-26 18:33:08 +08:00
"stabilizer/afe0/gain": (|| c.resources.afes.0.get_gain()),
"stabilizer/afe1/gain": (|| c.resources.afes.1.get_gain())
],
2020-06-03 23:04:09 +08:00
modifiable_attributes: [
"stabilizer/iir0/state": server::IirRequest, (|req: server::IirRequest| {
2020-06-03 23:15:57 +08:00
c.resources.iir_ch.lock(|iir_ch| {
if req.channel > 1 {
return Err(());
}
iir_ch[req.channel as usize][0] = req.iir;
2020-06-03 23:15:57 +08:00
Ok::<server::IirRequest, ()>(req)
})
}),
"stabilizer/iir1/state": server::IirRequest, (|req: server::IirRequest| {
2020-06-03 23:15:57 +08:00
c.resources.iir_ch.lock(|iir_ch| {
if req.channel > 1 {
return Err(());
}
iir_ch[req.channel as usize][0] = req.iir;
Ok::<server::IirRequest, ()>(req)
})
}),
"stabilizer/iir_b0/state": server::IirRequest, (|req: server::IirRequest| {
c.resources.iir_ch.lock(|iir_ch| {
if req.channel > 1 {
return Err(());
}
iir_ch[req.channel as usize][IIR_CASCADE_LENGTH-1] = req.iir;
Ok::<server::IirRequest, ()>(req)
})
}),
"stabilizer/iir_b1/state": server::IirRequest,(|req: server::IirRequest| {
c.resources.iir_ch.lock(|iir_ch| {
if req.channel > 1 {
return Err(());
}
iir_ch[req.channel as usize][IIR_CASCADE_LENGTH-1] = req.iir;
2020-06-03 23:15:57 +08:00
Ok::<server::IirRequest, ()>(req)
})
}),
2021-01-18 23:47:47 +08:00
"stabilizer/afe0/gain": hardware::AfeGain, (|gain| {
c.resources.afes.0.set_gain(gain);
2020-11-26 23:24:42 +08:00
Ok::<(), ()>(())
}),
2021-01-18 23:47:47 +08:00
"stabilizer/afe1/gain": hardware::AfeGain, (|gain| {
c.resources.afes.1.set_gain(gain);
2020-11-26 23:24:42 +08:00
Ok::<(), ()>(())
})
]
)
2019-06-03 23:06:11 +08:00
});
2019-05-31 04:57:41 +08:00
}
}
2020-06-16 22:22:12 +08:00
let sleep = match c.resources.net_interface.poll(
&mut sockets,
2021-01-18 23:47:47 +08:00
smoltcp::time::Instant::from_millis(time as i64),
2020-06-16 22:22:12 +08:00
) {
2020-11-26 23:24:42 +08:00
Ok(changed) => !changed,
2021-01-18 23:47:47 +08:00
Err(smoltcp::Error::Unrecognized) => true,
2019-11-24 22:09:52 +08:00
Err(e) => {
info!("iface poll error: {:?}", e);
true
}
2020-04-29 01:15:00 +08:00
};
if sleep {
cortex_m::asm::wfi();
2019-05-31 04:57:41 +08:00
}
2019-05-31 00:03:48 +08:00
}
}
2019-04-28 19:37:14 +08:00
2020-06-09 20:16:01 +08:00
#[task(binds = ETH, priority = 1)]
fn eth(_: eth::Context) {
2021-01-18 23:47:47 +08:00
unsafe { hal::ethernet::interrupt_handler() }
2019-05-31 00:03:48 +08:00
}
#[task(binds = SPI2, priority = 3)]
2020-11-03 16:36:03 +08:00
fn spi2(_: spi2::Context) {
panic!("ADC0 input overrun");
}
#[task(binds = SPI3, priority = 3)]
2020-11-03 16:36:03 +08:00
fn spi3(_: spi3::Context) {
panic!("ADC0 input overrun");
}
#[task(binds = SPI4, priority = 3)]
2020-11-11 19:09:27 +08:00
fn spi4(_: spi4::Context) {
panic!("DAC0 output error");
}
#[task(binds = SPI5, priority = 3)]
2020-11-11 19:09:27 +08:00
fn spi5(_: spi5::Context) {
panic!("DAC1 output error");
}
2019-05-31 00:03:48 +08:00
extern "C" {
2020-06-17 18:20:45 +08:00
// hw interrupt handlers for RTIC to use for scheduling tasks
2019-05-31 04:57:41 +08:00
// one per priority
2019-05-31 00:03:48 +08:00
fn DCMI();
fn JPEG();
fn SDMMC();
}
};