2 Commits

Author SHA1 Message Date
eyck ac45dc11a3 fixes dhrystone make settings 2025-02-14 11:30:57 +01:00
alex ea32dd9ce3 adds BOARD_tgc_vp check to coremark send_char 2025-01-07 22:31:46 +01:00
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -664,7 +664,7 @@ ee_vsprintf(char *buf, const char *fmt, va_list args)
void
uart_send_char(char c)
{
#if defined(BOARD_ehrenberg)
#if defined(BOARD_ehrenberg) || defined(BOARD_tgc_vp)
while (get_uart_rx_tx_reg_tx_free(uart)==0) ;
uart_write(uart, c);
if (c == '\n') {
+1
View File
@@ -17,6 +17,7 @@ endif
# '-lgcc -lm' are needed to add softfloat routines
CFLAGS := -g -O3 -DITERATIONS=$(ITERATIONS) -DHZ=32768 -DTIME -DNO_INIT -fno-inline -fno-builtin-printf -fno-common -Wno-implicit \
-funroll-loops -fpeel-loops -fgcse-sm -fgcse-las
LDFLAGS := -Wl,--wrap=scanf
TOOL_DIR=$(dir $(compiler))