summaryrefslogtreecommitdiff
path: root/source/hal/profiles/bare-metal/bsp/retarget.c
diff options
context:
space:
mode:
authorKshitij Sisodia <kshitij.sisodia@arm.com>2022-03-03 16:30:07 +0000
committerIsabella Gottardi <isabella.gottardi@arm.com>2022-03-04 11:09:15 +0000
commitd5679cc8db0a6ab43369eb91089ea5fe015f552f (patch)
tree4477b3f1e5b5a70066d958d98e61ba6e5a183bb5 /source/hal/profiles/bare-metal/bsp/retarget.c
parentb4123fd715e41070be5bb39600625c740185f562 (diff)
downloadml-embedded-evaluation-kit-d5679cc8db0a6ab43369eb91089ea5fe015f552f.tar.gz
MLECO-2984: Refactor components
* Use UART component from Ethos-U core-platform * Components as cmake project Change-Id: I053f3a59800abc20216e6a4df8555db357e3f21d Signed-off-by: Isabella Gottardi <isabella.gottardi@arm.com>
Diffstat (limited to 'source/hal/profiles/bare-metal/bsp/retarget.c')
-rw-r--r--source/hal/profiles/bare-metal/bsp/retarget.c9
1 files changed, 8 insertions, 1 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);
}