Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | command: Prefer uint8_t* for buffers; prefer uint8_fast_t for lengths | Kevin O'Connor | 2018-05-28 | 1 | -1/+1 |
| | | | | | | | | | Prefer using 'uint8_t' buffers as it is too easy to run into C sign extension problems with 'char' buffers. Prefer using 'uint_fast8_t' for buffer lengths as gcc does a better job compiling them on 32bit mcus. Signed-off-by: Kevin O'Connor <kevin@koconnor.net> | ||||
* | generic: Create generic board infrastructure and move misc.h to it | Kevin O'Connor | 2016-06-13 | 1 | -0/+22 |
Instead of creating a misc.h file in each board directory, create a generic board directory and declare misc.h there. Signed-off-by: Kevin O'Connor <kevin@koconnor.net> |