8 lines
174 B
C
8 lines
174 B
C
#ifndef STATUS_H
|
|
#define STATUS_H
|
|
#include <stdint.h>
|
|
void status_init(void);
|
|
void status_boot_beep(void);
|
|
void status_update(uint32_t tick, int imu_ok, int baro_ok);
|
|
#endif
|