helios-dac 0.2.0

library to interact with the [Helios Laser DAC](https://bitlasers.com/helios-laser-dac/)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
USER = 1000

build: base-image
	docker run --rm -v $(PWD):/src -u $(USER) helios-build cargo build --examples

doc: base-image
	docker run --rm -v $(PWD):/src -u $(USER) helios-build cargo doc

base-image: Dockerfile
	docker build . -t helios-build

examples: list-devices

list-devices:
	docker run --rm -v $(PWD):/src -u $(USER) --privileged helios-build cargo run --example list_devices