/**
* Serial 0 TX interrupt handler
*/
-static void uart0_irq_tx(void)
+INLINE void uart0_irq_tx(void)
{
SER_STROBE_ON;
if (fifo_isempty(txfifo))
{
/*
- * - Disable the TX empty interrupts
+ * - Disable the TX empty interrupts
*/
US0_IDR = BV(US_TXEMPTY);
SER_UART0_BUS_TXEND;
/**
* Serial 0 RX complete interrupt handler.
*/
-static void uart0_irq_rx(void)
+INLINE void uart0_irq_rx(void)
{
SER_STROBE_ON;
/**
* Serial 1 TX interrupt handler
*/
-static void uart1_irq_tx(void)
+INLINE void uart1_irq_tx(void)
{
SER_STROBE_ON;
if (fifo_isempty(txfifo))
{
/*
- * - Disable the TX empty interrupts
+ * - Disable the TX empty interrupts
*/
US1_IDR = BV(US_TXEMPTY);
SER_UART1_BUS_TXEND;
/**
* Serial 1 RX complete interrupt handler.
*/
-static void uart1_irq_rx(void)
+INLINE void uart1_irq_rx(void)
{
SER_STROBE_ON;