Skip to content

Commit

Permalink
cc3200: Use the name MicroPython consistently in code.
Browse files Browse the repository at this point in the history
In a few places the cc3200 port uses the incorrect spelling Micropython
instead of MicroPython.
  • Loading branch information
webmeister authored and dpgeorge committed Jul 21, 2017
1 parent a6bec53 commit 71173cd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cc3200/ftp/ftp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down
2 changes: 1 addition & 1 deletion cc3200/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion cc3200/mptask.c
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down
2 changes: 1 addition & 1 deletion cc3200/mptask.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 71173cd

Please sign in to comment.