2020-06-18 12:15:52 +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"
|
2023-09-28 11:51:20 +02:00
|
|
|
#include "weak_under_alias.h"
|
2020-06-18 12:15:52 +02:00
|
|
|
ssize_t __wrap_write(int fd, const void* ptr, size_t len)
|
|
|
|
{
|
2024-01-13 23:06:01 +01:00
|
|
|
const uint8_t * current = (const uint8_t *)ptr;
|
|
|
|
if (isatty(fd)) {
|
|
|
|
for (size_t jj = 0; jj < len; jj++) {
|
|
|
|
#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, current[jj]);
|
|
|
|
if (current[jj] == '\n') {
|
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, '\r');
|
|
|
|
}
|
2024-01-27 16:54:25 +01:00
|
|
|
#elif defined(BOARD_iss)
|
|
|
|
*((uint32_t*) 0xFFFF0000) = current[jj];
|
2024-03-02 16:08:42 +01:00
|
|
|
#elif defined(BOARD_TGCP)
|
2024-01-27 16:54:25 +01:00
|
|
|
//TODO: implement
|
2024-01-13 23:06:01 +01:00
|
|
|
#else
|
|
|
|
while (UART0_REG(UART_REG_TXFIFO) & 0x80000000) ;
|
|
|
|
UART0_REG(UART_REG_TXFIFO) = current[jj];
|
2020-06-18 12:15:52 +02:00
|
|
|
|
2024-01-13 23:06:01 +01:00
|
|
|
if (current[jj] == '\n') {
|
|
|
|
while (UART0_REG(UART_REG_TXFIFO) & 0x80000000) ;
|
|
|
|
UART0_REG(UART_REG_TXFIFO) = '\r';
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return len;
|
2020-06-18 12:15:52 +02:00
|
|
|
}
|
|
|
|
|
2024-01-13 23:06:01 +01:00
|
|
|
return _stub(EBADF);
|
2020-06-18 12:15:52 +02:00
|
|
|
}
|
2023-09-28 11:51:20 +02:00
|
|
|
weak_under_alias(write);
|