aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGurjant Kalsi <me@gurjantkalsi.com>2015-09-22 16:02:20 -0700
committerGurjant Kalsi <me@gurjantkalsi.com>2015-10-12 16:38:51 -0700
commitdc079d732748847709a716ad48147b5490fd24ed (patch)
treee6c2423279004f8b6563d2e55097257b69cdddc6 /app
parent39662cace8516e71e10e4e958c29e6b1177cf800 (diff)
downloadcommon-dc079d732748847709a716ad48147b5490fd24ed.tar.gz
[console][uart][shell] Created a crash-time shell and a polling based UART driver to use on panic.
Diffstat (limited to 'app')
-rw-r--r--app/tests/mem_tests.c2
-rw-r--r--app/tests/printf_tests.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/app/tests/mem_tests.c b/app/tests/mem_tests.c
index 9c11d6c8..fdd14fe1 100644
--- a/app/tests/mem_tests.c
+++ b/app/tests/mem_tests.c
@@ -28,6 +28,7 @@
#include <arch/ops.h>
#include <lib/console.h>
#include <platform.h>
+#include <debug.h>
#if WITH_KERNEL_VM
#include <kernel/vm.h>
@@ -239,4 +240,3 @@ usage:
STATIC_COMMAND_START
STATIC_COMMAND("mem_test", "test memory", &mem_test)
STATIC_COMMAND_END(mem_tests);
-
diff --git a/app/tests/printf_tests.c b/app/tests/printf_tests.c
index fc2fb1fa..e3b55bff 100644
--- a/app/tests/printf_tests.c
+++ b/app/tests/printf_tests.c
@@ -23,6 +23,7 @@
#include <app/tests.h>
#include <stdio.h>
#include <string.h>
+#include <debug.h>
void printf_tests(void)
{