fix compilation with latest aversive
[protos/xbee-avr.git] / uart_send9_nowait.c
diff --git a/uart_send9_nowait.c b/uart_send9_nowait.c
deleted file mode 100644 (file)
index 86bed9c..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-/*  
- *  Copyright Droids Corporation, Microb Technology, Eirbot (2005)
- * 
- *  This program is free software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 2 of the License, or
- *  (at your option) any later version.
- *
- *  This program is distributed in the hope that it will be useful,
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *  GNU General Public License for more details.
- *
- *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- *
- *  Revision : $Id: uart_send9_nowait.c,v 1.1.2.2 2008-12-27 16:50:01 zer0 Exp $
- *
- */
-
-/* Olivier MATZ, Droids-corp 2004 - 2009 */
-
-#include <uart.h>
-#include <uart_defs.h>
-#include <uart_private.h>
-
-int uart_send_9bits_nowait(uint8_t num, int c)
-{
-       uint8_t flags;
-       IRQ_LOCK(flags);
-
-       /* if tx intrp are disabled (RXCIE is 0) */
-       if ( !(*uart_regs[num].ucsrb & (1 << RXCIE )) ) {
-               /* we have to poll the status register before xmit */
-               if (*uart_regs[num].ucsra & (1<<UDRE)) {
-                       uart_set_udr_9bits(c);
-                       IRQ_UNLOCK(flags);
-                       return 0;
-               }
-               else {
-                       IRQ_UNLOCK(flags);
-                       return -1;
-               }
-       }
-
-       /* the fifo must have 2 free places */
-       if( CIRBUF_GET_FREELEN(&g_tx_fifo) < 2) {
-               IRQ_UNLOCK(flags);
-               return -1;
-       }
-
-       /* uart is ready to send */
-       if (CIRBUF_IS_EMPTY(&g_tx_fifo[num]) && 
-           *uart_regs[num].ucsra & (1<<UDRE)) {
-               uart_set_udr_9bits(c);
-               sbi(*uart_regs[num].ucsrb, UDRIE); /* XXX */
-       }
-       else { /* not ready, put char in fifo */
-               cirbuf_add_buf_head(&g_tx_fifo, (char *)&c, 2);
-       }
-
-       IRQ_UNLOCK(flags);
-       return 0;
-}