Go to file
Robert Jördens f0c50d9678 Merge branch 'master' into rj/itcm
* master: (70 commits)
  Updating JSON syntax
  Updating trigger
  Adding bors timeout
  dual-iir: add some mqtt parameter docs
  changelog: spelling
  update lock
  let bors handle hitl
  prepare v0.5.0 release
  Updating code after review
  Adding comment, reverting change
  Adding sleep to HITL run
  Updating ping deadline
  Reverting unintended change
  Updating dependency revision
  Renaming interface to avoid confusion
  dual-iir: use InputPin re-export, rename digital_input
  Updating dependency
  dual-iir: add enable_hold, force_hold
  fix bench
  hardware: add digital input support
  ...
2021-04-29 17:28:58 +02:00
.cargo load process into itcm 2021-03-29 17:34:17 +02:00
.github Updating JSON syntax 2021-04-29 14:15:16 +02:00
ad9959 Update ad9959/src/lib.rs 2021-04-08 16:05:51 +02:00
doc cargo: tweak 2019-03-29 19:34:31 +01:00
dsp fix bench 2021-04-14 16:02:54 +02:00
hitl Updating code after review 2021-04-20 13:37:49 +02:00
src Merge branch 'master' into rj/itcm 2021-04-29 17:28:58 +02:00
.gitignore Update .gitignore 2021-02-02 18:03:46 +01:00
.rustfmt.toml travis: clippy and rustfmt 2019-11-24 15:10:01 +01:00
CHANGELOG.md changelog: spelling 2021-04-21 16:40:30 +02:00
Cargo.lock Merge branch 'master' into rj/itcm 2021-04-29 17:28:58 +02:00
Cargo.toml Merge branch 'master' into rj/itcm 2021-04-29 17:28:58 +02:00
Embed.toml Adding Embed.toml file 2021-02-02 17:34:49 +01:00
LICENSE readme, license 2019-03-20 18:33:35 +00:00
README.md Updating badge to utilize nightly workflow 2021-04-13 13:58:56 +02:00
build.rs load process into itcm 2021-03-29 17:34:17 +02:00
cargosha256-dual-iir.nix update cargosha256 2021-03-31 15:22:24 +08:00
memory.x memory.x: remove comment about old cortex-m-rt 2021-04-29 16:45:30 +02:00
miniconf.py cli,hitl: allow more settings per invokation, expand example 2021-04-08 17:11:44 +02:00
openocd.gdb Removing invalid GDB command 2021-01-29 10:18:47 +01:00
requirements.txt Adding requirements file 2021-04-07 14:04:11 +02:00
stabilizer.cfg working 2019-03-18 13:10:00 +00:00
stabilizer_pid.png png 2019-05-09 16:40:35 +02:00
stabilizer_pid.svg README: diagram and photo 2019-05-09 16:05:36 +02:00

README.md

QUARTIQ Matrix Chat Continuous Integration Stabilizer HITL [Nightly]

Stabilizer Firmware

Hardware

Hardware

Applications

The Stabilizer firmware offeres a library of hardware and software functionality exposing input/output, timing, and digital signal processing features. An application can compose and configure these hardware and software components to implement different use cases. Several applications are provides by default

Dual-IIR

Flow diagram

  • dual channel
  • SPI ADC
  • SPI DAC
  • up to 800 kHz rate, timed sampling
  • down to 2 µs latency
  • f32 IIR math
  • generic biquad (second order) IIR filter
  • anti-windup
  • derivative kick avoidance

Lockin external

Lockin internal

Minimal bootstrapping documentation

  • Clone or download this
  • Get rustup
  • rustup target add thumbv7em-none-eabihf
  • cargo build --release
  • When using debug (non --release) mode, increase the sample interval significantly. The added error checking code and missing optimizations may lead to the code missing deadlines and panicing.

Using Cargo-embed

  • Install cargo-embed: cargo install cargo-embed
  • Program the device: cargo embed --bin dual-iir --release

Using GDB/OpenOCD

  • Get a recent openocd, a JTAG adapter ("st-link" or some clone) and everything connected and permissions setup. Most Nucleo boards have a detachable ST-Link v2 and are cheap.[^swd]
  • Get a multiarch gdb (or a cross arm gdb and edit .cargo/config accordingly)
  • openocd -f stabilizer.cfg and leave it running
  • cargo run --release

Using USB-DFU

  • Install the DFU USB tool (dfu-util)
  • Connect to the Micro USB connector below the RJ45
  • Short JC2/BOOT
  • Get cargo-binutils
  • cargo objcopy --release --bin dual-iir -- -O binary dual-iir.bin or arm-none-eabi-objcopy -O binary target/thumbv7em-none-eabihf/release/dual-iir dual-iir.bin
  • dfu-util -a 0 -s 0x08000000:leave -D dual-iir.bin
  • Get cargo-binutils
  • cargo objcopy --release --bin dual-iir -- -O binary dual-iir.bin or arm-none-eabi-objcopy -O binary target/thumbv7em-none-eabihf/release/dual-iir dual-iir.bin
  • Connect the ST-Link debugger
  • copy dual-iir.bin to the NODE_H743ZI USB disk

Protocol

Stabilizer can be configured via MQTT. Refer to miniconf for more information about topics. A basic command line interface is available in miniconf.py.