2023-09-30 20:31:58 +02:00
|
|
|
/* See LICENSE of license details. */
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include "platform.h"
|
|
|
|
#include "stub.h"
|
|
|
|
#include "weak_under_alias.h"
|
|
|
|
|
|
|
|
int __wrap_puts(const char *s)
|
|
|
|
{
|
|
|
|
while (*s != '\0') {
|
2024-01-13 23:06:01 +01:00
|
|
|
#if defined(BOARD_ehrenberg)
|
2024-02-22 17:10:49 +01:00
|
|
|
while (get_uart_rx_tx_reg_tx_free(uart)==0) ;
|
2024-01-13 23:06:01 +01:00
|
|
|
uart_write(uart, *s);
|
2024-01-27 16:54:25 +01:00
|
|
|
#elif defined(BOARD_iss)
|
|
|
|
*((uint32_t*) 0xFFFF0000) = *s;
|
|
|
|
#elif defined(BOARD_TGC5L)
|
|
|
|
//TODO: implement
|
2024-01-13 23:06:01 +01:00
|
|
|
#else
|
2023-09-30 20:31:58 +02:00
|
|
|
while (UART0_REG(UART_REG_TXFIFO) & 0x80000000) ;
|
|
|
|
UART0_REG(UART_REG_TXFIFO) = *s;
|
|
|
|
|
|
|
|
if (*s == '\n') {
|
|
|
|
while (UART0_REG(UART_REG_TXFIFO) & 0x80000000) ;
|
|
|
|
UART0_REG(UART_REG_TXFIFO) = '\r';
|
|
|
|
}
|
2024-01-13 23:06:01 +01:00
|
|
|
#endif
|
2023-09-30 20:31:58 +02:00
|
|
|
++s;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
weak_under_alias(puts);
|