add lpc17xx build config for host demo

This commit is contained in:
hathach
2013-12-11 12:13:22 +07:00
parent 8bd6440547
commit b35d2c8f43
9 changed files with 208 additions and 163 deletions

View File

@@ -118,9 +118,10 @@
//--------------------------------------------------------------------+
// Init board peripherals : Clock, UART, LEDs, Buttons
void board_init(void);
void board_leds(uint32_t on_mask, uint32_t off_mask);
uint32_t board_uart_send(uint8_t *buffer, uint32_t length);
uint32_t board_uart_recv(uint8_t *buffer, uint32_t length);
uint8_t board_uart_getchar(void);
extern volatile uint32_t system_ticks;

View File

@@ -15,6 +15,10 @@
***** *****
******************************************************************/
#include "../../board.h"
#if BOARD == BOARD_EA4357
#include "EMAC.h"
//#include "tcpip.h"
#include "lpc43xx.h"
@@ -472,3 +476,5 @@ void CopyToFrame_EMAC(void *Source, unsigned int Size)
TxDescIndex = 0;
}
#endif

View File

@@ -20,6 +20,9 @@
/******************************************************************************
* Includes
*****************************************************************************/
#include "../../board.h"
#if BOARD == BOARD_EA4357
#include "lpc_types.h"
#include "lpc43xx_scu.h"
@@ -383,7 +386,7 @@ uint32_t nand_isBlockValid(uint32_t block)
*
* Params:
* block - block number to read from
* page - page with<74>n block to read from
* page - page with<74>n block to read from
* pageBuf - data is copied to this buffer. The size must be at least
* pageSize.
*
@@ -540,4 +543,4 @@ uint32_t nand_eraseBlock(uint32_t block)
return ((nandStatus() & 0x01) != 0x01);
}
#endif

View File

@@ -21,6 +21,9 @@
/******************************************************************************
* Includes
*****************************************************************************/
#include "../../board.h"
#if BOARD == BOARD_EA4357
#include "lpc43xx.h"
#include "lpc_types.h"
@@ -265,3 +268,5 @@ uint32_t sdram_test( void )
}
return 0x1;
}
#endif

View File

@@ -107,10 +107,11 @@ uint32_t board_uart_send(uint8_t *buffer, uint32_t length)
return UART_Send(BOARD_UART_PORT, buffer, length, BLOCKING);
}
uint32_t board_uart_recv(uint8_t *buffer, uint32_t length)
uint8_t board_uart_getchar(void)
{
return UART_Receive(BOARD_UART_PORT, buffer, length, BLOCKING);
return UART_ReceiveByte(BOARD_UART_PORT);
}
#endif
#endif