pounder_test/src/bin/lockin.rs

341 lines
11 KiB
Rust
Raw Normal View History

#![deny(warnings)]
#![no_std]
#![no_main]
use embedded_hal::digital::v2::InputPin;
use generic_array::typenum::U4;
2021-03-02 02:48:45 +08:00
use serde::Deserialize;
use dsp::{Accu, Complex, ComplexExt, Lockin, RPLL};
use stabilizer::net;
2021-03-02 02:48:45 +08:00
use stabilizer::hardware::{
2021-03-18 03:16:13 +08:00
design_parameters, setup, Adc0Input, Adc1Input, AfeGain, Dac0Output,
Dac1Output, DigitalInput0, DigitalInput1, InputStamper, SystemTimer, AFE0,
AFE1,
2021-01-20 21:29:29 +08:00
};
2021-03-02 02:48:45 +08:00
2021-03-18 03:16:13 +08:00
use miniconf::Miniconf;
2021-05-05 22:16:54 +08:00
use net::{NetworkUsers, Telemetry, TelemetryBuffer, UpdateState};
2021-03-18 03:16:13 +08:00
2021-05-06 19:02:39 +08:00
// A constant sinusoid to send on the DAC output.
// Full-scale gives a +/- 10.24V amplitude waveform. Scale it down to give +/- 1V.
2021-05-06 20:40:28 +08:00
const ONE: i16 = ((1.0 / 10.24) * i16::MAX as f32) as _;
2021-05-06 19:02:39 +08:00
const SQRT2: i16 = (ONE as f32 * 0.707) as _;
const DAC_SEQUENCE: [i16; design_parameters::SAMPLE_BUFFER_SIZE] =
[ONE, SQRT2, 0, -SQRT2, -ONE, -SQRT2, 0, SQRT2];
2021-03-03 00:29:20 +08:00
#[derive(Copy, Clone, Debug, Deserialize, Miniconf)]
2021-03-02 02:48:45 +08:00
enum Conf {
2021-05-06 20:40:28 +08:00
Magnitude,
Phase,
PllFrequency,
LogPower,
InPhase,
2021-03-02 02:48:45 +08:00
Quadrature,
2021-05-06 20:40:28 +08:00
Modulation,
2021-03-02 02:48:45 +08:00
}
2021-05-06 19:02:39 +08:00
#[derive(Copy, Clone, Debug, Miniconf, Deserialize, PartialEq)]
enum LockinMode {
Internal,
External,
}
2021-03-03 00:29:20 +08:00
#[derive(Copy, Clone, Debug, Deserialize, Miniconf)]
2021-03-02 02:48:45 +08:00
pub struct Settings {
afe: [AfeGain; 2],
2021-05-06 19:02:39 +08:00
lockin_mode: LockinMode,
2021-03-02 02:48:45 +08:00
pll_tc: [u8; 2],
lockin_tc: u8,
lockin_harmonic: i32,
lockin_phase: i32,
2021-03-02 18:46:19 +08:00
output_conf: [Conf; 2],
telemetry_period_secs: u16,
2021-03-02 02:48:45 +08:00
}
impl Default for Settings {
fn default() -> Self {
Self {
2021-03-02 18:46:19 +08:00
afe: [AfeGain::G1; 2],
2021-03-02 02:48:45 +08:00
2021-05-06 19:02:39 +08:00
lockin_mode: LockinMode::External,
2021-03-02 02:48:45 +08:00
pll_tc: [21, 21], // frequency and phase settling time (log2 counter cycles)
lockin_tc: 6, // lockin lowpass time constant
lockin_harmonic: -1, // Harmonic index of the LO: -1 to _de_modulate the fundamental (complex conjugate)
lockin_phase: 0, // Demodulation LO phase offset
2021-05-06 20:40:28 +08:00
output_conf: [Conf::InPhase, Conf::Quadrature],
telemetry_period_secs: 10,
2021-03-02 02:48:45 +08:00
}
}
}
2021-01-20 21:29:29 +08:00
#[rtic::app(device = stm32h7xx_hal::stm32, peripherals = true, monotonic = stabilizer::hardware::SystemTimer)]
const APP: () = {
struct Resources {
afes: (AFE0, AFE1),
adcs: (Adc0Input, Adc1Input),
dacs: (Dac0Output, Dac1Output),
2021-05-05 22:16:54 +08:00
network: NetworkUsers<Settings, Telemetry>,
2021-03-02 02:48:45 +08:00
settings: Settings,
2021-05-05 22:16:54 +08:00
telemetry: TelemetryBuffer,
digital_inputs: (DigitalInput0, DigitalInput1),
2021-01-20 21:29:29 +08:00
timestamper: InputStamper,
2021-01-25 18:45:55 +08:00
pll: RPLL,
2021-02-23 23:46:16 +08:00
lockin: Lockin<U4>,
}
#[init(spawn=[settings_update, telemetry])]
fn init(c: init::Context) -> init::LateResources {
// Configure the microcontroller
2021-03-02 02:48:45 +08:00
let (mut stabilizer, _pounder) = setup(c.core, c.device);
2021-05-05 22:16:54 +08:00
let network = NetworkUsers::new(
stabilizer.net.stack,
stabilizer.net.phy,
stabilizer.cycle_counter,
env!("CARGO_BIN_NAME"),
stabilizer.net.mac_address,
);
2021-03-02 02:48:45 +08:00
let settings = Settings::default();
let pll = RPLL::new(
design_parameters::ADC_SAMPLE_TICKS_LOG2
+ design_parameters::SAMPLE_BUFFER_SIZE_LOG2,
2021-01-21 21:55:33 +08:00
);
2021-01-20 21:29:29 +08:00
// Spawn a settings and telemetry update for default settings.
2021-03-02 02:48:45 +08:00
c.spawn.settings_update().unwrap();
c.spawn.telemetry().unwrap();
2021-03-02 02:48:45 +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-02-03 20:03:17 +08:00
// Enable the timestamper.
stabilizer.timestamper.start();
init::LateResources {
afes: stabilizer.afes,
adcs: stabilizer.adcs,
dacs: stabilizer.dacs,
2021-05-05 21:39:33 +08:00
network,
digital_inputs: stabilizer.digital_inputs,
2021-01-20 21:29:29 +08:00
timestamper: stabilizer.timestamper,
2021-04-29 21:55:36 +08:00
telemetry: net::TelemetryBuffer::default(),
2021-03-02 02:48:45 +08:00
settings,
2021-02-18 00:22:43 +08:00
2021-01-21 21:55:33 +08:00
pll,
2021-02-15 00:55:01 +08:00
lockin: Lockin::default(),
}
}
2021-02-02 22:50:31 +08:00
/// Main DSP processing routine.
///
2021-02-02 22:50:31 +08:00
/// See `dual-iir` for general notes on processing time and timing.
///
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.
#[task(binds=DMA1_STR4, resources=[adcs, dacs, lockin, timestamper, pll, settings, telemetry], priority=2)]
fn process(c: process::Context) {
let adc_samples = [
c.resources.adcs.0.acquire_buffer(),
c.resources.adcs.1.acquire_buffer(),
];
2021-05-06 20:40:28 +08:00
let mut dac_samples = [
c.resources.dacs.0.acquire_buffer(),
c.resources.dacs.1.acquire_buffer(),
];
2021-01-21 21:55:33 +08:00
let lockin = c.resources.lockin;
2021-03-02 02:48:45 +08:00
let settings = c.resources.settings;
2021-05-06 19:02:39 +08:00
let mut pll_frequency = 0;
let (sample_phase, sample_frequency) = match settings.lockin_mode {
LockinMode::External => {
let timestamp =
c.resources.timestamper.latest_timestamp().unwrap_or(None); // Ignore data from timer capture overflows.
let (pll_phase, frequency) = c.resources.pll.update(
timestamp.map(|t| t as i32),
settings.pll_tc[0],
settings.pll_tc[1],
);
pll_frequency = frequency;
let sample_frequency = ((pll_frequency
>> design_parameters::SAMPLE_BUFFER_SIZE_LOG2)
as i32)
.wrapping_mul(settings.lockin_harmonic);
let sample_phase = settings.lockin_phase.wrapping_add(
pll_phase.wrapping_mul(settings.lockin_harmonic),
);
(sample_phase, sample_frequency)
}
2021-05-06 19:02:39 +08:00
LockinMode::Internal => {
// Reference phase and frequency are known.
let pll_phase = 0i32;
let pll_frequency =
1i32 << (32 - design_parameters::SAMPLE_BUFFER_SIZE_LOG2);
// Demodulation LO phase offset
let phase_offset: i32 = 1 << 30;
let sample_frequency = (pll_frequency as i32)
.wrapping_mul(settings.lockin_harmonic);
let sample_phase = phase_offset.wrapping_add(
pll_phase.wrapping_mul(settings.lockin_harmonic),
);
(sample_phase, sample_frequency)
}
};
let output: Complex<i32> = adc_samples[0]
2021-02-01 20:42:21 +08:00
.iter()
// Zip in the LO phase.
2021-02-01 20:42:21 +08:00
.zip(Accu::new(sample_phase, sample_frequency))
// Convert to signed, MSB align the ADC sample, update the Lockin (demodulate, filter)
2021-02-01 20:42:21 +08:00
.map(|(&sample, phase)| {
let s = (sample as i16 as i32) << 16;
2021-03-02 02:48:45 +08:00
lockin.update(s, phase, settings.lockin_tc)
2021-02-01 20:42:21 +08:00
})
// Decimate
2021-02-01 20:42:21 +08:00
.last()
.unwrap()
* 2; // Full scale assuming the 2f component is gone.
2021-02-02 01:14:09 +08:00
// Convert to DAC data.
2021-05-06 20:40:28 +08:00
for (channel, samples) in dac_samples.iter_mut().enumerate() {
for (i, sample) in samples.iter_mut().enumerate() {
let value = match settings.output_conf[channel] {
Conf::Magnitude => output.abs_sqr() as i32 >> 16,
Conf::Phase => output.arg() >> 16,
Conf::LogPower => (output.log2() << 24) as i32 >> 16,
Conf::PllFrequency => pll_frequency as i32 >> 16,
Conf::InPhase => output.re >> 16,
Conf::Quadrature => output.im >> 16,
Conf::Modulation => DAC_SEQUENCE[i] as i32,
};
*sample = value as u16 ^ 0x8000;
2021-05-06 19:02:39 +08:00
}
}
// Update telemetry measurements.
c.resources.telemetry.latest_samples =
[adc_samples[0][0] as i16, adc_samples[1][0] as i16];
c.resources.telemetry.latest_outputs =
[dac_samples[0][0], dac_samples[1][0]];
}
2021-05-05 21:39:33 +08:00
#[idle(resources=[network], spawn=[settings_update])]
2021-03-02 02:48:45 +08:00
fn idle(mut c: idle::Context) -> ! {
loop {
match c.resources.network.lock(|net| net.update()) {
UpdateState::Updated => c.spawn.settings_update().unwrap(),
UpdateState::NoChange => cortex_m::asm::wfi(),
2021-03-02 02:48:45 +08:00
}
}
}
2021-05-05 21:39:33 +08:00
#[task(priority = 1, resources=[network, settings, afes])]
2021-03-02 02:48:45 +08:00
fn settings_update(mut c: settings_update::Context) {
2021-05-05 21:39:33 +08:00
let settings = c.resources.network.miniconf.settings();
2021-03-02 02:48:45 +08:00
c.resources.afes.0.set_gain(settings.afe[0]);
c.resources.afes.1.set_gain(settings.afe[1]);
2021-05-04 19:13:44 +08:00
c.resources.settings.lock(|current| *current = *settings);
2021-03-02 02:48:45 +08:00
}
2021-05-05 21:39:33 +08:00
#[task(priority = 1, resources=[network, digital_inputs, settings, telemetry], schedule=[telemetry])]
fn telemetry(mut c: telemetry::Context) {
let mut telemetry =
c.resources.telemetry.lock(|telemetry| telemetry.clone());
telemetry.digital_inputs = [
c.resources.digital_inputs.0.is_high().unwrap(),
c.resources.digital_inputs.1.is_high().unwrap(),
];
2021-05-05 22:16:54 +08:00
let gains = c.resources.settings.lock(|settings| settings.afe.clone());
2021-05-05 21:39:33 +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]));
let telemetry_period = c
.resources
.settings
.lock(|settings| settings.telemetry_period_secs);
// Schedule the telemetry task in the future.
c.schedule
.telemetry(
c.scheduled
+ SystemTimer::ticks_from_secs(telemetry_period as u32),
)
.unwrap();
}
#[task(binds = ETH, priority = 1)]
fn eth(_: eth::Context) {
2021-02-23 23:46:16 +08:00
unsafe { stm32h7xx_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!("ADC1 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();
}
};