Compare commits

..

5 Commits

Author SHA1 Message Date
a9e8819b3e
readme: the Windows situation has been altered
Pray I do not alter it further.
2024-07-15 16:58:33 -07:00
42e15a813a
build: disable libusb logging by default
It is quite verbose and not very useful.
2024-07-15 16:58:33 -07:00
01b66150a3
main: hook up calibration stubs
I guess I will be finishing this later.
2024-07-15 16:58:33 -07:00
5ad5be9c4d
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 16:58:33 -07:00
d0d03b5088
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 16:58:33 -07:00

View File

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