summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--cc3200/ftp/ftp.c2
-rw-r--r--cc3200/main.c2
-rw-r--r--cc3200/mptask.c2
-rw-r--r--cc3200/mptask.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/cc3200/ftp/ftp.c b/cc3200/ftp/ftp.c
index 1febe291f9..b56e3f4ce5 100644
--- a/cc3200/ftp/ftp.c
+++ b/cc3200/ftp/ftp.c
@@ -335,7 +335,7 @@ void ftp_run (void) {
ftp_data.loggin.uservalid = false;
ftp_data.loggin.passvalid = false;
strcpy (ftp_path, "/");
- ftp_send_reply (220, "Micropython FTP Server");
+ ftp_send_reply (220, "MicroPython FTP Server");
break;
}
}
diff --git a/cc3200/main.c b/cc3200/main.c
index 7c6c4b545d..1ffb981880 100644
--- a/cc3200/main.c
+++ b/cc3200/main.c
@@ -89,7 +89,7 @@ int main (void) {
#ifndef DEBUG
OsiTaskHandle mpTaskHandle;
#endif
- mpTaskHandle = xTaskCreateStatic(TASK_Micropython, "MicroPy",
+ mpTaskHandle = xTaskCreateStatic(TASK_MicroPython, "MicroPy",
MICROPY_TASK_STACK_LEN, NULL, MICROPY_TASK_PRIORITY, mpTaskStack, &mpTaskTCB);
ASSERT(mpTaskHandle != NULL);
diff --git a/cc3200/mptask.c b/cc3200/mptask.c
index d446711a29..50c3c769da 100644
--- a/cc3200/mptask.c
+++ b/cc3200/mptask.c
@@ -112,7 +112,7 @@ static const char fresh_boot_py[] = "# boot.py -- run on boot-up\r\n"
DECLARE PUBLIC FUNCTIONS
******************************************************************************/
-void TASK_Micropython (void *pvParameters) {
+void TASK_MicroPython (void *pvParameters) {
// get the top of the stack to initialize the garbage collector
uint32_t sp = gc_helper_get_sp();
diff --git a/cc3200/mptask.h b/cc3200/mptask.h
index 9276cfc3ed..5345ecfda4 100644
--- a/cc3200/mptask.h
+++ b/cc3200/mptask.h
@@ -41,6 +41,6 @@ extern StackType_t mpTaskStack[];
/******************************************************************************
DECLARE PUBLIC FUNCTIONS
******************************************************************************/
-extern void TASK_Micropython (void *pvParameters);
+extern void TASK_MicroPython (void *pvParameters);
#endif // MICROPY_INCLUDED_CC3200_MPTASK_H