mirror of
https://github.com/apache/nuttx.git
synced 2026-08-16 18:03:19 +00:00
BCM2708: The PiZero configuration now compiles and links cleanly. Still a few thngs missing internally.
This commit is contained in:
parent
e18e8573d1
commit
9b5f56ba5b
1 changed files with 6 additions and 6 deletions
|
|
@ -797,7 +797,7 @@ int bcm_mu_interrupt(int irq, void *context, void *arg)
|
|||
}
|
||||
|
||||
/****************************************************************************
|
||||
* Name: bcm_lpuart_earlyserialinit
|
||||
* Name: bcm_miniuart_earlyserialinit
|
||||
*
|
||||
* Description:
|
||||
* Performs the low level Mini-UART initialization early in debug so that the
|
||||
|
|
@ -808,7 +808,7 @@ int bcm_mu_interrupt(int irq, void *context, void *arg)
|
|||
*
|
||||
****************************************************************************/
|
||||
|
||||
void bcm_lpuart_earlyserialinit(void)
|
||||
void bcm_miniuart_earlyserialinit(void)
|
||||
{
|
||||
/* Disable interrupts from all Mini-UARTS. The console is enabled in
|
||||
* bcm_setup()
|
||||
|
|
@ -873,10 +873,10 @@ int up_putc(int ch)
|
|||
{
|
||||
/* Add CR */
|
||||
|
||||
up_lowputc('\r');
|
||||
bcm_lowputc('\r');
|
||||
}
|
||||
|
||||
up_lowputc(ch);
|
||||
bcm_lowputc(ch);
|
||||
bcm_restoreuartint(priv, ier);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
@ -901,10 +901,10 @@ int up_putc(int ch)
|
|||
{
|
||||
/* Add CR */
|
||||
|
||||
up_lowputc('\r');
|
||||
bcm_lowputc('\r');
|
||||
}
|
||||
|
||||
up_lowputc(ch);
|
||||
bcm_lowputc(ch);
|
||||
#endif
|
||||
|
||||
return ch;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue