2026-02-28 11:58:23 -05:00

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