all: Fix various spelling mistakes found by codespell 2.2.6.
Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
parent
9d5d2e8cf7
commit
cf490a7091
@ -287,7 +287,7 @@ after reboot/reset). This reduces the reliability of receiving ESP-NOW messages
|
|||||||
|
|
||||||
.. method:: ESPNow.irecv([timeout_ms])
|
.. method:: ESPNow.irecv([timeout_ms])
|
||||||
|
|
||||||
Works like `ESPNow.recv()` but will re-use internal bytearrays to store the
|
Works like `ESPNow.recv()` but will reuse internal bytearrays to store the
|
||||||
return values: ``[mac, msg]``, so that no new memory is allocated on each
|
return values: ``[mac, msg]``, so that no new memory is allocated on each
|
||||||
call.
|
call.
|
||||||
|
|
||||||
|
@ -251,7 +251,7 @@ controlling its operation:
|
|||||||
|
|
||||||
.. method:: WM8960.expand_3d(level)
|
.. method:: WM8960.expand_3d(level)
|
||||||
|
|
||||||
Enable Stereo 3D exansion. *level* is a number between 0 and 15.
|
Enable Stereo 3D expansion. *level* is a number between 0 and 15.
|
||||||
A value of 0 disables the expansion.
|
A value of 0 disables the expansion.
|
||||||
|
|
||||||
.. method:: WM8960.mono(active)
|
.. method:: WM8960.mono(active)
|
||||||
|
@ -32,7 +32,7 @@ Glossary
|
|||||||
|
|
||||||
callee-owned tuple
|
callee-owned tuple
|
||||||
This is a MicroPython-specific construct where, for efficiency
|
This is a MicroPython-specific construct where, for efficiency
|
||||||
reasons, some built-in functions or methods may re-use the same
|
reasons, some built-in functions or methods may reuse the same
|
||||||
underlying tuple object to return data. This avoids having to allocate
|
underlying tuple object to return data. This avoids having to allocate
|
||||||
a new tuple for every call, and reduces heap fragmentation. Programs
|
a new tuple for every call, and reduces heap fragmentation. Programs
|
||||||
should not hold references to callee-owned tuples and instead only
|
should not hold references to callee-owned tuples and instead only
|
||||||
|
@ -3,7 +3,7 @@ This directory shows the best practices for using MicroPython hardware API
|
|||||||
across various boards, with the aim to enable writing portable applications,
|
across various boards, with the aim to enable writing portable applications,
|
||||||
which would work from a board to board, from a system to another systems.
|
which would work from a board to board, from a system to another systems.
|
||||||
This is inherently a hard problem, because hardware is different from one
|
This is inherently a hard problem, because hardware is different from one
|
||||||
board type to another, and even from examplar of board to another. For
|
board type to another, and even from exemplar of board to another. For
|
||||||
example, if your app requires an external LED, one user may connect it
|
example, if your app requires an external LED, one user may connect it
|
||||||
to one GPIO pin, while another user may find it much more convenient to
|
to one GPIO pin, while another user may find it much more convenient to
|
||||||
use another pin. This of course applies to relays, buzzers, sensors, etc.
|
use another pin. This of course applies to relays, buzzers, sensors, etc.
|
||||||
|
@ -504,7 +504,7 @@ STATIC int bluetooth_gatts_register_service(mp_obj_t uuid_in, mp_obj_t character
|
|||||||
// How many descriptors in the flattened list per characteristic.
|
// How many descriptors in the flattened list per characteristic.
|
||||||
uint8_t *num_descriptors = m_new(uint8_t, len);
|
uint8_t *num_descriptors = m_new(uint8_t, len);
|
||||||
|
|
||||||
// Inititally allocate enough room for the number of characteristics.
|
// Initially allocate enough room for the number of characteristics.
|
||||||
// Will be grown to accommodate descriptors as necessary.
|
// Will be grown to accommodate descriptors as necessary.
|
||||||
*num_handles = len;
|
*num_handles = len;
|
||||||
*handles = m_new(uint16_t, *num_handles);
|
*handles = m_new(uint16_t, *num_handles);
|
||||||
|
@ -1856,7 +1856,7 @@ int mp_bluetooth_l2cap_recvinto(uint16_t conn_handle, uint16_t cid, uint8_t *buf
|
|||||||
// re-enable receiving yet (as we need to complete the rest of IRQ handler first).
|
// re-enable receiving yet (as we need to complete the rest of IRQ handler first).
|
||||||
if (!chan->irq_in_progress) {
|
if (!chan->irq_in_progress) {
|
||||||
// We've already given the channel a new mbuf in l2cap_channel_event above, so
|
// We've already given the channel a new mbuf in l2cap_channel_event above, so
|
||||||
// re-use that mbuf in the call to ble_l2cap_recv_ready. This will just
|
// reuse that mbuf in the call to ble_l2cap_recv_ready. This will just
|
||||||
// give the channel more credits.
|
// give the channel more credits.
|
||||||
struct os_mbuf *sdu_rx = chan->chan->coc_rx.sdu;
|
struct os_mbuf *sdu_rx = chan->chan->coc_rx.sdu;
|
||||||
assert(sdu_rx);
|
assert(sdu_rx);
|
||||||
|
@ -83,7 +83,7 @@ SECTIONS
|
|||||||
} > SRAM
|
} > SRAM
|
||||||
|
|
||||||
/* place here functions that are only called during boot up, */
|
/* 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 reuse this area for the MicroPython heap */
|
||||||
.boot :
|
.boot :
|
||||||
{
|
{
|
||||||
. = ALIGN(8);
|
. = ALIGN(8);
|
||||||
|
@ -363,7 +363,7 @@ DRESULT sd_disk_read (BYTE* pBuffer, DWORD ulSectorNumber, UINT SectorCount) {
|
|||||||
|
|
||||||
//*****************************************************************************
|
//*****************************************************************************
|
||||||
//
|
//
|
||||||
//! Wrties sector(s) to the disk drive.
|
//! Writes sector(s) to the disk drive.
|
||||||
//!
|
//!
|
||||||
//!
|
//!
|
||||||
//! This function writes specified number of sectors to the drive
|
//! This function writes specified number of sectors to the drive
|
||||||
|
@ -536,7 +536,7 @@ SRC_QSTR += $(SRC_C) $(SRC_SHARED_C) $(DRIVERS_SRC_C) $(SRC_BOARD_MODULES)
|
|||||||
# SRC_QSTR
|
# SRC_QSTR
|
||||||
SRC_QSTR_AUTO_DEPS +=
|
SRC_QSTR_AUTO_DEPS +=
|
||||||
|
|
||||||
# Making OBJ use an order-only depenedency on the generated pins.h file
|
# Making OBJ use an order-only dependency on the generated pins.h file
|
||||||
# has the side effect of making the pins.h file before we actually compile
|
# has the side effect of making the pins.h file before we actually compile
|
||||||
# any of the objects. The normal dependency generation will deal with the
|
# any of the objects. The normal dependency generation will deal with the
|
||||||
# case when pins.h is modified. But when it doesn't exist, we don't know
|
# case when pins.h is modified. But when it doesn't exist, we don't know
|
||||||
|
@ -942,7 +942,7 @@ static void sd_evt_handler(uint32_t evt_id) {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
#if MICROPY_HW_USB_CDC
|
#if MICROPY_HW_USB_CDC
|
||||||
// Farward SOC events to USB CDC driver.
|
// Forward SOC events to USB CDC driver.
|
||||||
usb_cdc_sd_event_handler(evt_id);
|
usb_cdc_sd_event_handler(evt_id);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -664,7 +664,7 @@ SRC_QSTR += $(SRC_C) $(SRC_CXX) $(SHARED_SRC_C)
|
|||||||
# SRC_QSTR
|
# SRC_QSTR
|
||||||
SRC_QSTR_AUTO_DEPS += $(GEN_CDCINF_HEADER)
|
SRC_QSTR_AUTO_DEPS += $(GEN_CDCINF_HEADER)
|
||||||
|
|
||||||
# Making OBJ use an order-only depenedency on the generated pins.h file
|
# Making OBJ use an order-only dependency on the generated pins.h file
|
||||||
# has the side effect of making the pins.h file before we actually compile
|
# has the side effect of making the pins.h file before we actually compile
|
||||||
# any of the objects. The normal dependency generation will deal with the
|
# any of the objects. The normal dependency generation will deal with the
|
||||||
# case when pins.h is modified. But when it doesn't exist, we don't know
|
# case when pins.h is modified. But when it doesn't exist, we don't know
|
||||||
|
@ -605,7 +605,7 @@ STATIC void pyb_timer_print(const mp_print_t *print, mp_obj_t self_in, mp_print_
|
|||||||
/// - `mode` can be one of:
|
/// - `mode` can be one of:
|
||||||
/// - `Timer.UP` - configures the timer to count from 0 to ARR (default)
|
/// - `Timer.UP` - configures the timer to count from 0 to ARR (default)
|
||||||
/// - `Timer.DOWN` - configures the timer to count from ARR down to 0.
|
/// - `Timer.DOWN` - configures the timer to count from ARR down to 0.
|
||||||
/// - `Timer.CENTER` - confgures the timer to count from 0 to ARR and
|
/// - `Timer.CENTER` - configures the timer to count from 0 to ARR and
|
||||||
/// then back down to 0.
|
/// then back down to 0.
|
||||||
///
|
///
|
||||||
/// - `div` can be one of 1, 2, or 4. Divides the timer clock to determine
|
/// - `div` can be one of 1, 2, or 4. Divides the timer clock to determine
|
||||||
|
@ -214,7 +214,7 @@ SRC_QSTR += $(SRC_C) $(STM_SRC_C) $(SHARED_SRC_C)
|
|||||||
# SRC_QSTR
|
# SRC_QSTR
|
||||||
SRC_QSTR_AUTO_DEPS +=
|
SRC_QSTR_AUTO_DEPS +=
|
||||||
|
|
||||||
# Making OBJ use an order-only depenedency on the generated pins.h file
|
# Making OBJ use an order-only dependency on the generated pins.h file
|
||||||
# has the side effect of making the pins.h file before we actually compile
|
# has the side effect of making the pins.h file before we actually compile
|
||||||
# any of the objects. The normal dependency generation will deal with the
|
# any of the objects. The normal dependency generation will deal with the
|
||||||
# case when pins.h is modified. But when it doesn't exist, we don't know
|
# case when pins.h is modified. But when it doesn't exist, we don't know
|
||||||
|
@ -225,7 +225,7 @@ STATIC void pyb_timer_print(const mp_print_t *print, mp_obj_t self_in, mp_print_
|
|||||||
///
|
///
|
||||||
/// - `mode` can be one of:
|
/// - `mode` can be one of:
|
||||||
/// - `Timer.UP` - configures the timer to count from 0 to MOD (default)
|
/// - `Timer.UP` - configures the timer to count from 0 to MOD (default)
|
||||||
/// - `Timer.CENTER` - confgures the timer to count from 0 to MOD and
|
/// - `Timer.CENTER` - configures the timer to count from 0 to MOD and
|
||||||
/// then back down to 0.
|
/// then back down to 0.
|
||||||
///
|
///
|
||||||
/// - `callback` - as per Timer.callback()
|
/// - `callback` - as per Timer.callback()
|
||||||
|
@ -230,7 +230,7 @@ int mp_format_float(FPTYPE f, char *buf, size_t buf_size, char fmt, int prec, ch
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Build positive exponent.
|
// Build positive exponent.
|
||||||
// We don't modify f at this point to avoid innaccuracies from
|
// We don't modify f at this point to avoid inaccuracies from
|
||||||
// scaling it. Instead, we find the product of powers of 10
|
// scaling it. Instead, we find the product of powers of 10
|
||||||
// that is not greater than it, and use that to start the
|
// that is not greater than it, and use that to start the
|
||||||
// mantissa.
|
// mantissa.
|
||||||
|
@ -22,7 +22,7 @@ endif
|
|||||||
|
|
||||||
# QSTR generation uses the same CFLAGS, with these modifications.
|
# QSTR generation uses the same CFLAGS, with these modifications.
|
||||||
QSTR_GEN_FLAGS = -DNO_QSTR
|
QSTR_GEN_FLAGS = -DNO_QSTR
|
||||||
# Note: := to force evalulation immediately.
|
# Note: := to force evaluation immediately.
|
||||||
QSTR_GEN_CFLAGS := $(CFLAGS)
|
QSTR_GEN_CFLAGS := $(CFLAGS)
|
||||||
QSTR_GEN_CFLAGS += $(QSTR_GEN_FLAGS)
|
QSTR_GEN_CFLAGS += $(QSTR_GEN_FLAGS)
|
||||||
QSTR_GEN_CXXFLAGS := $(CXXFLAGS)
|
QSTR_GEN_CXXFLAGS := $(CXXFLAGS)
|
||||||
|
@ -1136,7 +1136,7 @@ typedef double mp_float_t;
|
|||||||
#define MICROPY_PY_BUILTINS_RANGE_BINOP (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EVERYTHING)
|
#define MICROPY_PY_BUILTINS_RANGE_BINOP (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EVERYTHING)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for callling next() with second argument
|
// Support for calling next() with second argument
|
||||||
#ifndef MICROPY_PY_BUILTINS_NEXT2
|
#ifndef MICROPY_PY_BUILTINS_NEXT2
|
||||||
#define MICROPY_PY_BUILTINS_NEXT2 (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EVERYTHING)
|
#define MICROPY_PY_BUILTINS_NEXT2 (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EVERYTHING)
|
||||||
#endif
|
#endif
|
||||||
@ -1155,13 +1155,13 @@ typedef double mp_float_t;
|
|||||||
#define MICROPY_PY_ALL_SPECIAL_METHODS (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
#define MICROPY_PY_ALL_SPECIAL_METHODS (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Whether to support all inplace arithmetic operarion methods
|
// Whether to support all inplace arithmetic operation methods
|
||||||
// (__imul__, etc.)
|
// (__imul__, etc.)
|
||||||
#ifndef MICROPY_PY_ALL_INPLACE_SPECIAL_METHODS
|
#ifndef MICROPY_PY_ALL_INPLACE_SPECIAL_METHODS
|
||||||
#define MICROPY_PY_ALL_INPLACE_SPECIAL_METHODS (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EVERYTHING)
|
#define MICROPY_PY_ALL_INPLACE_SPECIAL_METHODS (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EVERYTHING)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Whether to support reverse arithmetic operarion methods
|
// Whether to support reverse arithmetic operation methods
|
||||||
// (__radd__, etc.). Additionally gated by
|
// (__radd__, etc.). Additionally gated by
|
||||||
// MICROPY_PY_ALL_SPECIAL_METHODS.
|
// MICROPY_PY_ALL_SPECIAL_METHODS.
|
||||||
#ifndef MICROPY_PY_REVERSE_SPECIAL_METHODS
|
#ifndef MICROPY_PY_REVERSE_SPECIAL_METHODS
|
||||||
|
2
py/obj.c
2
py/obj.c
@ -286,7 +286,7 @@ mp_obj_t mp_obj_equal_not_equal(mp_binary_op_t op, mp_obj_t o1, mp_obj_t o2) {
|
|||||||
o2 = temp;
|
o2 = temp;
|
||||||
}
|
}
|
||||||
|
|
||||||
// equality not implemented, so fall back to pointer conparison
|
// equality not implemented, so fall back to pointer comparison
|
||||||
return (o1 == o2) ? local_true : local_false;
|
return (o1 == o2) ? local_true : local_false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ line-length = 99
|
|||||||
[tool.codespell]
|
[tool.codespell]
|
||||||
count = ""
|
count = ""
|
||||||
ignore-regex = '\b[A-Z]{3}\b'
|
ignore-regex = '\b[A-Z]{3}\b'
|
||||||
ignore-words-list = "ans,asend,deques,dout,extint,hsi,iput,mis,numer,technic,ure"
|
ignore-words-list = "ans,asend,deques,dout,extint,hsi,iput,mis,numer,shft,technic,ure"
|
||||||
quiet-level = 3
|
quiet-level = 3
|
||||||
skip = """
|
skip = """
|
||||||
*/build*,\
|
*/build*,\
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
DFU, without requiring dfu-util.
|
DFU, without requiring dfu-util.
|
||||||
|
|
||||||
See app note AN3156 for a description of the DFU protocol.
|
See app note AN3156 for a description of the DFU protocol.
|
||||||
See document UM0391 for a dscription of the DFuse file.
|
See document UM0391 for a description of the DFuse file.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
Loading…
Reference in New Issue
Block a user