cc3200: Use the name MicroPython consistently in code.
In a few places the cc3200 port uses the incorrect spelling Micropython instead of MicroPython.
This commit is contained in:
parent
a6bec53177
commit
71173cd57d
@ -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;
|
||||
}
|
||||
}
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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();
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user