Tudor Andrei Dicu
Tudor Andrei Dicu
Interrupts can be checked 😄 Image format support as well
We could even take *anyopaque and *const anyopaque. The pointer casting to anyopaque is implicit afaik. This way we only allow pointers (which will probably be the most common passed...
After #415, the esp image format has been implemented, though only esp32-c3 is curently supported. Adding support for the others esp32xx afaik is very easy and we should set only...
Microzig uses snake case for normal function names and TitleCase for functions which return a type.
> Would be nice to have (even brief) documentation. _design.md_ has a long-living TODO in there, maybe you can jot a few lines? Certainly. Also let's wait a bit on...
> Would be nice to have (even brief) documentation. _design.md_ has a long-living TODO in there, maybe you can jot a few lines? I added a brief insight into the...
> You should consider adding to the dev log! Are you referring to just use what I added in design.md? Or should I write something custom? Or a bit of...
Great! I'll add it then
Most packages (that have any sort of configuration of course) in zig use this pattern to be configured: ```zig // root_source_file.zig pub const {package_name}_options = .{ ... }; ``` Idk...