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-02-01 20:42:21 +08:00
|
|
|
use dsp::{iir_int, lockin::Lockin, Accu};
|
2021-01-26 19:21:44 +08:00
|
|
|
use hardware::{Adc1Input, Dac0Output, Dac1Output, AFE0, AFE1};
|
2021-02-01 22:59:11 +08:00
|
|
|
use stabilizer::{hardware, SAMPLE_BUFFER_SIZE, SAMPLE_BUFFER_SIZE_LOG2};
|
|
|
|
|
|
|
|
// A constant sinusoid to send on the DAC output.
|
|
|
|
// Full-scale gives a +/- 10V amplitude waveform. Scale it down to give +/- 1V.
|
|
|
|
const ONE: i16 = (0.1 * u16::MAX as f32) as _;
|
|
|
|
const SQRT2: i16 = (ONE as f32 * 0.707) as _;
|
|
|
|
const DAC_SEQUENCE: [i16; SAMPLE_BUFFER_SIZE] =
|
|
|
|
[0, SQRT2, ONE, SQRT2, 0, -SQRT2, -ONE, -SQRT2]; // TODO: rotate by -2 samples to start with ONE
|
2021-01-29 18:01:21 +08:00
|
|
|
|
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),
|
2021-01-19 01:02:00 +08:00
|
|
|
adc1: Adc1Input,
|
2020-11-26 18:16:08 +08:00
|
|
|
dacs: (Dac0Output, Dac1Output),
|
2020-06-09 00:20:10 +08:00
|
|
|
|
2021-01-26 19:21:44 +08:00
|
|
|
lockin: Lockin,
|
2019-08-26 21:47:42 +08:00
|
|
|
}
|
2019-05-31 00:03:48 +08:00
|
|
|
|
2020-04-22 19:36:51 +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-26 19:21:44 +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-26 19:21:44 +08:00
|
|
|
);
|
|
|
|
|
2021-01-18 23:47:47 +08:00
|
|
|
// Enable ADC/DAC events
|
|
|
|
stabilizer.adcs.1.start();
|
|
|
|
stabilizer.dacs.0.start();
|
|
|
|
stabilizer.dacs.1.start();
|
2021-01-06 20:29:19 +08:00
|
|
|
|
2020-11-12 01:42:34 +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-26 19:21:44 +08:00
|
|
|
lockin,
|
2021-01-18 23:47:47 +08:00
|
|
|
afes: stabilizer.afes,
|
2021-01-19 01:02:00 +08:00
|
|
|
adc1: stabilizer.adcs.1,
|
2021-01-18 23:47:47 +08:00
|
|
|
dacs: stabilizer.dacs,
|
2019-05-31 04:57:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-06 22:38:04 +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-26 19:21:44 +08:00
|
|
|
///
|
|
|
|
/// TODO: Document
|
2021-01-30 01:55:54 +08:00
|
|
|
#[task(binds=DMA1_STR4, resources=[adc1, dacs, lockin], priority=2)]
|
|
|
|
fn process(c: process::Context) {
|
2021-02-01 20:42:21 +08:00
|
|
|
let lockin = c.resources.lockin;
|
2021-01-26 19:21:44 +08:00
|
|
|
let adc_samples = c.resources.adc1.acquire_buffer();
|
2020-11-26 18:29:16 +08:00
|
|
|
let dac_samples = [
|
2020-11-26 20:51:39 +08:00
|
|
|
c.resources.dacs.0.acquire_buffer(),
|
|
|
|
c.resources.dacs.1.acquire_buffer(),
|
2020-11-26 18:29:16 +08:00
|
|
|
];
|
|
|
|
|
2021-01-19 00:20:33 +08:00
|
|
|
// DAC0 always generates a fixed sinusoidal output.
|
2021-02-01 22:59:11 +08:00
|
|
|
dac_samples[0]
|
|
|
|
.iter_mut()
|
|
|
|
.zip(DAC_SEQUENCE.iter())
|
|
|
|
.for_each(|(d, s)| *d = *s as u16 ^ 0x8000);
|
2021-01-19 00:20:33 +08:00
|
|
|
|
2021-02-01 22:59:11 +08:00
|
|
|
// Reference phase and frequency are known.
|
2021-01-30 01:55:54 +08:00
|
|
|
let pll_phase = 0;
|
2021-02-01 22:59:11 +08:00
|
|
|
let pll_frequency = 1i32 << (32 - SAMPLE_BUFFER_SIZE_LOG2);
|
2021-01-26 19:21:44 +08:00
|
|
|
|
|
|
|
// Harmonic index of the LO: -1 to _de_modulate the fundamental
|
|
|
|
let harmonic: i32 = -1;
|
2021-01-19 01:02:00 +08:00
|
|
|
|
2021-01-26 19:21:44 +08:00
|
|
|
// Demodulation LO phase offset
|
2021-02-01 22:59:11 +08:00
|
|
|
let phase_offset: i32 = (0.7495 * i32::MAX as f32) as i32; // TODO: adapt to sequence rotation above
|
2021-01-26 19:21:44 +08:00
|
|
|
let sample_frequency = (pll_frequency as i32).wrapping_mul(harmonic);
|
2021-02-01 02:26:07 +08:00
|
|
|
let sample_phase = phase_offset
|
2021-01-26 19:21:44 +08:00
|
|
|
.wrapping_add((pll_phase as i32).wrapping_mul(harmonic));
|
2021-01-19 01:02:00 +08:00
|
|
|
|
2021-02-01 20:42:21 +08:00
|
|
|
if let Some(output) = adc_samples
|
|
|
|
.iter()
|
2021-02-01 22:59:11 +08:00
|
|
|
// Zip in the LO phase.
|
2021-02-01 20:42:21 +08:00
|
|
|
.zip(Accu::new(sample_phase, sample_frequency))
|
2021-02-01 22:59:11 +08:00
|
|
|
// Convert to signed, MSB align the ADC sample, update the Lockin (demodulate, filter)
|
2021-02-01 20:42:21 +08:00
|
|
|
.map(|(&sample, phase)| {
|
|
|
|
lockin.update((sample as i16 as i32) << 16, phase)
|
|
|
|
})
|
2021-02-01 22:59:11 +08:00
|
|
|
// Decimate
|
2021-02-01 20:42:21 +08:00
|
|
|
.last()
|
|
|
|
{
|
2021-02-01 02:26:07 +08:00
|
|
|
// Convert from IQ to power and phase.
|
|
|
|
let _power = output.abs_sqr();
|
|
|
|
let phase = output.arg() >> 16;
|
|
|
|
|
|
|
|
for value in dac_samples[1].iter_mut() {
|
|
|
|
*value = phase as u16 ^ 0x8000;
|
|
|
|
}
|
2020-11-17 21:23:56 +08:00
|
|
|
}
|
2020-04-22 21:50:07 +08:00
|
|
|
}
|
|
|
|
|
2021-01-30 01:55:54 +08:00
|
|
|
#[idle(resources=[afes])]
|
2021-01-29 17:11:56 +08:00
|
|
|
fn idle(_: idle::Context) -> ! {
|
2020-04-22 21:50:07 +08:00
|
|
|
loop {
|
2021-01-29 17:11:56 +08:00
|
|
|
// TODO: Implement network interface.
|
|
|
|
cortex_m::asm::wfi();
|
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-29 17:11:56 +08:00
|
|
|
unsafe { stm32h7xx_hal::ethernet::interrupt_handler() }
|
2019-05-31 00:03:48 +08:00
|
|
|
}
|
|
|
|
|
2020-11-25 23:43:49 +08:00
|
|
|
#[task(binds = SPI2, priority = 3)]
|
2020-11-03 16:36:03 +08:00
|
|
|
fn spi2(_: spi2::Context) {
|
|
|
|
panic!("ADC0 input overrun");
|
|
|
|
}
|
|
|
|
|
2020-11-25 23:43:49 +08:00
|
|
|
#[task(binds = SPI3, priority = 3)]
|
2020-11-03 16:36:03 +08:00
|
|
|
fn spi3(_: spi3::Context) {
|
2021-01-19 01:02:00 +08:00
|
|
|
panic!("ADC1 input overrun");
|
2020-11-03 16:36:03 +08:00
|
|
|
}
|
|
|
|
|
2020-11-25 23:43:49 +08:00
|
|
|
#[task(binds = SPI4, priority = 3)]
|
2020-11-11 19:09:27 +08:00
|
|
|
fn spi4(_: spi4::Context) {
|
|
|
|
panic!("DAC0 output error");
|
|
|
|
}
|
|
|
|
|
2020-11-25 23:43:49 +08:00
|
|
|
#[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();
|
|
|
|
}
|
|
|
|
};
|