summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/tiva/tiva_start.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/arm/src/tiva/tiva_start.c')
-rw-r--r--nuttx/arch/arm/src/tiva/tiva_start.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/nuttx/arch/arm/src/tiva/tiva_start.c b/nuttx/arch/arm/src/tiva/tiva_start.c
index ed6381554..ff0e7a10e 100644
--- a/nuttx/arch/arm/src/tiva/tiva_start.c
+++ b/nuttx/arch/arm/src/tiva/tiva_start.c
@@ -65,8 +65,6 @@
* Public Data
****************************************************************************/
-extern void _vectors(void);
-
/****************************************************************************
* Private Functions
****************************************************************************/
@@ -106,8 +104,12 @@ void __start(void)
/* Configure the uart so that we can get debug output as soon as possible */
+#ifdef CONFIG_ARCH_BOARD_CC3200_LAUNCHPAD
+ up_earlyconsoleinit();
+#else
up_clockconfig();
up_lowsetup();
+#endif
showprogress('A');
/* Clear .bss. We'll do this inline (vs. calling memset) just to be
@@ -163,7 +165,7 @@ void __start(void)
showprogress('\n');
os_start();
- /* Shoulnd't get here */
+ /* Shouldn't get here */
for (;;);
}