summaryrefslogtreecommitdiff
path: root/nuttx/configs/mikroe-stm32f4/src/up_boot.c
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-04-30 18:31:47 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-04-30 18:31:47 -0600
commitcc5ee148cf3e87f8f7d78bb09612f3876a7ee3a8 (patch)
treeeb987a4914c3536d3825cee69f0eb112765b57c4 /nuttx/configs/mikroe-stm32f4/src/up_boot.c
parent74a16b2ced4a5884d45b9b6d756a690ce1d8c6c0 (diff)
downloadpx4-nuttx-cc5ee148cf3e87f8f7d78bb09612f3876a7ee3a8.tar.gz
px4-nuttx-cc5ee148cf3e87f8f7d78bb09612f3876a7ee3a8.tar.bz2
px4-nuttx-cc5ee148cf3e87f8f7d78bb09612f3876a7ee3a8.zip
Add support for the MikroElektronika Mikromedia for STM32F4 development board. From Ken Petit
Diffstat (limited to 'nuttx/configs/mikroe-stm32f4/src/up_boot.c')
-rw-r--r--nuttx/configs/mikroe-stm32f4/src/up_boot.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/nuttx/configs/mikroe-stm32f4/src/up_boot.c b/nuttx/configs/mikroe-stm32f4/src/up_boot.c
index 1c7cd5b80..4fd18f729 100644
--- a/nuttx/configs/mikroe-stm32f4/src/up_boot.c
+++ b/nuttx/configs/mikroe-stm32f4/src/up_boot.c
@@ -2,7 +2,7 @@
* configs/mikroe_stm32f4/src/up_boot.c
* arch/arm/src/board/up_boot.c
*
- * Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2011-2013 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -83,7 +83,7 @@ void stm32_boardinitialize(void)
#endif
/* Initialize USB if the 1) OTG FS controller is in the configuration and 2)
- * disabled, and 3) the weak function stm32_usbinitialize() has been brought
+ * disabled, and 3) the weak function stm32_usbinitialize() has been brought
* into the build. Presumeably either CONFIG_USBDEV or CONFIG_USBHOST is also
* selected.
*/
@@ -94,5 +94,4 @@ void stm32_boardinitialize(void)
stm32_usbinitialize();
}
#endif
-
}