summaryrefslogtreecommitdiffstatshomepage
path: root/cc3200/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'cc3200/main.c')
-rw-r--r--cc3200/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc3200/main.c b/cc3200/main.c
index d65fc240fc..e38fd37286 100644
--- a/cc3200/main.c
+++ b/cc3200/main.c
@@ -59,6 +59,7 @@ OsiTaskHandle mpTaskHandle;
DEFINE PUBLIC FUNCTIONS
******************************************************************************/
+__attribute__ ((section (".boot")))
int main (void) {
// Initialize the clocks and the interrupt system
@@ -82,7 +83,6 @@ int main (void) {
for ( ; ; );
}
-
void stoupper (char *str) {
while (str && *str != '\0') {
*str = (char)toupper((int)(*str));