Brad Campbell
Brad Campbell
Is there any plan to support the `Uint` non-alloc type?
Is it reasonable to say the implementation is fairly close, and that the remaining items would only result in minor fixes?
> `cargo build`...locks the build directory before it starts building the first crate, and does not unlock it until it is finished with the last crate Which directory? `/target` or...
Well is it possible that cargo could build two elfs at once but for different target triples?
Looks finished? ``` $ cd git/libtock-rs $ git grep driver_number | cat unittest/src/fake/syscalls/allow_ro_impl_tests.rs:fn too_large_driver_number() { unittest/src/fake/syscalls/allow_rw_impl_tests.rs:fn too_large_driver_number() { ``` ``` $ git grep DRIVER_NUMBER | wc -l 0 ```
Note: I don't know where to put crc. In the kernel syscalls its under "Cryptography", but that seems not right.
I've gone through and updated temperature and button to match the guide I wrote.
Couple things: 1. Should we namespace libtock functions with `libtock_`? 2. Should we put all header files in `#include `? If so, how? 3. We probably need to specify the...
What about putting all header files in `libtock/include/libtock/[category]/`? Then our apps would do `#include `. This is what zephyr does: https://github.com/zephyrproject-rtos/zephyr/tree/main/include/zephyr
> This could be handled with a struct for each driver that encapsulates its instantiated syscall number. Or it could be handled in the build system possibly, allowing us to...