You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CubeSatSim/libs/libmf/source/iotxbuf.c

21 lines
262 B

#include "ax8052.h"
#if UART == 0
#include "libmfuart0.h"
UART0_DEFINE_TXBUFFER(64)
#elif UART == 1
#include "libmfuart1.h"
UART1_DEFINE_TXBUFFER(64)
#elif UART == 2
#include "libmfdbglink.h"
DBGLINK_DEFINE_TXBUFFER(64)
#else
#error "UART not set"
#endif

Powered by TurnKey Linux.