2019-05-26 22:38:46 -03:00
|
|
|
void can_start();
|
|
|
|
void can_update();
|
|
|
|
void can_set_node_id(uint8_t node_id);
|
2022-02-04 21:45:08 -04:00
|
|
|
bool can_check_update(void);
|
2024-09-08 01:20:26 -03:00
|
|
|
extern "C" {
|
|
|
|
void can_vprintf(const char *fmt, va_list ap);
|
2024-01-16 18:12:42 -04:00
|
|
|
void can_printf(const char *fmt, ...);
|
2024-09-08 01:20:26 -03:00
|
|
|
void can_printf_severity(uint8_t severity, const char *fmt, ...);
|
|
|
|
};
|