summaryrefslogtreecommitdiff
path: root/firmware/src/uart.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2013-06-11 07:03:35 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2013-06-11 07:03:35 +0200
commitf7f7d63d8a83ec5a2313e21143ff73c247c389a5 (patch)
treed20ce42190d52d2f3a53dca45a44e16d3705d588 /firmware/src/uart.h
parented5aed327178a21c7f5d106230e07a48a11c1b0f (diff)
Current (broken) state of SPI/WM8723 code.
Diffstat (limited to 'firmware/src/uart.h')
-rw-r--r--firmware/src/uart.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/firmware/src/uart.h b/firmware/src/uart.h
deleted file mode 100644
index 870f581..0000000
--- a/firmware/src/uart.h
+++ /dev/null
@@ -1,50 +0,0 @@
-/****************************************************************************
- * $Id:: uart.h 5751 2010-11-30 23:56:11Z usb00423 $
- * Project: NXP LPC17xx UART example
- *
- * Description:
- * This file contains UART code header definition.
- *
- ****************************************************************************
- * Software that is described herein is for illustrative purposes only
- * which provides customers with programming information regarding the
- * products. This software is supplied "AS IS" without any warranties.
- * NXP Semiconductors assumes no responsibility or liability for the
- * use of the software, conveys no license or title under any patent,
- * copyright, or mask work right to the product. NXP Semiconductors
- * reserves the right to make changes in the software without
- * notification. NXP Semiconductors also make no representation or
- * warranty that such application will be suitable for the specified
- * use without further testing or modification.
-****************************************************************************/
-#ifndef __UART_H
-#define __UART_H
-
-#define IER_RBR 0x01
-#define IER_THRE 0x02
-#define IER_RLS 0x04
-
-#define IIR_PEND 0x01
-#define IIR_RLS 0x03
-#define IIR_RDA 0x02
-#define IIR_CTI 0x06
-#define IIR_THRE 0x01
-
-#define LSR_RDR 0x01
-#define LSR_OE 0x02
-#define LSR_PE 0x04
-#define LSR_FE 0x08
-#define LSR_BI 0x10
-#define LSR_THRE 0x20
-#define LSR_TEMT 0x40
-#define LSR_RXFE 0x80
-
-#define BUFSIZE 0x40
-
-uint32_t UARTInit( uint32_t portNum, uint32_t Baudrate );
-void UARTSend(uint32_t portNum, uint8_t *BufferPtr, uint32_t Length );
-
-#endif /* end __UART_H */
-/*****************************************************************************
-** End Of File
-******************************************************************************/