innovaker
|
bac1f17cf6
|
refactor(app): replace Zephyr integer types with C99 integer types
u8_t → uint8_t
u16_t → uint16_t
u32_t → uint32_t
u64_t → uint64_t
s8_t → int8_t
s16_t → int16_t
s32_t → int32_t
s64_t → int64_t
Prerequisite for #223
See: https://github.com/zephyrproject-rtos/zephyr/releases/tag/zephyr-v2.4.0
PR: #467
|
2020-12-14 12:41:25 -05:00 |
|
Pete Johanson
|
7ea1892bbb
|
fix(display): All display updates in work thread.
* Make sure all LVGL access is from main work thread.
|
2020-12-06 22:47:21 -05:00 |
|
Pete Johanson
|
b3f3362b50
|
feat(display): Initial widget/status screen work.
* Battery and output status widgets
* Built in status screen combining them.
* Ability to define a custom status screen factory
function.
|
2020-12-02 16:04:56 -05:00 |
|