8000 cc3200: Use the name MicroPython consistently in code. · lable/micropython@71173cd · GitHub
[go: up one dir, main page]

Skip to content

Commit 71173cd

Browse files
webmeisterdpgeorge
authored andcommitted
cc3200: Use the name MicroPython consistently in code.
In a few places the cc3200 port uses the incorrect spelling Micropython instead of MicroPython.
1 parent a6bec53 commit 71173cd

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

cc3200/ftp/ftp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ void ftp_run (void) {
335335
ftp_data.loggin.uservalid = false;
336336
ftp_data.loggin.passvalid = false;
337337
strcpy (ftp_path, "/");
338-
ftp_send_reply (220, "Micropython FTP Server");
338+
ftp_send_reply (220, "MicroPython FTP Server");
339339
break;
340340
}
341341
}

cc3200/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ int main (void) {
8989
#ifndef DEBUG
9090
OsiTaskHandle mpTaskHandle;
9191
#endif
92-
mpTaskHandle = xTaskCreateStatic(TASK_Micropython, "MicroPy",
92+
mpTaskHandle = xTaskCreateStatic(TASK_MicroPython, "MicroPy",
9393
MICROPY_TASK_STACK_LEN, NULL, MICROPY_TASK_PRIORITY, mpTaskStack, &mpTaskTCB);
9494
ASSERT(mpTaskHandle != NULL);
9595

cc3200/mptask.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ static const char fresh_boot_py[] = "# boot.py -- run on boot-up\r\n"
112112
DECLARE PUBLIC FUNCTIONS
113113
******************************************************************************/
114114

115-
void TASK_Micropython (void *pvParameters) {
115+
void TASK_MicroPython (void *pvParameters) {
116116
// get the top of the stack to initialize the garbage collector
117117
uint32_t sp = gc_helper_get_sp();
118118

cc3200/mptask.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ extern StackType_t mpTaskStack[];
4141
/******************************************************************************
4242
DECLARE PUBLIC FUNCTIONS
4343
******************************************************************************/
44-
extern void TASK_Micropython (void *pvParameters);
44+
extern void TASK_MicroPython (void *pvParameters);
4545

4646
#endif // MICROPY_INCLUDED_CC3200_MPTASK_H

0 commit comments

Comments
 (0)
0