Navigation Menu

Skip to content

Commit

Permalink
all: Use the name MicroPython consistently in comments
Browse files Browse the repository at this point in the history
There were several different spellings of MicroPython present in comments,
when there should be only one.
  • Loading branch information
webmeister authored and dpgeorge committed Jul 31, 2017
1 parent bbced3b commit 55f3324
Show file tree
Hide file tree
Showing 433 changed files with 504 additions and 504 deletions.
2 changes: 1 addition & 1 deletion bare-arm/mpconfigport.h
@@ -1,6 +1,6 @@
#include <stdint.h>

// options to control how Micro Python is built
// options to control how MicroPython is built

#define MICROPY_QSTR_BYTES_IN_HASH (1)
#define MICROPY_ALLOC_PATH_MAX (512)
Expand Down
8 changes: 4 additions & 4 deletions cc3200/application.lds
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down Expand Up @@ -37,7 +37,7 @@ ENTRY(ResetISR)

SECTIONS
{
/* place the FreeRTOS heap (the micropython stack will live here) */
/* place the FreeRTOS heap (the MicroPython stack will live here) */
.rtos_heap (NOLOAD) :
{
. = ALIGN(8);
Expand Down Expand Up @@ -83,7 +83,7 @@ SECTIONS
} > SRAM

/* place here functions that are only called during boot up, */
/* that way, we can re-use this area for the micropython heap */
/* that way, we can re-use this area for the MicroPython heap */
.boot :
{
. = ALIGN(8);
Expand All @@ -93,7 +93,7 @@ SECTIONS
_eboot = .;
} > SRAM

/* allocate the micropython heap */
/* allocate the MicroPython heap */
.heap :
{
. = ALIGN(8);
Expand Down
2 changes: 1 addition & 1 deletion cc3200/boards/LAUNCHXL/mpconfigboard.h
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/boards/WIPY/mpconfigboard.h
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/boards/cc3200_prefix.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/bootmgr/bootmgr.h
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/bootmgr/bootmgr.lds
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/bootmgr/flc.h
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/bootmgr/main.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/ftp/ftp.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/ftp/ftp.h
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/ftp/updater.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/ftp/updater.h
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/hal/cc3200_asm.h
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/hal/cc3200_hal.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/hal/cc3200_hal.h
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/hal/fault_registers.h
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/main.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/misc/FreeRTOSHooks.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/misc/antenna.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/misc/antenna.h
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/misc/help.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/misc/mperror.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/misc/mperror.h
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/misc/mpexception.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/misc/mpexception.h
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
4 changes: 2 additions & 2 deletions cc3200/misc/mpirq.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down Expand Up @@ -143,7 +143,7 @@ void mp_irq_handler (mp_obj_t self_in) {
}

/******************************************************************************/
// Micro Python bindings
// MicroPython bindings

STATIC mp_obj_t mp_irq_init (mp_uint_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
mp_irq_obj_t *self = pos_args[0];
Expand Down
2 changes: 1 addition & 1 deletion cc3200/misc/mpirq.h
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
4 changes: 2 additions & 2 deletions cc3200/mods/modmachine.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down Expand Up @@ -72,7 +72,7 @@ extern OsiTaskHandle xSimpleLinkSpawnTaskHndl;
///

/******************************************************************************/
// Micro Python bindings;
// MicroPython bindings;

STATIC mp_obj_t machine_reset(void) {
// disable wlan
Expand Down
2 changes: 1 addition & 1 deletion cc3200/mods/modnetwork.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/mods/modnetwork.h
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
4 changes: 2 additions & 2 deletions cc3200/mods/modubinascii.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down Expand Up @@ -44,7 +44,7 @@


/******************************************************************************/
// Micro Python bindings
// MicroPython bindings

STATIC const mp_map_elem_t mp_module_binascii_globals_table[] = {
{ MP_OBJ_NEW_QSTR(MP_QSTR___name__), MP_OBJ_NEW_QSTR(MP_QSTR_ubinascii) },
Expand Down
2 changes: 1 addition & 1 deletion cc3200/mods/modubinascii.h
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
4 changes: 2 additions & 2 deletions cc3200/mods/moduhashlib.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down Expand Up @@ -117,7 +117,7 @@ STATIC mp_obj_t hash_read (mp_obj_t self_in) {
}

/******************************************************************************/
// Micro Python bindings
// MicroPython bindings

/// \classmethod \constructor([data[, block_size]])
/// initial data must be given if block_size wants to be passed
Expand Down
4 changes: 2 additions & 2 deletions cc3200/mods/moduos.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down Expand Up @@ -78,7 +78,7 @@ void osmount_unmount_all (void) {
}

/******************************************************************************/
// Micro Python bindings
// MicroPython bindings
//

STATIC const qstr os_uname_info_fields[] = {
Expand Down
2 changes: 1 addition & 1 deletion cc3200/mods/moduos.h
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/mods/modusocket.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
2 changes: 1 addition & 1 deletion cc3200/mods/modusocket.h
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down
4 changes: 2 additions & 2 deletions cc3200/mods/modussl.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down Expand Up @@ -57,7 +57,7 @@ typedef struct _mp_obj_ssl_socket_t {
STATIC const mp_obj_type_t ssl_socket_type;

/******************************************************************************/
// Micro Python bindings; SSL class
// MicroPython bindings; SSL class

// ssl sockets inherit from normal socket, so we take its
// locals and stream methods
Expand Down
4 changes: 2 additions & 2 deletions cc3200/mods/modutime.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down Expand Up @@ -51,7 +51,7 @@
/// and for sleeping.

/******************************************************************************/
// Micro Python bindings
// MicroPython bindings

/// \function localtime([secs])
/// Convert a time expressed in seconds since Jan 1, 2000 into an 8-tuple which
Expand Down
2 changes: 1 addition & 1 deletion cc3200/mods/modwipy.c
Expand Up @@ -5,7 +5,7 @@


/******************************************************************************/
// Micro Python bindings
// MicroPython bindings

STATIC mp_obj_t mod_wipy_heartbeat (mp_uint_t n_args, const mp_obj_t *args) {
if (n_args) {
Expand Down
4 changes: 2 additions & 2 deletions cc3200/mods/modwlan.c
@@ -1,5 +1,5 @@
/*
* This file is part of the Micro Python project, http://micropython.org/
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
Expand Down Expand Up @@ -763,7 +763,7 @@ STATIC bool wlan_scan_result_is_unique (const mp_obj_list_t *nets, _u8 *bssid) {
}

/******************************************************************************/
// Micro Python bindings; WLAN class
// MicroPython bindings; WLAN class

/// \class WLAN - WiFi driver

Expand Down

0 comments on commit 55f3324

Please sign in to comment.