Add beginnings of a serial console

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2977 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2010-10-08 02:21:43 +00:00
parent 3363f1fbcb
commit 205b3b5d0e
3 changed files with 7 additions and 7 deletions

View File

@ -65,14 +65,14 @@
************************************************************************************/
/************************************************************************************
* Name: avr32dev1_ledinitialize
* Name: up_ledinitialize
*
* Description:
* Configure on-board LEDs if LED support has been selected.
************************************************************************************/
#ifdef CONFIG_ARCH_LEDS
extern void avr32dev1_ledinitialize(void);
extern void up_ledinitialize(void);
#endif
#endif /* __ASSEMBLY__ */

View File

@ -63,7 +63,7 @@
************************************************************************************/
/************************************************************************************
* Name: at91uc3_boardinitialize
* Name: up_boardinitialize
*
* Description:
* All AVR32 architectures must provide the following entry point. This entry point
@ -72,13 +72,13 @@
*
************************************************************************************/
void at91uc3_boardinitialize(void)
void up_boardinitialize(void)
{
/* Configure SPI chip selects */
/* Configure on-board LEDs if LED support has been selected. */
#ifdef CONFIG_ARCH_LEDS
avr32dev1_ledinitialize();
up_ledinitialize();
#endif
}

View File

@ -100,10 +100,10 @@
****************************************************************************/
/****************************************************************************
* Name: up_ledinit
* Name: up_ledinitialize
****************************************************************************/
void up_ledinit(void)
void up_ledinitialize(void)
{
# warning "Not implemented"
}