Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Various typos #198

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions MicroPython_BUILD/BUILD.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
# -a <app_size> | --appsize=<app_size> - declare the size of application partition in KB
# default: auto detect needed size
# the actual size will be 128 KB smaller then the declared size
# -p <comm_port> | --port=<comm_port> - overwritte configured comm port, use the specified instead
# -b <bdrate> | --bdrate=<bdrate> - overwritte configured baud rate, use the specified instead
# -p <comm_port> | --port=<comm_port> - overwrite configured comm port, use the specified instead
# -b <bdrate> | --bdrate=<bdrate> - overwrite configured baud rate, use the specified instead

# Note:
# Multiple options and commands can be given
Expand Down
6 changes: 3 additions & 3 deletions MicroPython_BUILD/build_func.sh
Original file line number Diff line number Diff line change
Expand Up @@ -361,9 +361,9 @@ check_Environment() {


cd Tools
# -----------------------------------------
# _psram directories are not needed anymore
# -----------------------------------------
# ------------------------------------------
# _psram directories are not needed any more
# ------------------------------------------
if [ -d "esp-idf_psram" ]; then
rm -rf esp-idf_psram/ > /dev/null 2>&1
rmdir esp-idf_psram > /dev/null 2>&1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Demo program demonstrating the capabities of the MicroPython display module
Demo program demonstrating the capabilities of the MicroPython display module
Author: LoBo (https://github/loboris)
Date: 08/10/2017

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def thrainbow():
machine.heap_info()
_thread.list()

# Set neopixel brightnes (%)
# Set neopixel brightness (%)
#_thread.notify(npth, 20)
# Get counter value from Neopixel thread
#_thread.notify(npth, 1000)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def transfer(pin_ss, address, value = 0x00):
pin_ss.low()

spi.write(bytes([address])) # write register address
spi.write_readinto(bytes([value]), response) # write or read register walue
spi.write_readinto(bytes([value]), response) # write or read register value
#spi.write_readinto(bytes([address]), response)

pin_ss.high()
Expand Down
2 changes: 1 addition & 1 deletion MicroPython_BUILD/components/micropython/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

**MicroPython core** is synchronized with [main MicroPython repository](https://github.com/micropython/micropython)

**Commit:** bcfff4fc98a73c5ad9b7d3e338649955e861ada4
**Commit:** [bcfff4fc98a73c5ad9b7d3e338649955e861ada4](https://github.com/micropython/micropython/commit/bcfff4fc98a73c5ad9b7d3e338649955e861ada4)

<br>

Expand Down
2 changes: 1 addition & 1 deletion MicroPython_BUILD/components/micropython/esp32/libs/ftp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1173,7 +1173,7 @@ int ftp_run (uint32_t elapsed)
ftp_data.loggin.passvalid = false;
strcpy (ftp_path, "/");
ESP_LOGI(FTP_TAG, "Connected.");
ftp_send_reply (220, "Micropython FTP Server");
ftp_send_reply (220, "MicroPython FTP Server");
break;
}
}
Expand Down
6 changes: 3 additions & 3 deletions MicroPython_BUILD/components/micropython/esp32/libs/tft/tft.c
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ void TFT_drawFastHLine(int16_t x, int16_t y, int16_t w, color_t color) {
}

// Bresenham's algorithm - thx wikipedia - speed enhanced by Bodmer this uses
// the eficient FastH/V Line draw routine for segments of 2 pixels or more
// the efficient FastH/V Line draw routine for segments of 2 pixels or more
//----------------------------------------------------------------------------------
static void _drawLine(int16_t x0, int16_t y0, int16_t x1, int16_t y1, color_t color)
{
Expand Down Expand Up @@ -2304,7 +2304,7 @@ static UINT tjd_input (
// Device identifier for the session (5th argument of jd_prepare function)
JPGIODEV *dev = (JPGIODEV*)jd->device;

if (buff) { // Read nd bytes from the input strem
if (buff) { // Read nd bytes from the input stream
rb = fread(buff, 1, nd, dev->fhndl);
return rb; // Returns actual number of bytes read
}
Expand All @@ -2329,7 +2329,7 @@ static UINT tjd_buf_input (

if ((dev->bufptr + nd) > (dev->bufsize + 2)) nd = (dev->bufsize + 2) - dev->bufptr;

if (buff) { // Read nd bytes from the input strem
if (buff) { // Read nd bytes from the input stream
memcpy(buff, dev->membuff + dev->bufptr, nd);
dev->bufptr += nd;
return nd; // Returns number of bytes read
Expand Down
12 changes: 6 additions & 6 deletions MicroPython_BUILD/components/micropython/esp32/libs/tft/tft.h
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ extern const color_t TFT_PINK;
* x: horizontal position
* y: vertical position
* color: pixel color
* sel: if not 0 activate CS before and deactivat after sending pixel data to display
* sel: if not 0 activate CS before and deactivate after sending pixel data to display
* when sending multiple pixels it is faster to activate the CS first,
* send all pixels an deactivate CS after all pixela was sent
* send all pixels and deactivate CS after all pixels have been sent
*/
//-------------------------------------------------------------------
void TFT_drawPixel(int16_t x, int16_t y, color_t color, uint8_t sel);
Expand Down Expand Up @@ -246,7 +246,7 @@ void TFT_drawLine(int16_t x0, int16_t y0, int16_t x1, int16_t y1, color_t color)

/*
* Draw line on screen from (x,y) point at given angle
* Line drawing angle starts at lower right quadrant of the screen and is offseted by
* Line drawing angle starts at lower right quadrant of the screen and is offset by
* '_angleOffset' global variable (default: -90 degrees)
*
* Params:
Expand Down Expand Up @@ -429,7 +429,7 @@ void TFT_fillEllipse(uint16_t x0, uint16_t y0, uint16_t rx, uint16_t ry, color_t

/*
* Draw circle arc on screen
* Arc drawing angle starts at lower right quadrant of the screen and is offseted by
* Arc drawing angle starts at lower right quadrant of the screen and is offset by
* '_angleOffset' global variable (default: -90 degrees)
*
* Params:
Expand Down Expand Up @@ -477,7 +477,7 @@ void TFT_drawPolygon(int cx, int cy, int sides, int diameter, color_t color, col
*
* Params:
* font: font number; use defined font names
* font_file: pointer to font file name; NULL for embeded fonts
* font_file: pointer to font file name; NULL for embedded fonts
*/
//----------------------------------------------------
void TFT_setFont(uint8_t font, const char *font_file);
Expand Down Expand Up @@ -531,7 +531,7 @@ int TFT_getfontheight();
void TFT_print(char *st, int x, int y);

/*
* Set atributes for 7 segment vector font
* Set attributes for 7 segment vector font
* == 7 segment font must be the current font to this function to have effect ==
*
* Params:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ STATIC void machine_pin_print(const mp_print_t *print, mp_obj_t self_in, mp_prin
else if (pin_irq_type == GPIO_INTR_LOW_LEVEL) sprintf(sirq, "IRQ_LOLEVEL");
else if (pin_irq_type == GPIO_INTR_HIGH_LEVEL) sprintf(sirq, "IRQ_HILEVEL");
else sprintf(sirq, "Unknown");
mp_printf(print, ", irq=%s, debounce=%u, actTimel=%d", sirq, self->irq_debounce, self->irq_active_time);
mp_printf(print, ", irq=%s, debounce=%u, actTime=%d", sirq, self->irq_debounce, self->irq_active_time);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ def __init__(
if 0x48 != self.whoami:
raise RuntimeError("AK8963 not found in I2C bus.")

# Sensitivity adjustement values
# Sensitivity adjustment values
self._register_char(_CNTL1, _MODE_FUSE_ROM_ACCESS)
asax = self._register_char(_ASAX)
asay = self._register_char(_ASAY)
asaz = self._register_char(_ASAZ)
self._register_char(_CNTL1, _MODE_POWER_DOWN)

# Should wait atleast 100us before next mode
# Should wait at least 100us before next mode
self._adjustement = (
(0.5 * (asax - 128)) / 128 + 1,
(0.5 * (asay - 128)) / 128 + 1,
Expand All @@ -94,7 +94,7 @@ def magnetic(self):
xyz = list(self._register_three_shorts(_HXL))
self._register_char(_ST2) # Enable updating readings again

# Apply factory axial sensitivy adjustements
# Apply factory axial sensitivity adjustments
xyz[0] *= self._adjustement[0]
xyz[1] *= self._adjustement[1]
xyz[2] *= self._adjustement[2]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def __init__( self,
self._started = False
self.thID = None
self.isThreaded = False
self._state = "Stoped"
self._state = "Stopped"

self.MaxWebSocketRecvLen = 1024
self.WebSocketThreaded = True
Expand Down Expand Up @@ -236,7 +236,7 @@ def _serverProcess(self) :
break
self._client(self, client, cliAddr)
self._started = False
self._state = "Stoped"
self._state = "Stopped"
self.thID = None

# ============================================================================
Expand Down Expand Up @@ -870,7 +870,7 @@ def WriteResponseNotImplemented(self) :
'The server cannot process the request due to a high load'),
504: ('Gateway Timeout',
'The gateway server did not receive a timely response'),
505: ('HTTP Version Not Supported', 'Cannot fulfill request.'),
505: ('HTTP Version Not Supported', 'Cannot fulfil request.'),
}

# ============================================================================
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
_GYRO_SO_1000DPS = 32.8
_GYRO_SO_2000DPS = 16.4

# Used for enablind and disabling the i2c bypass access
# Used for enabling and disabling the i2c bypass access
_I2C_BYPASS_MASK = const(0b00000010)
_I2C_BYPASS_EN = const(0b00000010)
_I2C_BYPASS_DIS = const(0b00000000)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Touch pannel calibration for ILI9341 based displays
# Touch panel calibration for ILI9341 based displays


import display, math, machine, utime
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ def __init__(
if 0x48 != self.whoami:
raise RuntimeError("AK8963 not found in I2C bus.")

# Sensitivity adjustement values
# Sensitivity adjustment values
self._register_char(_CNTL1, _MODE_FUSE_ROM_ACCESS)
asax = self._register_char(_ASAX)
asay = self._register_char(_ASAY)
asaz = self._register_char(_ASAZ)
self._register_char(_CNTL1, _MODE_POWER_DOWN)

# Should wait atleast 100us before next mode
# Should wait at least 100us before next mode
self._adjustement = (
(0.5 * (asax - 128)) / 128 + 1,
(0.5 * (asay - 128)) / 128 + 1,
Expand All @@ -94,7 +94,7 @@ def magnetic(self):
xyz = list(self._register_three_shorts(_HXL))
self._register_char(_ST2) # Enable updating readings again

# Apply factory axial sensitivy adjustements
# Apply factory axial sensitivity adjustments
xyz[0] *= self._adjustement[0]
xyz[1] *= self._adjustement[1]
xyz[2] *= self._adjustement[2]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
_GYRO_SO_1000DPS = 32.8
_GYRO_SO_2000DPS = 16.4

# Used for enablind and disabling the i2c bypass access
# Used for enabling and disabling the i2c bypass access
_I2C_BYPASS_MASK = const(0b00000010)
_I2C_BYPASS_EN = const(0b00000010)
_I2C_BYPASS_DIS = const(0b00000000)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def transfer(pin_ss, address, value = 0x00):
pin_ss.low()

spi.write(bytes([address])) # write register address
spi.write_readinto(bytes([value]), response) # write or read register walue
spi.write_readinto(bytes([value]), response) # write or read register value
#spi.write_readinto(bytes([address]), response)

pin_ss.high()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def beginPacket(self, implicitHeaderMode = False):
self.standby()
self.implicitHeaderMode(implicitHeaderMode)

# reset FIFO address and paload length
# reset FIFO address and payload length
self.writeRegister(REG_FIFO_ADDR_PTR, FifoTxBaseAddr)
self.writeRegister(REG_PAYLOAD_LENGTH, 0)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def datacb(msg):
# Wait until status is: (1, 'Connected')

mqtt.subscribe('test')
mqtt.publish('test', 'Hi from Micropython')
mqtt.publish('test', 'Hi from MicroPython')

mqtt.stop()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
To run the program:
execute: 'p.start()' to start the program
or
execute: 'p.start(tft.LANDSCAPE)' to set the orientation andstart the program
execute: 'p.start(tft.LANDSCAPE)' to set the orientation and start the program

Program can also be run in the thread:
'paint_th = _thread.start("Paint", p.start, ())'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Demo program demonstrating the capabities of the MicroPython display module
Demo program demonstrating the capabilities of the MicroPython display module
Author: LoBo (https://github/loboris)
Date: 08/10/2017

Expand Down Expand Up @@ -303,7 +303,7 @@ def roundrectDemo(sec=5, dofill=False):
break
tft.resetwin()

# Fisplay all demos
# Display all demos
#--------------------------------------
def fullDemo(sec=5, rot=tft.LANDSCAPE):
tft.orient(rot)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def thrainbow():
machine.heap_info()
_thread.list()

# Set neopixel brightnes (%)
# Set neopixel brightness (%)
#_thread.notify(npth, 20)
# Get counter value from Neopixel thread
#_thread.notify(npth, 1000)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,13 +158,13 @@ def _closedCallback(webSocket) :
# For this example 4096 should be enough, for more complex
# webSocket handling you may need to increase this size
# If WebSocketS is NOT running in thread, and WebServer IS running in thread
# make shure WebServer has enough stack size to handle also the WebSocket requests
# make sure WebServer has enough stack size to handle also the WebSocket requests
srv.WebSocketStackSize = 4096
srv.AcceptWebSocketCallback = _acceptWebSocketCallback
# ------------------------------------------------------

# If WebSocketS used and NOT running in thread, and WebServer IS running in thread
# make shure WebServer has enough stack size to handle also the WebSocket requests
# make sure WebServer has enough stack size to handle also the WebSocket requests
srv.Start(threaded=srv_run_in_thread, stackSize=8192)

# ----------------------------------------------------------------------------
2 changes: 1 addition & 1 deletion MicroPython_BUILD/components/micropython/esp32/modymodem.c
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ int Ymodem_Transmit (char* sendFileName, unsigned int sizeFile, FILE *ffd, char
/* When the receiving program receives this block and successfully
* opened the output file, it shall acknowledge this block with an ACK
* character and then proceed with a normal YMODEM file transfer
* beginning with a "C" or NAK tranmsitted by the receiver.
* beginning with a "C" or NAK transmitted by the receiver.
*/
Ymodem_PrepareIntialPacket(packet_data, sendFileName, sizeFile);
do
Expand Down
6 changes: 3 additions & 3 deletions MicroPython_BUILD/components/micropython/esp32/mpconfigport.h
Original file line number Diff line number Diff line change
Expand Up @@ -251,10 +251,10 @@
#define mp_type_textio nativefs_type_textio

// internal flash file system configuration
#ifdef CONFIG_MICROPY_INTERNALFS_ENCRIPTED
#define MICROPY_INTERNALFS_ENCRIPTED (1) // use encription on filesystem (UNTESTED!)
#ifdef CONFIG_MICROPY_INTERNALFS_ENCRYPTED
#define MICROPY_INTERNALFS_ENCRYPTED (1) // use encryption on filesystem (UNTESTED!)
#else
#define MICROPY_INTERNALFS_ENCRIPTED (0) // do not use encription on filesystem
#define MICROPY_INTERNALFS_ENCRYPTED (0) // do not use encryption on filesystem
#endif

// === sdcard using ESP32 sdmmc driver configuration ===
Expand Down
2 changes: 1 addition & 1 deletion MicroPython_BUILD/components/micropython/esp32/mphalport.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ uint64_t mp_hal_ticks_us(void) {
}

/*
* Delay specified number of milli seconds
* Delay specified number of milliseconds
* For the delay time up to 10 ms the function is blocking
* For delay times greater than 10 ms, the function
* does not block the execution of the other threads.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ esp_err_t WL_Flash::init()
WL_RESULT_CHECK(result);

int check_size = sizeof(wl_state_t) - sizeof(uint32_t);
// Chech CRC and recover state
// Check CRC and recover state
uint32_t crc1 = crc32::crc32_le(WL_CFG_CRC_CONST, (uint8_t *)&this->state, check_size);
uint32_t crc2 = crc32::crc32_le(WL_CFG_CRC_CONST, (uint8_t *)state_copy, check_size);

Expand Down
Loading