Compare commits

..

5 Commits

Author SHA1 Message Date
153dde40aa
readme: the Windows situation has been altered
Pray I do not alter it further.
2024-07-15 17:55:31 -07:00
4777d04594
build: disable libusb logging by default
It is quite verbose and not very useful.
2024-07-15 17:55:31 -07:00
eb7ad4ef9e
main: hook up calibration stubs
I guess I will be finishing this later.
2024-07-15 17:55:31 -07:00
2194dd4a8c
config: make it possible not to leak
Using the GPA is a bit annoying sometimes. The other option would be to
just use page allocator to allocate the config and bypass the GPA.
2024-07-15 17:55:31 -07:00
de76cce706
controller: make controller info printout more useful
This has a lot more relevant information now. Anyway, this has been
tested on real hardware, and it appears to work pretty well. I am
considering changing the control loop so that it isn't always
operating on stale feedback (two LabJack calls per loop when actively
controlling pointing). Also the calibration routines need to be
implemented.
2024-07-15 17:55:31 -07:00

View File

@ -1,4 +1,5 @@
const std = @import("std");
const builtin = @import("builtin");
const Config = @import("./Config.zig");
const lj = @import("./labjack.zig");