summaryrefslogtreecommitdiff
path: root/source/hal/profiles
diff options
context:
space:
mode:
Diffstat (limited to 'source/hal/profiles')
-rw-r--r--source/hal/profiles/bare-metal/bsp/retarget.c9
-rw-r--r--source/hal/profiles/bare-metal/data_acquisition/data_acq.c2
2 files changed, 9 insertions, 2 deletions
diff --git a/source/hal/profiles/bare-metal/bsp/retarget.c b/source/hal/profiles/bare-metal/bsp/retarget.c
index 9ed3004..ac9b282 100644
--- a/source/hal/profiles/bare-metal/bsp/retarget.c
+++ b/source/hal/profiles/bare-metal/bsp/retarget.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021 Arm Limited. All rights reserved.
+ * Copyright (c) 2022 Arm Limited. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -64,6 +64,13 @@ const char __stdin_name[] __attribute__((aligned(4))) = "STDIN";
const char __stdout_name[] __attribute__((aligned(4))) = "STDOUT";
const char __stderr_name[] __attribute__((aligned(4))) = "STDERR";
+__attribute__((noreturn)) static void UartEndSimulation(int code)
+{
+ UartPutc((char) 0x4); // End of simulation
+ UartPutc((char) code); // Exit code
+ while(1);
+}
+
void _ttywrch(int ch) {
(void)fputc(ch, stdout);
}
diff --git a/source/hal/profiles/bare-metal/data_acquisition/data_acq.c b/source/hal/profiles/bare-metal/data_acquisition/data_acq.c
index b7eba2d..84d80a6 100644
--- a/source/hal/profiles/bare-metal/data_acquisition/data_acq.c
+++ b/source/hal/profiles/bare-metal/data_acquisition/data_acq.c
@@ -32,7 +32,7 @@
**/
static int get_uart_user_input(char* user_input, int size)
{
- if (true != GetLine(user_input, size - 1)) {
+ if (1 != GetLine(user_input, size - 1)) {
return 1;
}
return 0;