forked from nuttx/nuttx-update
syslog: convert \n to \r\n in syslog framework layer
Signed-off-by: yangsong8 <yangsong8@xiaomi.com>
This commit is contained in:
parent
67ed036227
commit
8c13b8df1d
108 changed files with 294 additions and 1705 deletions
|
@ -1574,15 +1574,6 @@ int up_putc(int ch)
|
|||
up_disableuartint(priv, &ier);
|
||||
#endif
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
up_restoreuartint(priv, ier);
|
||||
|
@ -1604,15 +1595,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_UART_DEVICE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1378,15 +1378,6 @@ int up_putc(int ch)
|
|||
up_disableuartint(priv, &ier);
|
||||
#endif
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
up_restoreuartint(priv, ier);
|
||||
|
@ -1408,15 +1399,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_UART_DEVICE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -3004,16 +3004,6 @@ int up_putc(int ch)
|
|||
uint16_t ie;
|
||||
|
||||
up_disableusartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
up_restoreusartint(priv, ie);
|
||||
#endif
|
||||
|
@ -3033,15 +3023,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#if CONSOLE_UART > 0
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -839,16 +839,6 @@ int up_putc(int ch)
|
|||
up_waittxready(priv);
|
||||
up_serialout(priv, UART_THR_OFFS, (uint8_t)ch);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
up_waittxready(priv);
|
||||
up_serialout(priv, UART_THR_OFFS, '\r');
|
||||
}
|
||||
|
||||
up_waittxready(priv);
|
||||
up_restoreuartint(priv, ier);
|
||||
return ch;
|
||||
|
|
|
@ -978,15 +978,6 @@ int up_putc(int ch)
|
|||
up_disableuartint(priv, &ier);
|
||||
#endif
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#ifdef HAVE_CONSOLE
|
||||
up_restoreuartint(priv, ier);
|
||||
|
|
|
@ -1116,15 +1116,6 @@ int up_putc(int ch)
|
|||
up_disableuartint(priv, &ier);
|
||||
#endif
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#ifdef HAVE_CONSOLE
|
||||
up_restoreuartint(priv, ier);
|
||||
|
@ -1146,15 +1137,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_UART
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -751,16 +751,6 @@ int up_putc(int ch)
|
|||
up_waittxready(priv);
|
||||
up_serialout(priv, UART_DTRR, (uint16_t)ch);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
up_waittxready(priv);
|
||||
up_serialout(priv, UART_DTRR, '\r');
|
||||
}
|
||||
|
||||
up_waittxready(priv);
|
||||
up_restoreuartint(priv, ier);
|
||||
return ch;
|
||||
|
@ -804,16 +794,6 @@ int up_putc(int ch)
|
|||
up_waittxready();
|
||||
putreg16((uint16_t)ch, DM320_REGISTER_BASE + UART_DTRR);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
up_waittxready();
|
||||
putreg16((uint16_t)'\r', DM320_REGISTER_BASE + UART_DTRR);
|
||||
}
|
||||
|
||||
up_waittxready();
|
||||
return ch;
|
||||
}
|
||||
|
|
|
@ -815,16 +815,6 @@ int up_putc(int ch)
|
|||
uint32_t ien;
|
||||
|
||||
efm32_disableuartint(priv, &ien);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
efm32_lowputc('\r');
|
||||
}
|
||||
|
||||
efm32_lowputc(ch);
|
||||
efm32_restoreuartint(priv, ien);
|
||||
return ch;
|
||||
|
@ -844,15 +834,6 @@ int up_putc(int ch)
|
|||
#ifdef HAVE_LEUART_CONSOLE
|
||||
int up_putc(int ch)
|
||||
{
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
efm32_lowputc('\r');
|
||||
}
|
||||
|
||||
efm32_lowputc(ch);
|
||||
return ch;
|
||||
}
|
||||
|
|
|
@ -1192,16 +1192,6 @@ int up_putc(int ch)
|
|||
uint32_t ien;
|
||||
|
||||
efm32_disableuartint(priv, &ien);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
efm32_lowputc('\r');
|
||||
}
|
||||
|
||||
efm32_lowputc(ch);
|
||||
efm32_restoreuartint(priv, ien);
|
||||
#endif
|
||||
|
@ -1223,15 +1213,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_UART_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
efm32_lowputc('\r');
|
||||
}
|
||||
|
||||
efm32_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -588,16 +588,6 @@ int up_putc(int ch)
|
|||
uint32_t ie;
|
||||
|
||||
eoss3_disableuartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
eoss3_restoreuartint(priv, ie);
|
||||
#endif
|
||||
|
@ -617,15 +607,6 @@ int up_putc(int ch)
|
|||
|
||||
int up_putc(int ch)
|
||||
{
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
/* Output the character */
|
||||
|
||||
arm_lowputc(ch);
|
||||
|
|
|
@ -2937,16 +2937,6 @@ int up_putc(int ch)
|
|||
uint32_t ie;
|
||||
|
||||
up_disableusartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
up_restoreusartint(priv, ie);
|
||||
#endif
|
||||
|
@ -2966,15 +2956,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef CONSOLE_UART
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1166,16 +1166,6 @@ int up_putc(int ch)
|
|||
up_disableuartint(priv, &ier);
|
||||
up_waittxready(priv);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
up_serialout(priv, UART_TXD0, (uint32_t)'\r');
|
||||
up_waittxready(priv);
|
||||
}
|
||||
|
||||
up_serialout(priv, UART_TXD0, (uint32_t)ch);
|
||||
up_waittxready(priv);
|
||||
up_restoreuartint(priv, ier);
|
||||
|
@ -1224,17 +1214,6 @@ static inline void up_waittxready(void)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
up_waittxready();
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
putreg32((uint16_t)'\r', IMX_REGISTER_BASE + UART_TXD0);
|
||||
up_waittxready();
|
||||
}
|
||||
|
||||
putreg32((uint16_t)ch, IMX_REGISTER_BASE + UART_TXD0);
|
||||
return ch;
|
||||
}
|
||||
|
|
|
@ -1124,16 +1124,6 @@ int up_putc(int ch)
|
|||
*/
|
||||
|
||||
imx_disableuartint(priv, &ier);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
imx_lowputc('\r');
|
||||
}
|
||||
|
||||
imx_lowputc(ch);
|
||||
imx_restoreuartint(priv, ier);
|
||||
|
||||
|
@ -1190,17 +1180,6 @@ int up_putc(int ch)
|
|||
{
|
||||
#ifdef IMX_CONSOLE_VBASE
|
||||
imx_waittxready();
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
putreg32((uint16_t)'\r', IMX_CONSOLE_VBASE + UART_TXD_OFFSET);
|
||||
imx_waittxready();
|
||||
}
|
||||
|
||||
putreg32((uint16_t)ch, IMX_CONSOLE_VBASE + UART_TXD_OFFSET);
|
||||
#endif
|
||||
|
||||
|
|
|
@ -3678,16 +3678,6 @@ int up_putc(int ch)
|
|||
uint32_t ie;
|
||||
|
||||
imxrt_disableuartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
imxrt_lowputc('\r');
|
||||
}
|
||||
|
||||
imxrt_lowputc(ch);
|
||||
imxrt_restoreuartint(priv, ie);
|
||||
#endif
|
||||
|
@ -3708,15 +3698,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#if CONSOLE_LPUART > 0
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
|
||||
|
|
|
@ -1956,16 +1956,6 @@ int up_putc(int ch)
|
|||
uint32_t ie;
|
||||
|
||||
kinetis_disableuartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
kinetis_restoreuartint(priv, ie);
|
||||
#endif
|
||||
|
@ -1987,15 +1977,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_LPUART_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -2148,16 +2148,6 @@ int up_putc(int ch)
|
|||
uint8_t ie;
|
||||
|
||||
up_disableuartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
up_restoreuartint(priv, ie);
|
||||
#endif
|
||||
|
@ -2179,15 +2169,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_UART_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -882,16 +882,6 @@ int up_putc(int ch)
|
|||
uint8_t ie;
|
||||
|
||||
up_disableuartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
kl_lowputc('\r');
|
||||
}
|
||||
|
||||
kl_lowputc(ch);
|
||||
up_restoreuartint(priv, ie);
|
||||
#endif
|
||||
|
@ -911,15 +901,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
kl_lowputc('\r');
|
||||
}
|
||||
|
||||
kl_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1374,16 +1374,6 @@ int up_putc(int ch)
|
|||
up_waittxnotfull(priv);
|
||||
up_serialout(priv, UART_USTF, (uint32_t)ch);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
up_waittxnotfull(priv);
|
||||
up_serialout(priv, UART_USTF, (uint32_t)'\r');
|
||||
}
|
||||
|
||||
up_waittxnotfull(priv);
|
||||
up_restoreuartint(priv, im);
|
||||
return ch;
|
||||
|
@ -1401,15 +1391,6 @@ int up_putc(int ch)
|
|||
|
||||
int up_putc(int ch)
|
||||
{
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
return ch;
|
||||
}
|
||||
|
|
|
@ -1692,15 +1692,6 @@ int up_putc(int ch)
|
|||
up_disableuartint(priv, &ier);
|
||||
#endif
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#ifdef HAVE_CONSOLE
|
||||
up_restoreuartint(priv, ier);
|
||||
|
@ -1722,15 +1713,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_UART
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -792,16 +792,6 @@ int up_putc(int ch)
|
|||
up_waittxready(priv);
|
||||
up_serialout(priv, LPC214X_UART_THR_OFFSET, (uint8_t)ch);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
up_waittxready(priv);
|
||||
up_serialout(priv, LPC214X_UART_THR_OFFSET, '\r');
|
||||
}
|
||||
|
||||
up_waittxready(priv);
|
||||
up_restoreuartint(priv, ier);
|
||||
return ch;
|
||||
|
@ -819,15 +809,6 @@ int up_putc(int ch)
|
|||
|
||||
int up_putc(int ch)
|
||||
{
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
return ch;
|
||||
}
|
||||
|
|
|
@ -932,16 +932,6 @@ int up_putc(int ch)
|
|||
up_waittxready(priv);
|
||||
up_serialout(priv, UART_THR_OFFSET, (uint8_t) ch);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
up_waittxready(priv);
|
||||
up_serialout(priv, UART_THR_OFFSET, '\r');
|
||||
}
|
||||
|
||||
up_waittxready(priv);
|
||||
up_restoreuartint(priv, ier);
|
||||
return ch;
|
||||
|
@ -959,15 +949,6 @@ int up_putc(int ch)
|
|||
|
||||
int up_putc(int ch)
|
||||
{
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
return ch;
|
||||
}
|
||||
|
|
|
@ -808,15 +808,6 @@ int up_putc(int ch)
|
|||
|
||||
up_disableuartint(priv, &ier);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
/* Output the character */
|
||||
|
||||
arm_lowputc(ch);
|
||||
|
@ -836,15 +827,6 @@ int up_putc(int ch)
|
|||
|
||||
int up_putc(int ch)
|
||||
{
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
/* Output the character */
|
||||
|
||||
arm_lowputc(ch);
|
||||
|
|
|
@ -1356,15 +1356,6 @@ int up_putc(int ch)
|
|||
up_disableuartint(priv, &ier);
|
||||
#endif
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
up_restoreuartint(priv, ier);
|
||||
|
@ -1386,15 +1377,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_UART
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1447,16 +1447,6 @@ int up_putc(int ch)
|
|||
uint32_t intset;
|
||||
|
||||
lpc54_fifoint_disableall(priv, &intset);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
lpc54_fifoint_enable(priv, intset);
|
||||
#endif
|
||||
|
@ -1477,15 +1467,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_USART_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
return ch;
|
||||
}
|
||||
|
|
|
@ -832,16 +832,6 @@ int up_putc(int ch)
|
|||
uint32_t intset;
|
||||
|
||||
max326_int_disableall(priv, &intset);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
max326_int_enable(priv, intset);
|
||||
#endif
|
||||
|
@ -862,15 +852,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_UART_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
return ch;
|
||||
}
|
||||
|
|
|
@ -1062,16 +1062,6 @@ int up_putc(int ch)
|
|||
*/
|
||||
|
||||
mx8mp_disableuartint(priv, &ier);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
mx8mp_restoreuartint(priv, ier);
|
||||
#endif
|
||||
|
@ -1127,17 +1117,6 @@ int up_putc(int ch)
|
|||
{
|
||||
#ifdef MX8MP_CONSOLE
|
||||
mx8mp_waittxready();
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
putreg32((uint16_t)'\r', MX8MP_CONSOLE + UART_TXD_OFFSET);
|
||||
mx8mp_waittxready();
|
||||
}
|
||||
|
||||
putreg32((uint16_t)ch, MX8MP_CONSOLE + UART_TXD_OFFSET);
|
||||
#endif
|
||||
|
||||
|
|
|
@ -817,15 +817,6 @@ int up_putc(int ch)
|
|||
#ifdef HAVE_UART_CONSOLE
|
||||
/* struct nrf52_dev_s *priv = (struct nrf52_dev_s *)CONSOLE_DEV.priv; */
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
|
||||
|
@ -845,15 +836,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_UART_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -817,15 +817,6 @@ int up_putc(int ch)
|
|||
#ifdef HAVE_UART_CONSOLE
|
||||
/* struct nrf53_dev_s *priv = (struct nrf53_dev_s *)CONSOLE_DEV.priv; */
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
|
||||
|
@ -845,15 +836,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_UART_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -817,15 +817,6 @@ int up_putc(int ch)
|
|||
#ifdef HAVE_UART_CONSOLE
|
||||
/* struct nrf91_dev_s *priv = (struct nrf91_dev_s *)CONSOLE_DEV.priv; */
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
|
||||
|
@ -845,15 +836,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_UART_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1057,15 +1057,6 @@ int up_putc(int ch)
|
|||
up_disableuartint(priv, &ier);
|
||||
#endif
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
nuc_lowputc((uint32_t)'\r');
|
||||
}
|
||||
|
||||
nuc_lowputc((uint32_t)ch);
|
||||
#ifdef HAVE_CONSOLE
|
||||
up_restoreuartint(priv, ier);
|
||||
|
@ -1087,15 +1078,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_UART
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
nuc_lowputc((uint32_t)'\r');
|
||||
}
|
||||
|
||||
nuc_lowputc((uint32_t)ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1022,16 +1022,6 @@ int up_putc(int ch)
|
|||
uint32_t ier;
|
||||
up_disableuartint(priv, &ier);
|
||||
#endif
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#ifdef HAVE_CONSOLE
|
||||
up_restoreuartint(priv, ier);
|
||||
|
@ -1053,15 +1043,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_UART
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1078,15 +1078,6 @@ int up_putc(int ch)
|
|||
{
|
||||
struct ameba_s *priv = (struct ameba_s *)CONSOLE_DEV.priv;
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
ameba_putc(priv, '\r');
|
||||
}
|
||||
|
||||
ameba_putc(priv, ch);
|
||||
return ch;
|
||||
}
|
||||
|
|
|
@ -2552,16 +2552,6 @@ int up_putc(int ch)
|
|||
uint32_t ie;
|
||||
|
||||
s32k1xx_disableuartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
s32k1xx_lowputc('\r');
|
||||
}
|
||||
|
||||
s32k1xx_lowputc(ch);
|
||||
s32k1xx_restoreuartint(priv, ie);
|
||||
#endif
|
||||
|
@ -2582,15 +2572,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#if CONSOLE_LPUART > 0
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
|
||||
|
|
|
@ -4460,16 +4460,6 @@ int up_putc(int ch)
|
|||
uint32_t ie;
|
||||
|
||||
s32k3xx_disableuartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
s32k3xx_lowputc('\r');
|
||||
}
|
||||
|
||||
s32k3xx_lowputc(ch);
|
||||
s32k3xx_restoreuartint(priv, ie);
|
||||
#endif
|
||||
|
@ -4490,15 +4480,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#if CONSOLE_LPUART > 0
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
|
||||
|
|
|
@ -306,15 +306,6 @@ void arm_lowputc(char ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -319,14 +319,6 @@ int up_putc(int ch)
|
|||
{
|
||||
#if defined(SAMA5_HAVE_UART_CONSOLE) || defined(SAMA5_HAVE_USART_CONSOLE) || \
|
||||
defined(SAMA5_HAVE_FLEXCOM_CONSOLE) || defined(CONFIG_SAMA5_DBGU_CONSOLE)
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
|
|
|
@ -1047,16 +1047,6 @@ int up_putc(int ch)
|
|||
*/
|
||||
|
||||
flags = spin_lock_irqsave(NULL);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
sam_lowputc('\r');
|
||||
}
|
||||
|
||||
sam_lowputc(ch);
|
||||
spin_unlock_irqrestore(NULL, flags);
|
||||
#endif
|
||||
|
@ -1076,15 +1066,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
sam_lowputc('\r');
|
||||
}
|
||||
|
||||
sam_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1106,16 +1106,6 @@ int up_putc(int ch)
|
|||
*/
|
||||
|
||||
flags = spin_lock_irqsave(NULL);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
sam_lowputc('\r');
|
||||
}
|
||||
|
||||
sam_lowputc(ch);
|
||||
spin_unlock_irqrestore(NULL, flags);
|
||||
#endif
|
||||
|
@ -1135,15 +1125,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
sam_lowputc('\r');
|
||||
}
|
||||
|
||||
sam_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -212,15 +212,6 @@ void arm_lowputc(char ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -3639,16 +3639,6 @@ int up_putc(int ch)
|
|||
uint16_t ie;
|
||||
|
||||
up_disableusartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
up_restoreusartint(priv, ie);
|
||||
#endif
|
||||
|
@ -3668,15 +3658,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#if CONSOLE_UART > 0 || CONSOLE_LPUART > 0
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -2581,16 +2581,6 @@ int up_putc(int ch)
|
|||
uint16_t ie;
|
||||
|
||||
stm32serial_disableusartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
stm32serial_restoreusartint(priv, ie);
|
||||
#endif
|
||||
|
@ -2610,15 +2600,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#if CONSOLE_USART > 0
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
|
||||
|
|
|
@ -2014,16 +2014,6 @@ int up_putc(int ch)
|
|||
uint16_t ie;
|
||||
|
||||
up_disableusartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
up_restoreusartint(priv, ie);
|
||||
|
||||
|
@ -2044,15 +2034,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#if CONSOLE_USART > 0
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -3799,16 +3799,6 @@ int up_putc(int ch)
|
|||
uint16_t ie;
|
||||
|
||||
up_disableusartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
up_restoreusartint(priv, ie);
|
||||
#endif
|
||||
|
@ -3828,15 +3818,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#if CONSOLE_UART > 0
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -4008,16 +4008,6 @@ int up_putc(int ch)
|
|||
uint16_t ie;
|
||||
|
||||
up_disableusartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
up_restoreusartint(priv, ie);
|
||||
|
||||
|
@ -4038,15 +4028,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#if CONSOLE_UART > 0
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -3268,16 +3268,6 @@ int up_putc(int ch)
|
|||
uint16_t ie;
|
||||
|
||||
stm32l4serial_disableusartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
stm32l4serial_restoreusartint(priv, ie);
|
||||
#endif
|
||||
|
@ -3297,15 +3287,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#if CONSOLE_UART > 0
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -3201,16 +3201,6 @@ int up_putc(int ch)
|
|||
uint16_t ie;
|
||||
|
||||
stm32l5serial_disableusartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
stm32l5serial_restoreusartint(priv, ie);
|
||||
#endif
|
||||
|
@ -3230,15 +3220,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#if CONSOLE_UART > 0
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -3201,16 +3201,6 @@ int up_putc(int ch)
|
|||
uint16_t ie;
|
||||
|
||||
stm32serial_disableusartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
stm32serial_restoreusartint(priv, ie);
|
||||
#endif
|
||||
|
@ -3230,15 +3220,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#if CONSOLE_UART > 0
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -2834,16 +2834,6 @@ int up_putc(int ch)
|
|||
uint16_t ie;
|
||||
|
||||
stm32wb_serial_disableusartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
stm32wb_serial_restoreusartint(priv, ie);
|
||||
#endif
|
||||
|
@ -2863,15 +2853,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#if CONSOLE_UART > 0
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -2935,16 +2935,6 @@ int up_putc(int ch)
|
|||
uint16_t ie;
|
||||
|
||||
stm32wl5serial_disableusartint(priv, &ie);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
stm32wl5serial_restoreusartint(priv, ie);
|
||||
#endif
|
||||
|
@ -2964,15 +2954,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#if CONSOLE_UART > 0
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -960,16 +960,6 @@ int up_putc(int ch)
|
|||
up_waittxnotfull(priv);
|
||||
up_serialout(priv, STR71X_UART_TXBUFR_OFFSET, (uint16_t)ch);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
up_waittxnotfull(priv);
|
||||
up_serialout(priv, STR71X_UART_TXBUFR_OFFSET, (uint16_t)'\r');
|
||||
}
|
||||
|
||||
up_waittxnotfull(priv);
|
||||
up_restoreuartint(priv, ier);
|
||||
#endif
|
||||
|
@ -989,15 +979,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1580,16 +1580,6 @@ int up_putc(int ch)
|
|||
|
||||
up_disableuartint(priv, &im);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
up_waittxnotfull(priv);
|
||||
up_serialout(priv, TIVA_UART_DR_OFFSET, (uint32_t)'\r');
|
||||
}
|
||||
|
||||
up_waittxnotfull(priv);
|
||||
up_serialout(priv, TIVA_UART_DR_OFFSET, (uint32_t)ch);
|
||||
|
||||
|
@ -1612,15 +1602,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1593,13 +1593,6 @@ static inline int tlsr82_uart_lowputc(int ch)
|
|||
#ifndef CONFIG_TLSR82_SPI_SYSLOG
|
||||
int up_putc(int ch)
|
||||
{
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
tlsr82_uart_lowputc('\r');
|
||||
}
|
||||
|
||||
tlsr82_uart_lowputc(ch);
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -326,13 +326,6 @@ void spi_console_init(void)
|
|||
#ifdef CONFIG_TLSR82_SPI_SYSLOG
|
||||
int up_putc(int ch)
|
||||
{
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
spi_putc('\r');
|
||||
}
|
||||
|
||||
spi_putc((uint8_t)ch);
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -229,15 +229,6 @@ void arm_lowputc(char ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1127,16 +1127,6 @@ int up_putc(int ch)
|
|||
uint32_t ccr;
|
||||
|
||||
xmc4_disableuartint(priv, &ccr);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
xmc4_restoreuartint(priv, ccr);
|
||||
#endif
|
||||
|
@ -1157,15 +1147,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_UART_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm_lowputc('\r');
|
||||
}
|
||||
|
||||
arm_lowputc(ch);
|
||||
return ch;
|
||||
#endif
|
||||
|
|
|
@ -1417,15 +1417,6 @@ int up_putc(int ch)
|
|||
#ifdef CONSOLE_DEV
|
||||
struct uart_dev_s *dev = &CONSOLE_DEV;
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
a64_uart_wait_send(dev, '\r');
|
||||
}
|
||||
|
||||
a64_uart_wait_send(dev, ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1053,15 +1053,6 @@ int up_putc(int ch)
|
|||
{
|
||||
struct uart_dev_s *dev = &CONSOLE_DEV;
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
imx8_send(dev, '\r');
|
||||
}
|
||||
|
||||
imx8_send(dev, (uint8_t)ch);
|
||||
return ch;
|
||||
}
|
||||
|
|
|
@ -2804,15 +2804,6 @@ int up_putc(int ch)
|
|||
imx9_disableuartint(priv, &ie);
|
||||
#endif
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
arm64_lowputc('\r');
|
||||
}
|
||||
|
||||
arm64_lowputc(ch);
|
||||
#ifdef CONSOLE_DEV
|
||||
imx9_restoreuartint(priv, ie);
|
||||
|
|
|
@ -1360,15 +1360,6 @@ int up_putc(int ch)
|
|||
#ifdef CONSOLE_DEV
|
||||
struct uart_dev_s *dev = &CONSOLE_DEV;
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
a64_uart_wait_send(dev, '\r');
|
||||
}
|
||||
|
||||
a64_uart_wait_send(dev, ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1313,15 +1313,6 @@ int up_putc(int ch)
|
|||
#ifdef CONSOLE_DEV
|
||||
struct uart_dev_s *dev = &CONSOLE_DEV;
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
zynq_uart_wait_send(dev, '\r');
|
||||
}
|
||||
|
||||
zynq_uart_wait_send(dev, ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -761,16 +761,6 @@ int up_putc(int ch)
|
|||
uint32_t imr;
|
||||
|
||||
up_disableusartint(priv, &imr);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
avr_lowputc('\r');
|
||||
}
|
||||
|
||||
avr_lowputc(ch);
|
||||
up_restoreusartint(priv, imr);
|
||||
#endif
|
||||
|
@ -790,15 +780,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
avr_lowputc('\r');
|
||||
}
|
||||
|
||||
avr_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -567,16 +567,6 @@ int up_putc(int ch)
|
|||
uint8_t imr;
|
||||
|
||||
usart1_disableusartint(&imr);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
avr_lowputc('\r');
|
||||
}
|
||||
|
||||
avr_lowputc(ch);
|
||||
usart1_restoreusartint(imr);
|
||||
#endif
|
||||
|
@ -596,15 +586,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
avr_lowputc('\r');
|
||||
}
|
||||
|
||||
avr_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -900,15 +900,6 @@ int up_putc(int ch)
|
|||
usart1_disableusartint(&imr);
|
||||
#endif
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
avr_lowputc('\r');
|
||||
}
|
||||
|
||||
avr_lowputc(ch);
|
||||
|
||||
#if defined(CONFIG_USART0_SERIAL_CONSOLE)
|
||||
|
@ -934,15 +925,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
avr_lowputc('\r');
|
||||
}
|
||||
|
||||
avr_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -777,16 +777,6 @@ int up_putc(int ch)
|
|||
up_waittxnotfull(priv);
|
||||
up_send(CONSOLE_DEV, ch);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
up_waittxnotfull(priv);
|
||||
up_send(CONSOLE_DEV, '\r');
|
||||
}
|
||||
|
||||
up_waittxnotfull(priv);
|
||||
up_restoresciint(priv, im);
|
||||
#endif
|
||||
|
@ -807,16 +797,6 @@ int up_putc(int ch)
|
|||
{
|
||||
#ifdef CONFIG_ARCH_LOWPUTC
|
||||
hc_lowputc(ch);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
hc_lowputc('\r');
|
||||
}
|
||||
|
||||
#endif
|
||||
return ch;
|
||||
}
|
||||
|
|
|
@ -883,16 +883,6 @@ int up_putc(int ch)
|
|||
uint8_t imr;
|
||||
|
||||
up_disableuartint(dev, &imr);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
mips_lowputc('\r');
|
||||
}
|
||||
|
||||
mips_lowputc(ch);
|
||||
up_restoreuartint(dev, imr);
|
||||
#endif
|
||||
|
@ -937,15 +927,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
mips_lowputc('\r');
|
||||
}
|
||||
|
||||
mips_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1420,16 +1420,6 @@ int up_putc(int ch)
|
|||
uint8_t imr;
|
||||
|
||||
up_disableuartint(dev, &imr);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
mips_lowputc('\r');
|
||||
}
|
||||
|
||||
mips_lowputc(ch);
|
||||
up_restoreuartint(dev, imr);
|
||||
#endif
|
||||
|
@ -1474,15 +1464,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
mips_lowputc('\r');
|
||||
}
|
||||
|
||||
mips_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -548,16 +548,6 @@ int up_putc(int ch)
|
|||
uint8_t imr;
|
||||
|
||||
misoc_disableuartint(dev, &imr);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
misoc_lowputc('\r');
|
||||
}
|
||||
|
||||
misoc_lowputc(ch);
|
||||
misoc_restoreuartint(dev, imr);
|
||||
#endif
|
||||
|
@ -603,15 +593,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
misoc_lowputc('\r');
|
||||
}
|
||||
|
||||
misoc_lowputc(ch);
|
||||
#endif
|
||||
|
||||
|
|
|
@ -117,15 +117,6 @@ int up_putc(int ch)
|
|||
|
||||
flags = spin_lock_irqsave(NULL);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
/* or1k_lowputc('\r'); */
|
||||
}
|
||||
|
||||
/* or1k_lowputc(ch); */
|
||||
|
||||
spin_unlock_irqrestore(NULL, flags);
|
||||
|
|
|
@ -1101,17 +1101,6 @@ int up_putc(int ch)
|
|||
uint8_t ucon;
|
||||
|
||||
up_disableuartint(priv, &ucon);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
up_waittxready(priv);
|
||||
up_serialout16(priv, M16C_UART_TB, (uint16_t)'\r');
|
||||
}
|
||||
|
||||
up_waittxready(priv);
|
||||
up_serialout16(priv, M16C_UART_TB, (uint16_t)ch);
|
||||
|
||||
|
@ -1134,15 +1123,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIALCONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
renesas_lowputc('\r');
|
||||
}
|
||||
|
||||
renesas_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1700,16 +1700,6 @@ int up_putc(int ch)
|
|||
priv = (struct up_dev_s *)CONSOLE_DEV.priv;
|
||||
up_disablesciint(priv, &scr);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
up_waittxready(priv);
|
||||
up_serialout(priv, RX_SCI_TDR_OFFSET, '\r');
|
||||
}
|
||||
|
||||
up_waittxready(priv);
|
||||
up_serialout(priv, RX_SCI_TDR_OFFSET, (uint8_t)ch);
|
||||
up_waittxready(priv);
|
||||
|
@ -1730,16 +1720,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_CONSOLE
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
renesas_lowputc('\r');
|
||||
}
|
||||
|
||||
renesas_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -887,17 +887,6 @@ int up_putc(int ch)
|
|||
uint8_t scr;
|
||||
|
||||
up_disablesciint(priv, &scr);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
up_waittxready(priv);
|
||||
up_serialout(priv, SH1_SCI_TDR_OFFSET, '\r');
|
||||
}
|
||||
|
||||
up_waittxready(priv);
|
||||
up_serialout(priv, SH1_SCI_TDR_OFFSET, (uint8_t)ch);
|
||||
|
||||
|
@ -920,15 +909,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
renesas_lowputc('\r');
|
||||
}
|
||||
|
||||
renesas_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -891,15 +891,6 @@ int up_putc(int ch)
|
|||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
irqstate_t flags = spin_lock_irqsave(NULL);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
spin_unlock_irqrestore(NULL, flags);
|
||||
#endif
|
||||
|
@ -945,15 +936,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1010,18 +1010,6 @@ int up_putc(int ch)
|
|||
uint8_t uart_idx = priv->config.idx;
|
||||
irqstate_t flags = enter_critical_section();
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
while ((getreg32(BL808_UART_FIFO_CONFIG_1(uart_idx)) &
|
||||
UART_FIFO_CONFIG_1_TX_CNT_MASK) == 0);
|
||||
|
||||
putreg32('\r', BL808_UART_FIFO_WDATA(uart_idx));
|
||||
}
|
||||
|
||||
while ((getreg32(BL808_UART_FIFO_CONFIG_1(uart_idx)) &
|
||||
UART_FIFO_CONFIG_1_TX_CNT_MASK) == 0);
|
||||
|
||||
|
|
|
@ -670,16 +670,6 @@ int up_putc(int ch)
|
|||
uint8_t imr;
|
||||
|
||||
up_disableuartint(priv, &imr);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
up_restoreuartint(priv, imr);
|
||||
#endif
|
||||
|
@ -725,15 +715,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1155,15 +1155,6 @@ int up_putc(int ch)
|
|||
esp_lowputc_disable_all_uart_int(CONSOLE_DEV.priv, &int_status);
|
||||
#endif
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
|
||||
#ifdef CONSOLE_UART
|
||||
|
@ -1223,15 +1214,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
#endif /* HAVE_SERIAL_CONSOLE */
|
||||
|
||||
|
|
|
@ -1110,15 +1110,6 @@ int up_putc(int ch)
|
|||
esp32c3_lowputc_disable_all_uart_int(CONSOLE_DEV.priv, &int_status);
|
||||
#endif
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
|
||||
#ifdef CONSOLE_UART
|
||||
|
@ -1147,15 +1138,6 @@ int up_putc(int ch)
|
|||
esp32c3_lowputc_disable_all_uart_int(CONSOLE_DEV.priv, &int_status);
|
||||
#endif
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
|
||||
#ifdef CONSOLE_UART
|
||||
|
|
|
@ -660,16 +660,6 @@ int up_putc(int ch)
|
|||
uint8_t imr;
|
||||
|
||||
up_disableuartint(priv, &imr);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
up_restoreuartint(priv, imr);
|
||||
#endif
|
||||
|
@ -715,15 +705,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1299,16 +1299,6 @@ int up_putc(int ch)
|
|||
uint32_t im;
|
||||
|
||||
hpm_disableuartint(priv, &im);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
hpm_lowputc('\r');
|
||||
}
|
||||
|
||||
hpm_lowputc(ch);
|
||||
hpm_restoreuartint(priv, im);
|
||||
#endif
|
||||
|
@ -1328,15 +1318,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_UART_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -845,16 +845,6 @@ int up_putc(int ch)
|
|||
uint8_t imr;
|
||||
|
||||
up_disableuartint(priv, &imr);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
up_restoreuartint(priv, imr);
|
||||
#endif
|
||||
|
@ -900,15 +890,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -660,16 +660,6 @@ int up_putc(int ch)
|
|||
uint8_t imr;
|
||||
|
||||
up_disableuartint(priv, &imr);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
up_restoreuartint(priv, imr);
|
||||
#endif
|
||||
|
@ -715,15 +705,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -692,16 +692,6 @@ int up_putc(int ch)
|
|||
uint8_t imr;
|
||||
|
||||
up_disableuartint(priv, &imr);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
up_restoreuartint(priv, imr);
|
||||
#endif
|
||||
|
@ -747,15 +737,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1259,15 +1259,6 @@ int up_putc(int ch)
|
|||
up_disableuartint(priv, &ier);
|
||||
#endif
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
up_restoreuartint(priv, ier);
|
||||
|
@ -1314,15 +1305,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1140,16 +1140,6 @@ int up_putc(int ch)
|
|||
uint32_t im;
|
||||
|
||||
up_disableuartint(priv, &im);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
riscv_lowputc('\r');
|
||||
}
|
||||
|
||||
riscv_lowputc(ch);
|
||||
up_restoreuartint(priv, im);
|
||||
#endif
|
||||
|
|
|
@ -877,16 +877,6 @@ int up_putc(int ch)
|
|||
uint8_t imr = 0;
|
||||
|
||||
up_disableuartint(dev, &imr);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
sparc_lowputc('\r');
|
||||
}
|
||||
|
||||
sparc_lowputc(ch);
|
||||
up_restoreuartint(dev, imr);
|
||||
#endif
|
||||
|
@ -931,15 +921,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
sparc_lowputc('\r');
|
||||
}
|
||||
|
||||
sparc_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -872,16 +872,6 @@ int up_putc(int ch)
|
|||
uint8_t imr = 0;
|
||||
|
||||
up_disableuartint(dev, &imr);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
sparc_lowputc('\r');
|
||||
}
|
||||
|
||||
sparc_lowputc(ch);
|
||||
up_restoreuartint(dev, imr);
|
||||
#endif
|
||||
|
@ -926,15 +916,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
sparc_lowputc('\r');
|
||||
}
|
||||
|
||||
sparc_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -958,16 +958,6 @@ int up_putc(int ch)
|
|||
uint8_t imr = 0;
|
||||
|
||||
up_disableuartint(dev, &imr);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
sparc_lowputc('\r');
|
||||
}
|
||||
|
||||
sparc_lowputc(ch);
|
||||
up_restoreuartint(dev, imr);
|
||||
#endif
|
||||
|
@ -1012,15 +1002,6 @@ int up_putc(int ch)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
sparc_lowputc('\r');
|
||||
}
|
||||
|
||||
sparc_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -725,15 +725,6 @@ void tricore_serialinit(void)
|
|||
int up_putc(int ch)
|
||||
{
|
||||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
tricore_lowputc('\r');
|
||||
}
|
||||
|
||||
tricore_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -75,15 +75,6 @@ void uart_putreg(struct u16550_s *priv,
|
|||
|
||||
int up_putc(int ch)
|
||||
{
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
x86_lowputc('\r');
|
||||
}
|
||||
|
||||
x86_lowputc(ch);
|
||||
return ch;
|
||||
}
|
||||
|
|
|
@ -90,15 +90,6 @@ void up_lowputc(char ch)
|
|||
|
||||
int up_putc(int ch)
|
||||
{
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
up_lowputc('\r');
|
||||
}
|
||||
|
||||
up_lowputc(ch);
|
||||
return ch;
|
||||
}
|
||||
|
|
|
@ -2121,16 +2121,6 @@ int up_putc(int ch)
|
|||
|
||||
esp32_disableallints(CONSOLE_DEV.priv, &intena);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
while (!esp32_txready(&CONSOLE_DEV));
|
||||
esp32_send(&CONSOLE_DEV, '\r');
|
||||
}
|
||||
|
||||
while (!esp32_txready(&CONSOLE_DEV));
|
||||
esp32_send(&CONSOLE_DEV, ch);
|
||||
|
||||
|
|
|
@ -1125,16 +1125,6 @@ int up_putc(int ch)
|
|||
uint32_t int_status;
|
||||
|
||||
esp32s2_lowputc_disable_all_uart_int(CONSOLE_DEV.priv, &int_status);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
xtensa_lowputc('\r');
|
||||
}
|
||||
|
||||
xtensa_lowputc(ch);
|
||||
esp32s2_lowputc_restore_all_uart_int(CONSOLE_DEV.priv, &int_status);
|
||||
#endif
|
||||
|
@ -1188,15 +1178,6 @@ int up_putc(int ch)
|
|||
#ifdef HAVE_SERIAL_CONSOLE
|
||||
uint32_t int_status;
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
xtensa_lowputc('\r');
|
||||
}
|
||||
|
||||
xtensa_lowputc(ch);
|
||||
#endif
|
||||
return ch;
|
||||
|
|
|
@ -1218,15 +1218,6 @@ int up_putc(int ch)
|
|||
esp32s3_lowputc_disable_all_uart_int(CONSOLE_DEV.priv, &int_status);
|
||||
#endif
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
xtensa_lowputc('\r');
|
||||
}
|
||||
|
||||
xtensa_lowputc((char)ch);
|
||||
|
||||
#ifdef CONSOLE_UART
|
||||
|
@ -1255,15 +1246,6 @@ int up_putc(int ch)
|
|||
esp32s3_lowputc_disable_all_uart_int(CONSOLE_DEV.priv, &int_status);
|
||||
#endif
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
xtensa_lowputc('\r');
|
||||
}
|
||||
|
||||
xtensa_lowputc(ch);
|
||||
|
||||
#ifdef CONSOLE_UART
|
||||
|
|
|
@ -755,15 +755,6 @@ int up_putc(int ch)
|
|||
|
||||
state = z16f_disableuartirq(&CONSOLE_DEV);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR before LF */
|
||||
|
||||
z16f_consoleput('\r');
|
||||
}
|
||||
|
||||
/* Output the character */
|
||||
|
||||
z16f_consoleput((uint8_t)ch);
|
||||
|
@ -821,15 +812,6 @@ static void z16f_putc(int ch)
|
|||
|
||||
int up_putc(int ch)
|
||||
{
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Output CR before LF */
|
||||
|
||||
z16f_putc('\r');
|
||||
}
|
||||
|
||||
/* Output character */
|
||||
|
||||
z16f_putc(ch);
|
||||
|
|
|
@ -741,16 +741,6 @@ int up_putc(int ch)
|
|||
|
||||
ez80_disableuartint(priv);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Output CR before LF */
|
||||
|
||||
ez80_waittxready(priv);
|
||||
ez80_serialout(priv, EZ80_UART_THR, '\r');
|
||||
}
|
||||
|
||||
/* Output the character */
|
||||
|
||||
ez80_waittxready(priv);
|
||||
|
@ -806,15 +796,6 @@ static void ez80_putc(int ch)
|
|||
|
||||
int up_putc(int ch)
|
||||
{
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Output CR before LF */
|
||||
|
||||
ez80_putc('\r');
|
||||
}
|
||||
|
||||
/* Output character */
|
||||
|
||||
ez80_putc(ch);
|
||||
|
|
|
@ -61,15 +61,6 @@ int z80_lowputc(int ch)
|
|||
int up_putc(int ch)
|
||||
#endif
|
||||
{
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Output CR before LF */
|
||||
|
||||
z180_putc('\r');
|
||||
}
|
||||
|
||||
/* Output the character */
|
||||
|
||||
z180_putc(ch);
|
||||
|
|
|
@ -734,15 +734,6 @@ int up_putc(int ch)
|
|||
|
||||
state = z8_disableuartirq(&CONSOLE_DEV);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR before LF */
|
||||
|
||||
z8_consoleput('\r');
|
||||
}
|
||||
|
||||
/* Output the character */
|
||||
|
||||
z8_consoleput((uint8_t)ch);
|
||||
|
@ -807,15 +798,6 @@ static void z8_putc(int ch)
|
|||
|
||||
int up_putc(int ch)
|
||||
{
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Output CR before LF */
|
||||
|
||||
z8_putc('\r');
|
||||
}
|
||||
|
||||
/* Output character */
|
||||
|
||||
z8_putc(ch);
|
||||
|
|
|
@ -778,16 +778,6 @@ int up_putc(int ch)
|
|||
uint32_t ier;
|
||||
|
||||
ier = uart_cmsdk_disableuartint(priv);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
uart_cmsdk_putc(priv, '\r');
|
||||
}
|
||||
|
||||
uart_cmsdk_putc(priv, ch);
|
||||
uart_cmsdk_restoreuartint(priv, ier);
|
||||
return ch;
|
||||
|
|
|
@ -1704,15 +1704,6 @@ int up_putc(int ch)
|
|||
{
|
||||
FAR struct u16550_s *priv = (FAR struct u16550_s *)CONSOLE_DEV.priv;
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
u16550_putc(priv, '\r');
|
||||
}
|
||||
|
||||
u16550_putc(priv, ch);
|
||||
|
||||
return ch;
|
||||
|
|
|
@ -776,16 +776,6 @@ int up_putc(int ch)
|
|||
*/
|
||||
|
||||
flags = spin_lock_irqsave(NULL);
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
u16550_putc(CONSOLE_DEV.priv, '\r');
|
||||
}
|
||||
|
||||
u16550_putc(CONSOLE_DEV.priv, ch);
|
||||
spin_unlock_irqrestore(NULL, flags);
|
||||
|
||||
|
|
|
@ -1065,15 +1065,6 @@ int up_putc(int ch)
|
|||
{
|
||||
FAR struct uart_dev_s *dev = &CONSOLE_DEV;
|
||||
|
||||
/* Check for LF */
|
||||
|
||||
if (ch == '\n')
|
||||
{
|
||||
/* Add CR */
|
||||
|
||||
pl011_putc(dev, '\r');
|
||||
}
|
||||
|
||||
pl011_putc(dev, ch);
|
||||
|
||||
return ch;
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue