working position tracking on raspberry pi

master
Sebastien Bourdeauducq 2019-08-26 16:05:40 +08:00
parent da1c2a94c9
commit aad24960ec
3 changed files with 61 additions and 3 deletions

View File

@ -1,9 +1,10 @@
{
"sample_command": "sudo sigrok-cli -O binary -d fx2lafw --config samplerate=8000000 --continuous",
"sample_rate": 8e6,
"sample_command": "sudo sigrok-cli -O binary -d fx2lafw --config samplerate=6000000 --continuous",
"sample_rate": 6e6,
"freq_min": 1.9e6,
"freq_max": 2.1e6,
"bit_ref": 0,
"bit_meas": 1,
"refpll_ki": 4294967,
"refpll_kl": 85899345

View File

@ -18,6 +18,7 @@ struct Config {
freq_min: f64,
freq_max: f64,
bit_ref: u8,
bit_meas: u8,
refpll_ki: i64,
refpll_kl: i64
}
@ -36,8 +37,15 @@ fn main() {
noptica::Dpll::frequency_to_ftw(config.freq_max, config.sample_rate),
config.refpll_ki,
config.refpll_kl);
let mut tracker = noptica::Tracker::new();
let mut decimator = noptica::Decimator::new(200000);
noptica::sample(&config.sample_command, |rising, _falling| {
refpll.tick(rising & (1 << config.bit_ref) != 0);
// println!("{}", refpll.get_phase_unwrapped());
if rising & (1 << config.bit_meas) != 0 {
let position = tracker.edge(refpll.get_phase_unwrapped());
if let Some(position_avg) = decimator.input(position) {
println!("{}", position_avg);
}
}
})
}

View File

@ -52,6 +52,55 @@ impl Dpll {
}
}
pub struct Tracker {
last_phase: i64,
current_position: i64
}
impl Tracker {
pub fn new() -> Tracker {
Tracker {
last_phase: 0,
current_position: 0
}
}
pub fn edge(&mut self, phase: i64) -> i64 {
let phase_diff = phase.wrapping_sub(self.last_phase);
self.last_phase = phase;
self.current_position += 0x100000000 - phase_diff;
self.current_position
}
}
pub struct Decimator {
accumulator: i64,
current_count: u32,
max_count: u32
}
impl Decimator {
pub fn new(max_count: u32) -> Decimator {
Decimator {
accumulator: 0,
current_count: 0,
max_count: max_count
}
}
pub fn input(&mut self, data: i64) -> Option<i64> {
self.accumulator += data;
self.current_count += 1;
if self.current_count == self.max_count {
let average = self.accumulator/(self.current_count as i64);
self.accumulator = 0;
self.current_count = 0;
Some(average)
} else {
None
}
}
}
pub fn sample(command: &str, mut callback: impl FnMut(u8, u8)) {
let child = std::process::Command::new("sh")