CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Ardupilot

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Ardupilot/ardupilot
Path: blob/master/Tools/AP_Bootloader/can.h
Views: 1798
1
void can_start();
2
void can_update();
3
void can_set_node_id(uint8_t node_id);
4
bool can_check_update(void);
5
extern "C" {
6
void can_vprintf(const char *fmt, va_list ap);
7
void can_printf(const char *fmt, ...);
8
void can_printf_severity(uint8_t severity, const char *fmt, ...);
9
};
10
11