2021-01-20 21:19:28 +08:00
|
|
|
#![deny(warnings)]
|
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![cfg_attr(feature = "nightly", feature(core_intrinsics))]
|
|
|
|
|
|
|
|
use stm32h7xx_hal as hal;
|
|
|
|
|
|
|
|
use rtic::cyccnt::{Instant, U32Ext};
|
|
|
|
|
2021-01-30 22:00:58 +08:00
|
|
|
use stabilizer::{hardware, ADC_SAMPLE_TICKS_LOG2, SAMPLE_BUFFER_SIZE_LOG2};
|
2021-01-21 21:55:33 +08:00
|
|
|
|
2021-01-31 01:57:06 +08:00
|
|
|
use miniconf::{
|
|
|
|
embedded_nal::{IpAddr, Ipv4Addr},
|
|
|
|
MqttInterface, StringSet,
|
|
|
|
};
|
|
|
|
use serde::Deserialize;
|
|
|
|
|
2021-02-01 20:42:21 +08:00
|
|
|
use dsp::{iir, iir_int, lockin::Lockin, rpll::RPLL, Accu};
|
2021-01-20 21:29:29 +08:00
|
|
|
use hardware::{
|
|
|
|
Adc0Input, Adc1Input, Dac0Output, Dac1Output, InputStamper, AFE0, AFE1,
|
|
|
|
};
|
|
|
|
|
2021-02-02 00:18:10 +08:00
|
|
|
const SCALE: f32 = i16::MAX as _;
|
2021-01-20 21:19:28 +08:00
|
|
|
|
|
|
|
// The number of cascaded IIR biquads per channel. Select 1 or 2!
|
|
|
|
const IIR_CASCADE_LENGTH: usize = 1;
|
|
|
|
|
2021-01-31 01:57:06 +08:00
|
|
|
#[derive(Debug, Deserialize, StringSet)]
|
|
|
|
pub struct Settings {
|
|
|
|
iir: [[iir::IIR; IIR_CASCADE_LENGTH]; 2],
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Settings {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self {
|
|
|
|
iir: [[iir::IIR::default(); IIR_CASCADE_LENGTH]; 2],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-20 21:19:28 +08:00
|
|
|
#[rtic::app(device = stm32h7xx_hal::stm32, peripherals = true, monotonic = rtic::cyccnt::CYCCNT)]
|
|
|
|
const APP: () = {
|
|
|
|
struct Resources {
|
|
|
|
afes: (AFE0, AFE1),
|
|
|
|
adcs: (Adc0Input, Adc1Input),
|
|
|
|
dacs: (Dac0Output, Dac1Output),
|
2021-01-31 01:57:06 +08:00
|
|
|
mqtt_interface: MqttInterface<Settings, hardware::NetworkStack>,
|
2021-01-20 21:19:28 +08:00
|
|
|
|
|
|
|
// Format: iir_state[ch][cascade-no][coeff]
|
2021-02-01 19:22:50 +08:00
|
|
|
#[init([[iir::Vec5([0.; 5]); IIR_CASCADE_LENGTH]; 2])]
|
|
|
|
iir_state: [[iir::Vec5; IIR_CASCADE_LENGTH]; 2],
|
2021-02-02 00:18:10 +08:00
|
|
|
#[init([[iir::IIR::new(1./(1 << 16) as f32, -SCALE, SCALE); IIR_CASCADE_LENGTH]; 2])]
|
2021-01-20 21:19:28 +08:00
|
|
|
iir_ch: [[iir::IIR; IIR_CASCADE_LENGTH]; 2],
|
2021-01-20 21:29:29 +08:00
|
|
|
|
|
|
|
timestamper: InputStamper,
|
2021-01-25 18:45:55 +08:00
|
|
|
pll: RPLL,
|
2021-01-21 21:55:33 +08:00
|
|
|
lockin: Lockin,
|
2021-01-20 21:19:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[init]
|
|
|
|
fn init(c: init::Context) -> init::LateResources {
|
|
|
|
// Configure the microcontroller
|
|
|
|
let (mut stabilizer, _pounder) = hardware::setup(c.core, c.device);
|
|
|
|
|
2021-01-31 01:57:06 +08:00
|
|
|
let broker = IpAddr::V4(Ipv4Addr::new(10, 0, 0, 2));
|
|
|
|
let mqtt_interface = MqttInterface::new(
|
|
|
|
stabilizer.net.stack,
|
|
|
|
"stabilizer/lockin",
|
|
|
|
broker,
|
|
|
|
Settings::new(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
2021-01-31 20:42:15 +08:00
|
|
|
let pll = RPLL::new(ADC_SAMPLE_TICKS_LOG2 + SAMPLE_BUFFER_SIZE_LOG2);
|
2021-01-21 21:55:33 +08:00
|
|
|
|
|
|
|
let lockin = Lockin::new(
|
2021-02-01 19:22:50 +08:00
|
|
|
iir_int::Vec5::lowpass(1e-3, 0.707, 2.), // TODO: expose
|
2021-01-21 21:55:33 +08:00
|
|
|
);
|
2021-01-20 21:29:29 +08:00
|
|
|
|
2021-01-20 21:19:28 +08:00
|
|
|
// Enable ADC/DAC events
|
|
|
|
stabilizer.adcs.0.start();
|
|
|
|
stabilizer.adcs.1.start();
|
|
|
|
stabilizer.dacs.0.start();
|
|
|
|
stabilizer.dacs.1.start();
|
|
|
|
|
2021-01-21 21:55:33 +08:00
|
|
|
// Start recording digital input timestamps.
|
|
|
|
stabilizer.timestamp_timer.start();
|
|
|
|
|
2021-01-21 23:12:59 +08:00
|
|
|
// Start sampling ADCs.
|
|
|
|
stabilizer.adc_dac_timer.start();
|
|
|
|
|
2021-01-20 21:19:28 +08:00
|
|
|
init::LateResources {
|
2021-01-31 01:57:06 +08:00
|
|
|
mqtt_interface,
|
2021-01-20 21:19:28 +08:00
|
|
|
afes: stabilizer.afes,
|
|
|
|
adcs: stabilizer.adcs,
|
|
|
|
dacs: stabilizer.dacs,
|
2021-01-20 21:29:29 +08:00
|
|
|
timestamper: stabilizer.timestamper,
|
|
|
|
|
2021-01-21 21:55:33 +08:00
|
|
|
pll,
|
|
|
|
lockin,
|
2021-01-20 21:19:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-02 22:50:31 +08:00
|
|
|
/// Main DSP processing routine.
|
2021-01-20 21:19:28 +08:00
|
|
|
///
|
2021-02-02 22:50:31 +08:00
|
|
|
/// See `dual-iir` for general notes on processing time and timing.
|
2021-01-20 21:19:28 +08:00
|
|
|
///
|
2021-02-02 22:50:31 +08:00
|
|
|
/// This is an implementation of a externally (DI0) referenced PLL lockin on the ADC0 signal.
|
|
|
|
/// It outputs either I/Q or power/phase on DAC0/DAC1. Data is normalized to full scale.
|
|
|
|
/// PLL bandwidth, filter bandwidth, slope, and x/y or power/phase post-filters are available.
|
2021-01-21 21:55:33 +08:00
|
|
|
#[task(binds=DMA1_STR4, resources=[adcs, dacs, iir_state, iir_ch, lockin, timestamper, pll], priority=2)]
|
2021-01-20 21:19:28 +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(),
|
|
|
|
];
|
|
|
|
|
|
|
|
let iir_ch = c.resources.iir_ch;
|
|
|
|
let iir_state = c.resources.iir_state;
|
2021-01-21 21:55:33 +08:00
|
|
|
let lockin = c.resources.lockin;
|
2021-01-20 21:19:28 +08:00
|
|
|
|
2021-02-02 21:34:48 +08:00
|
|
|
let timestamp = c
|
2021-02-02 19:34:07 +08:00
|
|
|
.resources
|
|
|
|
.timestamper
|
|
|
|
.latest_timestamp()
|
|
|
|
.unwrap_or_else(|t| t) // Ignore timer capture overflows.
|
|
|
|
.map(|t| t as i32);
|
2021-01-25 18:45:55 +08:00
|
|
|
let (pll_phase, pll_frequency) = c.resources.pll.update(
|
2021-02-02 21:34:48 +08:00
|
|
|
timestamp,
|
2021-02-02 01:14:09 +08:00
|
|
|
22, // frequency settling time (log2 counter cycles), TODO: expose
|
|
|
|
22, // phase settling time, TODO: expose
|
2021-01-25 18:45:55 +08:00
|
|
|
);
|
2021-01-20 21:19:28 +08:00
|
|
|
|
2021-01-31 01:05:54 +08:00
|
|
|
// Harmonic index of the LO: -1 to _de_modulate the fundamental (complex conjugate)
|
2021-02-02 01:14:09 +08:00
|
|
|
let harmonic: i32 = -1; // TODO: expose
|
|
|
|
// Demodulation LO phase offset
|
|
|
|
let phase_offset: i32 = 0; // TODO: expose
|
|
|
|
|
|
|
|
let sample_frequency = ((pll_frequency
|
|
|
|
// .wrapping_add(1 << SAMPLE_BUFFER_SIZE_LOG2 - 1) // half-up rounding bias
|
|
|
|
>> SAMPLE_BUFFER_SIZE_LOG2) as i32)
|
2021-02-01 00:10:03 +08:00
|
|
|
.wrapping_mul(harmonic);
|
2021-01-31 01:05:54 +08:00
|
|
|
let sample_phase =
|
2021-01-26 21:40:44 +08:00
|
|
|
phase_offset.wrapping_add(pll_phase.wrapping_mul(harmonic));
|
2021-01-20 21:19:28 +08:00
|
|
|
|
2021-02-02 01:14:09 +08:00
|
|
|
let output = adc_samples[0]
|
2021-02-01 20:42:21 +08:00
|
|
|
.iter()
|
|
|
|
.zip(Accu::new(sample_phase, sample_frequency))
|
2021-01-21 21:55:33 +08:00
|
|
|
// Convert to signed, MSB align the ADC sample.
|
2021-02-01 20:42:21 +08:00
|
|
|
.map(|(&sample, phase)| {
|
|
|
|
lockin.update((sample as i16 as i32) << 16, phase)
|
|
|
|
})
|
|
|
|
.last()
|
2021-02-02 01:14:09 +08:00
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
// convert i/q to power/phase,
|
|
|
|
let power_phase = true; // TODO: expose
|
2021-01-21 21:55:33 +08:00
|
|
|
|
2021-02-02 01:14:09 +08:00
|
|
|
let mut output = if power_phase {
|
2021-01-21 21:55:33 +08:00
|
|
|
// Convert from IQ to power and phase.
|
2021-02-02 01:14:09 +08:00
|
|
|
[output.abs_sqr() as _, output.arg() as _]
|
|
|
|
} else {
|
|
|
|
[output.0 as _, output.1 as _]
|
|
|
|
};
|
|
|
|
|
|
|
|
// Filter power and phase through IIR filters.
|
|
|
|
// Note: Normalization to be done in filters. Phase will wrap happily.
|
|
|
|
for j in 0..iir_state[0].len() {
|
|
|
|
for k in 0..output.len() {
|
|
|
|
output[k] =
|
|
|
|
iir_ch[k][j].update(&mut iir_state[k][j], output[k]);
|
2021-01-20 21:19:28 +08:00
|
|
|
}
|
2021-02-02 01:14:09 +08:00
|
|
|
}
|
2021-01-20 21:19:28 +08:00
|
|
|
|
2021-02-02 01:14:09 +08:00
|
|
|
// Note(unsafe): range clipping to i16 is ensured by IIR filters above.
|
|
|
|
// Convert to DAC data.
|
|
|
|
for i in 0..dac_samples[0].len() {
|
2021-01-20 21:19:28 +08:00
|
|
|
unsafe {
|
|
|
|
dac_samples[0][i] =
|
2021-02-02 01:14:09 +08:00
|
|
|
output[0].to_int_unchecked::<i16>() as u16 ^ 0x8000;
|
2021-01-20 21:19:28 +08:00
|
|
|
dac_samples[1][i] =
|
2021-02-02 01:14:09 +08:00
|
|
|
output[1].to_int_unchecked::<i16>() as u16 ^ 0x8000;
|
2021-01-20 21:19:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-31 01:57:06 +08:00
|
|
|
#[idle(resources=[mqtt_interface], spawn=[settings_update])]
|
|
|
|
fn idle(mut c: idle::Context) -> ! {
|
2021-01-20 21:19:28 +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;
|
|
|
|
}
|
|
|
|
|
2021-01-31 01:57:06 +08:00
|
|
|
let sleep = c
|
|
|
|
.resources
|
|
|
|
.mqtt_interface
|
|
|
|
.lock(|interface| !interface.network_stack().poll(time));
|
|
|
|
|
|
|
|
match c
|
|
|
|
.resources
|
|
|
|
.mqtt_interface
|
|
|
|
.lock(|interface| interface.update().unwrap())
|
|
|
|
{
|
|
|
|
miniconf::Action::Continue => {
|
|
|
|
if sleep {
|
|
|
|
cortex_m::asm::wfi();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
miniconf::Action::CommitSettings => {
|
|
|
|
c.spawn.settings_update().unwrap()
|
|
|
|
}
|
2021-01-20 21:19:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-31 01:57:06 +08:00
|
|
|
#[task(priority = 1, resources=[mqtt_interface, afes, iir_ch])]
|
|
|
|
fn settings_update(mut c: settings_update::Context) {
|
|
|
|
let settings = &c.resources.mqtt_interface.settings;
|
|
|
|
c.resources.iir_ch.lock(|iir| *iir = settings.iir);
|
|
|
|
// TODO: Update AFEs
|
|
|
|
}
|
|
|
|
|
2021-01-20 21:19:28 +08:00
|
|
|
#[task(binds = ETH, priority = 1)]
|
|
|
|
fn eth(_: eth::Context) {
|
|
|
|
unsafe { hal::ethernet::interrupt_handler() }
|
|
|
|
}
|
|
|
|
|
|
|
|
#[task(binds = SPI2, priority = 3)]
|
|
|
|
fn spi2(_: spi2::Context) {
|
|
|
|
panic!("ADC0 input overrun");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[task(binds = SPI3, priority = 3)]
|
|
|
|
fn spi3(_: spi3::Context) {
|
|
|
|
panic!("ADC0 input overrun");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[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();
|
|
|
|
}
|
|
|
|
};
|