U.B.O.R
The [U]seless [B]ox [O]rganizing [R]obot. A FreeRTOS study project written in C which implements a multitasked control unit for a belt conveyor system with robotic sorting arms.
display.h
Go to the documentation of this file.
1 #ifndef DISPLAY_H
2 #define DISPLAY_H
3 
4 #include <stdint.h>
5 #include <stdarg.h>
6 
7 uint8_t display_log(uint8_t id, const char* fmtstr, ...);
8 void display_init();
9 
10 #define DISPLAY_NEWLINE 0
11 
12 #endif /* DISPLAY_H */
void display_init()
Initializes the display and starts the display task global.
Definition: display.c:199
uint8_t display_log(uint8_t id, const char *fmtstr,...)
Logs a message to the display global.
Definition: display.c:70