2021-01-20 20:43:34 +08:00
|
|
|
#![deny(warnings)]
|
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
|
2021-03-18 03:16:13 +08:00
|
|
|
use stabilizer::{hardware, net};
|
2021-01-20 20:43:34 +08:00
|
|
|
|
2021-03-18 03:16:13 +08:00
|
|
|
use miniconf::Miniconf;
|
2021-01-28 01:15:35 +08:00
|
|
|
use serde::Deserialize;
|
|
|
|
|
2021-01-20 20:43:34 +08:00
|
|
|
use dsp::iir;
|
2021-01-30 22:00:58 +08:00
|
|
|
use hardware::{
|
2021-05-07 20:11:25 +08:00
|
|
|
Adc0Input, Adc1Input, AdcCode, AfeGain, Dac0Output, Dac1Output, DacCode,
|
2021-05-07 19:50:34 +08:00
|
|
|
DigitalInput0, DigitalInput1, InputPin, SystemTimer, AFE0, AFE1,
|
2021-01-30 22:00:58 +08:00
|
|
|
};
|
2021-01-20 20:43:34 +08:00
|
|
|
|
2021-05-26 19:05:54 +08:00
|
|
|
use net::{NetworkState, NetworkUsers, Telemetry, TelemetryBuffer};
|
2021-03-18 03:16:13 +08:00
|
|
|
|
2021-02-02 00:18:10 +08:00
|
|
|
const SCALE: f32 = i16::MAX as _;
|
2021-01-20 20:43:34 +08:00
|
|
|
|
|
|
|
// The number of cascaded IIR biquads per channel. Select 1 or 2!
|
|
|
|
const IIR_CASCADE_LENGTH: usize = 1;
|
|
|
|
|
2021-04-14 22:09:54 +08:00
|
|
|
#[derive(Clone, Copy, Debug, Deserialize, Miniconf)]
|
2021-01-28 01:15:35 +08:00
|
|
|
pub struct Settings {
|
2021-02-17 19:59:24 +08:00
|
|
|
afe: [AfeGain; 2],
|
|
|
|
iir_ch: [[iir::IIR; IIR_CASCADE_LENGTH]; 2],
|
2021-04-14 22:09:54 +08:00
|
|
|
allow_hold: bool,
|
|
|
|
force_hold: bool,
|
2021-05-07 19:02:14 +08:00
|
|
|
telemetry_period: u16,
|
2021-01-28 01:15:35 +08:00
|
|
|
}
|
|
|
|
|
2021-02-17 19:59:24 +08:00
|
|
|
impl Default for Settings {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self {
|
2021-04-28 22:27:59 +08:00
|
|
|
// Analog frontend programmable gain amplifier gains (G1, G2, G5, G10)
|
2021-02-17 19:59:24 +08:00
|
|
|
afe: [AfeGain::G1, AfeGain::G1],
|
2021-04-28 22:27:59 +08:00
|
|
|
// IIR filter tap gains are an array `[b0, b1, b2, a1, a2]` such that the
|
|
|
|
// new output is computed as `y0 = a1*y1 + a2*y2 + b0*x0 + b1*x1 + b2*x2`.
|
|
|
|
// The array is `iir_state[channel-index][cascade-index][coeff-index]`.
|
|
|
|
// The IIR coefficients can be mapped to other transfer function
|
|
|
|
// representations, for example as described in https://arxiv.org/abs/1508.06319
|
2021-02-17 19:59:24 +08:00
|
|
|
iir_ch: [[iir::IIR::new(1., -SCALE, SCALE); IIR_CASCADE_LENGTH]; 2],
|
2021-04-28 22:27:59 +08:00
|
|
|
// Permit the DI1 digital input to suppress filter output updates.
|
2021-04-14 22:09:54 +08:00
|
|
|
allow_hold: false,
|
2021-04-28 22:27:59 +08:00
|
|
|
// Force suppress filter output updates.
|
2021-04-14 22:09:54 +08:00
|
|
|
force_hold: false,
|
2021-05-10 17:10:26 +08:00
|
|
|
// The default telemetry period in seconds.
|
2021-05-07 19:02:14 +08:00
|
|
|
telemetry_period: 10,
|
2021-02-17 19:59:24 +08:00
|
|
|
}
|
2021-01-28 01:15:35 +08:00
|
|
|
}
|
2021-01-26 21:28:06 +08:00
|
|
|
}
|
|
|
|
|
2021-04-20 20:12:47 +08:00
|
|
|
#[rtic::app(device = stm32h7xx_hal::stm32, peripherals = true, monotonic = stabilizer::hardware::SystemTimer)]
|
2021-01-20 20:43:34 +08:00
|
|
|
const APP: () = {
|
|
|
|
struct Resources {
|
|
|
|
afes: (AFE0, AFE1),
|
2021-04-15 21:43:40 +08:00
|
|
|
digital_inputs: (DigitalInput0, DigitalInput1),
|
2021-01-20 20:43:34 +08:00
|
|
|
adcs: (Adc0Input, Adc1Input),
|
|
|
|
dacs: (Dac0Output, Dac1Output),
|
2021-05-05 22:16:54 +08:00
|
|
|
network: NetworkUsers<Settings, Telemetry>,
|
2021-05-05 20:42:17 +08:00
|
|
|
|
2021-04-15 20:40:47 +08:00
|
|
|
settings: Settings,
|
2021-05-05 21:39:33 +08:00
|
|
|
telemetry: TelemetryBuffer,
|
2021-01-20 20:43:34 +08:00
|
|
|
|
2021-02-17 19:59:24 +08:00
|
|
|
#[init([[[0.; 5]; IIR_CASCADE_LENGTH]; 2])]
|
2021-02-01 19:22:50 +08:00
|
|
|
iir_state: [[iir::Vec5; IIR_CASCADE_LENGTH]; 2],
|
2021-01-20 20:43:34 +08:00
|
|
|
}
|
|
|
|
|
2021-04-15 21:43:40 +08:00
|
|
|
#[init(spawn=[telemetry, settings_update])]
|
2021-01-20 20:43:34 +08:00
|
|
|
fn init(c: init::Context) -> init::LateResources {
|
|
|
|
// Configure the microcontroller
|
|
|
|
let (mut stabilizer, _pounder) = hardware::setup(c.core, c.device);
|
|
|
|
|
2021-05-05 22:16:54 +08:00
|
|
|
let network = NetworkUsers::new(
|
2021-03-18 03:16:13 +08:00
|
|
|
stabilizer.net.stack,
|
|
|
|
stabilizer.net.phy,
|
|
|
|
stabilizer.cycle_counter,
|
2021-05-05 22:16:54 +08:00
|
|
|
env!("CARGO_BIN_NAME"),
|
|
|
|
stabilizer.net.mac_address,
|
2021-03-18 03:16:13 +08:00
|
|
|
);
|
2021-01-31 01:57:06 +08:00
|
|
|
|
2021-04-14 22:09:54 +08:00
|
|
|
// Spawn a settings update for default settings.
|
|
|
|
c.spawn.settings_update().unwrap();
|
2021-04-15 21:43:40 +08:00
|
|
|
c.spawn.telemetry().unwrap();
|
2021-01-31 01:57:06 +08:00
|
|
|
|
2021-01-20 20:43:34 +08:00
|
|
|
// Enable ADC/DAC events
|
|
|
|
stabilizer.adcs.0.start();
|
|
|
|
stabilizer.adcs.1.start();
|
|
|
|
stabilizer.dacs.0.start();
|
|
|
|
stabilizer.dacs.1.start();
|
|
|
|
|
|
|
|
// Start sampling ADCs.
|
|
|
|
stabilizer.adc_dac_timer.start();
|
|
|
|
|
|
|
|
init::LateResources {
|
|
|
|
afes: stabilizer.afes,
|
|
|
|
adcs: stabilizer.adcs,
|
|
|
|
dacs: stabilizer.dacs,
|
2021-05-05 20:42:17 +08:00
|
|
|
network,
|
2021-04-15 21:43:40 +08:00
|
|
|
digital_inputs: stabilizer.digital_inputs,
|
2021-04-29 21:55:36 +08:00
|
|
|
telemetry: net::TelemetryBuffer::default(),
|
2021-04-14 22:09:54 +08:00
|
|
|
settings: Settings::default(),
|
2021-01-20 20:43:34 +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-04-15 21:43:40 +08:00
|
|
|
#[task(binds=DMA1_STR4, resources=[adcs, digital_inputs, dacs, iir_state, settings, telemetry], priority=2)]
|
2021-03-29 02:32:50 +08:00
|
|
|
#[inline(never)]
|
|
|
|
#[link_section = ".itcm.process"]
|
2021-01-20 20:43:34 +08:00
|
|
|
fn process(c: process::Context) {
|
|
|
|
let adc_samples = [
|
|
|
|
c.resources.adcs.0.acquire_buffer(),
|
|
|
|
c.resources.adcs.1.acquire_buffer(),
|
|
|
|
];
|
|
|
|
|
|
|
|
let dac_samples = [
|
|
|
|
c.resources.dacs.0.acquire_buffer(),
|
|
|
|
c.resources.dacs.1.acquire_buffer(),
|
|
|
|
];
|
|
|
|
|
2021-05-07 19:02:14 +08:00
|
|
|
let digital_inputs = [
|
|
|
|
c.resources.digital_inputs.0.is_high().unwrap(),
|
|
|
|
c.resources.digital_inputs.1.is_high().unwrap(),
|
|
|
|
];
|
|
|
|
|
2021-04-14 22:09:54 +08:00
|
|
|
let hold = c.resources.settings.force_hold
|
2021-05-07 19:02:14 +08:00
|
|
|
|| (digital_inputs[1] && c.resources.settings.allow_hold);
|
2021-04-14 21:53:52 +08:00
|
|
|
|
2021-01-20 20:43:34 +08:00
|
|
|
for channel in 0..adc_samples.len() {
|
|
|
|
for sample in 0..adc_samples[0].len() {
|
2021-04-14 21:53:52 +08:00
|
|
|
let mut y = f32::from(adc_samples[channel][sample] as i16);
|
2021-01-20 20:43:34 +08:00
|
|
|
for i in 0..c.resources.iir_state[channel].len() {
|
2021-04-14 22:09:54 +08:00
|
|
|
y = c.resources.settings.iir_ch[channel][i].update(
|
2021-04-14 21:53:52 +08:00
|
|
|
&mut c.resources.iir_state[channel][i],
|
|
|
|
y,
|
|
|
|
hold,
|
|
|
|
);
|
2021-01-20 20:43:34 +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>() };
|
|
|
|
// Convert to DAC code
|
2021-05-07 19:50:34 +08:00
|
|
|
dac_samples[channel][sample] = DacCode::from(y).0;
|
2021-01-20 20:43:34 +08:00
|
|
|
}
|
|
|
|
}
|
2021-04-15 20:40:47 +08:00
|
|
|
|
|
|
|
// Update telemetry measurements.
|
2021-05-07 19:02:14 +08:00
|
|
|
c.resources.telemetry.adcs =
|
2021-05-07 20:11:25 +08:00
|
|
|
[AdcCode(adc_samples[0][0]), AdcCode(adc_samples[1][0])];
|
2021-04-15 20:40:47 +08:00
|
|
|
|
2021-05-07 19:50:34 +08:00
|
|
|
c.resources.telemetry.dacs =
|
|
|
|
[DacCode(dac_samples[0][0]), DacCode(dac_samples[1][0])];
|
2021-04-15 21:43:40 +08:00
|
|
|
|
2021-05-07 19:02:14 +08:00
|
|
|
c.resources.telemetry.digital_inputs = digital_inputs;
|
2021-01-20 20:43:34 +08:00
|
|
|
}
|
|
|
|
|
2021-05-05 20:42:17 +08:00
|
|
|
#[idle(resources=[network], spawn=[settings_update])]
|
2021-01-20 20:43:34 +08:00
|
|
|
fn idle(mut c: idle::Context) -> ! {
|
|
|
|
loop {
|
2021-05-05 22:46:53 +08:00
|
|
|
match c.resources.network.lock(|net| net.update()) {
|
2021-05-26 19:05:54 +08:00
|
|
|
NetworkState::SettingsChanged => {
|
|
|
|
c.spawn.settings_update().unwrap()
|
|
|
|
}
|
|
|
|
NetworkState::Updated => {}
|
|
|
|
NetworkState::NoChange => cortex_m::asm::wfi(),
|
2021-01-20 20:43:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-05 20:42:17 +08:00
|
|
|
#[task(priority = 1, resources=[network, afes, settings])]
|
2021-02-17 19:59:24 +08:00
|
|
|
fn settings_update(mut c: settings_update::Context) {
|
|
|
|
// Update the IIR channels.
|
2021-05-05 20:42:17 +08:00
|
|
|
let settings = c.resources.network.miniconf.settings();
|
2021-04-14 22:09:54 +08:00
|
|
|
c.resources.settings.lock(|current| *current = *settings);
|
2021-02-17 19:59:24 +08:00
|
|
|
|
|
|
|
// Update AFEs
|
|
|
|
c.resources.afes.0.set_gain(settings.afe[0]);
|
|
|
|
c.resources.afes.1.set_gain(settings.afe[1]);
|
2021-01-26 21:28:06 +08:00
|
|
|
}
|
|
|
|
|
2021-05-05 20:42:17 +08:00
|
|
|
#[task(priority = 1, resources=[network, settings, telemetry], schedule=[telemetry])]
|
2021-04-15 20:40:47 +08:00
|
|
|
fn telemetry(mut c: telemetry::Context) {
|
2021-05-06 22:23:41 +08:00
|
|
|
let telemetry: TelemetryBuffer =
|
|
|
|
c.resources.telemetry.lock(|telemetry| *telemetry);
|
2021-04-15 20:40:47 +08:00
|
|
|
|
2021-05-07 19:04:25 +08:00
|
|
|
let (gains, telemetry_period) = c
|
|
|
|
.resources
|
|
|
|
.settings
|
|
|
|
.lock(|settings| (settings.afe, settings.telemetry_period));
|
2021-05-05 20:42:17 +08:00
|
|
|
|
2021-05-05 22:16:54 +08:00
|
|
|
c.resources
|
|
|
|
.network
|
|
|
|
.telemetry
|
2021-05-06 18:33:07 +08:00
|
|
|
.publish(&telemetry.finalize(gains[0], gains[1]));
|
2021-04-15 20:40:47 +08:00
|
|
|
|
|
|
|
// Schedule the telemetry task in the future.
|
2021-04-20 19:46:37 +08:00
|
|
|
c.schedule
|
|
|
|
.telemetry(
|
|
|
|
c.scheduled
|
|
|
|
+ SystemTimer::ticks_from_secs(telemetry_period as u32),
|
|
|
|
)
|
2021-04-15 20:40:47 +08:00
|
|
|
.unwrap();
|
|
|
|
}
|
|
|
|
|
2021-01-20 20:43:34 +08:00
|
|
|
#[task(binds = ETH, priority = 1)]
|
|
|
|
fn eth(_: eth::Context) {
|
2021-04-15 19:47:10 +08:00
|
|
|
unsafe { stm32h7xx_hal::ethernet::interrupt_handler() }
|
2021-01-20 20:43:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[task(binds = SPI2, priority = 3)]
|
|
|
|
fn spi2(_: spi2::Context) {
|
|
|
|
panic!("ADC0 input overrun");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[task(binds = SPI3, priority = 3)]
|
|
|
|
fn spi3(_: spi3::Context) {
|
2021-03-02 02:49:21 +08:00
|
|
|
panic!("ADC1 input overrun");
|
2021-01-20 20:43:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[task(binds = SPI4, priority = 3)]
|
|
|
|
fn spi4(_: spi4::Context) {
|
|
|
|
panic!("DAC0 output error");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[task(binds = SPI5, priority = 3)]
|
|
|
|
fn spi5(_: spi5::Context) {
|
|
|
|
panic!("DAC1 output error");
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
// hw interrupt handlers for RTIC to use for scheduling tasks
|
|
|
|
// one per priority
|
|
|
|
fn DCMI();
|
|
|
|
fn JPEG();
|
|
|
|
fn SDMMC();
|
|
|
|
}
|
|
|
|
};
|