Run codespell -w with the latest dictonary again

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao
2020-02-23 16:50:23 +08:00
committed by Abdelatif Guettouche
parent 55a7dfc9a7
commit cde88cabcc
1532 changed files with 3117 additions and 3117 deletions
+2 -2
View File
@@ -325,7 +325,7 @@ Serial Consoles
The outputs from these pins is 3.3V. You will need to connect RS232
transceiver to get the signals to RS232 levels (or connect to the
USB virual COM port in the case of UART0).
USB virtual COM port in the case of UART0).
Loading Code
============
@@ -352,7 +352,7 @@ Loading Code
3. The Windows driver installation should fail.
4. Open the Device Manger
4. Open the Device Manager
5. Look for the listing named "Ports (COM & LPT)". You should see an open
port named "Arduino Due Prog. Port". Right click and select "Update
+1 -1
View File
@@ -235,7 +235,7 @@ Loading Code
3. The Windows driver installation should fail.
4. Open the Device Manger
4. Open the Device Manager
5. Look for the listing named "Ports (COM & LPT)". You should see an open
port named "Arduino Due Prog. Port". Right click and select "Update
+3 -3
View File
@@ -368,7 +368,7 @@ Configurations
Binary Formats:
CONFIG_BUILTIN=y : Enable support for built-in programs
Applicaton Configuration:
Application Configuration:
CONFIG_NSH_BUILTIN_APPS=y : Enable starting apps from NSH command line
2. This configuration has been used for verifying the touchscreen on
@@ -400,7 +400,7 @@ Configurations
Library Support:
CONFIG_SCHED_WORKQUEUE=y : Work queue support required
Applicaton Configuration:
Application Configuration:
CONFIG_EXAMPLES_TOUCHSCREEN=y : Enable the touchscreen built-int test
Defaults should be okay for related touchscreen settings. Touchscreen
@@ -462,7 +462,7 @@ Configurations
The NxWM window manager is a tiny window manager tailored for use
with smaller LCDs. It supports a toolchain, a start window, and
multiple application windows. However, to make the best use of
the visible LCD space, only one application window is visiable at
the visible LCD space, only one application window is visible at
at time.
The NxWM window manager can be found here:
+1 -1
View File
@@ -64,7 +64,7 @@
*
* Description:
* All SAM3U architectures must provide the following entry point.
* This entry point is called early in the intitialization -- after all
* This entry point is called early in the initialization -- after all
* memory has been configured and mapped but before any devices have been
* initialized.
*
+4 -4
View File
@@ -359,7 +359,7 @@ static int sam_setcontrast(struct lcd_dev_s *dev, unsigned int contrast);
/* This is working memory allocated by the LCD driver for each LCD device
* and for each color plane. This memory will hold one raster line of data.
* The size of the allocated run buffer must therefor be at least
* The size of the allocated run buffer must therefore be at least
* (bpp * xres / 8). Actual alignment of the buffer must conform to the
* bitwidth of the underlying pixel type.
*
@@ -626,7 +626,7 @@ static int sam_putrun(fb_coord_t row, fb_coord_t col,
}
#else
/* Write the run to GRAM.
* Because rows and colums are swapped, we need to reset
* Because rows and columns are swapped, we need to reset
* the cursor position for every pixel. We could do this much faster if we
* adapted to the strange device aspect ratio.
*/
@@ -693,7 +693,7 @@ static int sam_getrun(fb_coord_t row, fb_coord_t col, FAR uint8_t *buffer,
*run++ = sam_rdram();
}
#else
/* Read the run from GRAM Because rows and colums are swapped, we need to
/* Read the run from GRAM Because rows and columns are swapped, we need to
* reset the cursor position for every pixel.
* We could do this much faster if we adapted to the strange device aspect
* ratio.
@@ -1075,7 +1075,7 @@ FAR struct lcd_dev_s *board_lcd_getdev(int lcddev)
* Name: board_lcd_uninitialize
*
* Description:
* Unitialize the framebuffer support.
* Uninitialize the framebuffer support.
*
****************************************************************************/
+1 -1
View File
@@ -54,7 +54,7 @@
*
* Description:
* All SAM3/4 architectures must provide the following entry point.
* This entry point is called early in the intitialization -- after all
* This entry point is called early in the initialization -- after all
* memory has been configured and mapped but before any devices have been
* initialized.
*
+2 -2
View File
@@ -1117,7 +1117,7 @@ Configurations
Binary Formats:
CONFIG_BUILTIN=y : Enable support for built-in programs
Applicaton Configuration:
Application Configuration:
CONFIG_NSH_BUILTIN_APPS=y : Enable starting apps from NSH command line
4. This configuration has the network enabled by default. This can be
@@ -1345,7 +1345,7 @@ Configurations
CONFIG_SYSLOG_CHAR=y : Use a character device for system logging
CONFIG_SYSLOG_DEVPATH="/dev/ttyS0" : UART0 will be /dev/ttyS0
However, there is nothing to generate SYLOG output in the default
However, there is nothing to generate SYSLOG output in the default
configuration so nothing should appear on UART0 unless you enable
some debug output or enable the USB monitor.
+3 -3
View File
@@ -48,7 +48,7 @@ Modules
----------------- -------------------- -------------------- ------------------------------------
1 ID 1 1
2 GND 2 GND 2
3 LIGHTSENSOR 3 PA04 ADCIFE/AD0 3 PA07 ADCIFE/AD2
3 LIGHT_SENSOR 3 PA04 ADCIFE/AD0 3 PA07 ADCIFE/AD2
4 LP_OUT 4 PA05 ADCIFE/AD1 4 PB02 ADCIFE/AD3
5 GPIO1 5 PB12 GPIO 5 PC08 GPIO PB12 and PC8 on EXT5
6 GPIO2 6 PC02 GPIO 6 PB10 GPIO PB10 on EXT5
@@ -217,7 +217,7 @@ Serial Consoles
19 19 GND
20 20 VCC
If you have a TTL to RS-232 convertor then this is the most convenient
If you have a TTL to RS-232 converter then this is the most convenient
serial console to use. It is the default in all of these configurations.
An option is to use the virtual COM port.
@@ -618,7 +618,7 @@ Configuration sub-directories
CONFIG_EXAMPLES_NXHELLO_BPP=1 : One bit per pixel
CONFIG_EXAMPLES_NXHELLO_EXTERNINIT=y : Special initialization is required.
* The OLED is monochrome so the only "colors" are blacka nd white.
* The OLED is monochrome so the only "colors" are black and white.
The default "colors" will give you while text on a black background.
You can override the faults it you want black text on a while background.
@@ -62,7 +62,7 @@
*
* Description:
* All SAM3U architectures must provide the following entry point.
* This entry point is called early in the intitialization -- after all
* This entry point is called early in the initialization -- after all
* memory has been configured and mapped but before any devices have been
* initialized.
*
@@ -538,7 +538,7 @@ static uint8_t slcd_getcontrast(void)
uint32_t ucontrast;
int32_t scontrast;
/* Get the current contast value */
/* Get the current contrast value */
regval = getreg32(SAM_LCDCA_CFG);
ucontrast = (regval & LCDCA_CFG_FCST_MASK) >> LCDCA_CFG_FCST_SHIFT;
@@ -588,7 +588,7 @@ static int slcd_setcontrast(unsigned int contrast)
scontrast = (int)contrast - 32;
/* Set the new contast value */
/* Set the new contrast value */
regval = getreg32(SAM_LCDCA_CFG);
regval &= ~LCDCA_CFG_FCST_MASK;
@@ -1152,7 +1152,7 @@ static int slcd_poll(FAR struct file *filep, FAR struct pollfd *fds,
{
if (setup)
{
/* Data is always avaialble to be read / Data can always be written */
/* Data is always available to be read / Data can always be written */
fds->revents |= (fds->events & (POLLIN | POLLOUT));
if (fds->revents != 0)
@@ -115,7 +115,7 @@ Serial Consoles
UART1
-----
If you have a TTL to RS-232 convertor then this is the most convenient
If you have a TTL to RS-232 converter then this is the most convenient
serial console to use. UART1 is the default in all of these
configurations.
@@ -155,7 +155,7 @@ int sam_watchdog_initialize(void)
FAR struct file filestruct;
int ret;
/* Initialize tha register the watchdog timer device */
/* Initialize the watchdog timer device */
wdinfo("Initializing Watchdog driver...\n");
+1 -1
View File
@@ -114,7 +114,7 @@ Serial Consoles
UART1
-----
If you have a TTL to RS-232 convertor then this is the most convenient
If you have a TTL to RS-232 converter then this is the most convenient
serial console to use. UART1 is the default in all of these
configurations.
@@ -62,7 +62,7 @@
*
* Description:
* All SAM3U architectures must provide the following entry point.
* This entry point is called early in the intitialization -- after all
* This entry point is called early in the initialization -- after all
* memory has been configured and mapped but before any devices have been
* initialized.
*