1#ifndef __INCLUDE__GUARD__LOG_SINKS_H_
2#define __INCLUDE__GUARD__LOG_SINKS_H_
4#define LOG_UART_TRANSMIT_TIMEOUT 200
6void LOG_to_file(
const char filename[],
const char msg[]);
void LOG_to_umbilical_uart(const char msg[])
Sends a log message to the umbilical UART.
Definition log_sinks.c:72
void LOG_to_file(const char filename[], const char msg[])
Sends a log message to a log file.
Definition log_sinks.c:16
void LOG_to_uhf_radio(const char msg[])
Sends a log message to the UHF radio.
Definition log_sinks.c:82