Fix various typos

This commit is contained in:
Nathan Hartman 2019-09-03 17:00:22 -06:00 committed by Gregory Nutt
parent 38ada48454
commit ce8fb54d07
8 changed files with 15 additions and 15 deletions

View File

@ -99,7 +99,7 @@ ports.
2. Lazy Floating Point Register Save.
An alternative mplementation only saves and restores FPU registers only
An alternative implementation only saves and restores FPU registers only
on context switches. This means: (1) floating point registers are not
stored on each context switch and, hence, possibly better interrupt
performance. But, (2) since floating point registers are not saved,

View File

@ -141,7 +141,7 @@ There are two version of the FPU support built into the STM32 port.
2. Lazy Floating Point Register Save.
An alternative mplementation only saves and restores FPU registers only
An alternative implementation only saves and restores FPU registers only
on context switches. This means: (1) floating point registers are not
stored on each context switch and, hence, possibly better interrupt
performance. But, (2) since floating point registers are not saved,

View File

@ -677,7 +677,7 @@ Where <subdir> is one of the following:
The WWDG watchdog is driven off the (fast) 42MHz PCLK1 and, as result,
has a maximum timeout value of 49 milliseconds. For WWDG watchdog, you
should also add the fillowing to the configuration file:
should also add the following to the configuration file:
CONFIG_EXAMPLES_WATCHDOG_PINGDELAY=20
CONFIG_EXAMPLES_WATCHDOG_TIMEOUT=49

View File

@ -166,7 +166,7 @@ There are two version of the FPU support built into the STM32 port.
2. Lazy Floating Point Register Save.
An alternative mplementation only saves and restores FPU registers only
An alternative implementation only saves and restores FPU registers only
on context switches. This means: (1) floating point registers are not
stored on each context switch and, hence, possibly better interrupt
performance. But, (2) since floating point registers are not saved,
@ -985,7 +985,7 @@ Where <subdir> is one of the following:
The WWDG watchdog is driven off the (fast) 42MHz PCLK1 and, as result,
has a maximum timeout value of 49 milliseconds. For WWDG watchdog, you
should also add the fillowing to the configuration file:
should also add the following to the configuration file:
CONFIG_EXAMPLES_WATCHDOG_PINGDELAY=20
CONFIG_EXAMPLES_WATCHDOG_TIMEOUT=49

View File

@ -100,7 +100,7 @@ There are two version of the FPU support built into the STM32 port.
2. Lazy Floating Point Register Save.
An alternative mplementation only saves and restores FPU registers only
An alternative implementation only saves and restores FPU registers only
on context switches. This means: (1) floating point registers are not
stored on each context switch and, hence, possibly better interrupt
performance. But, (2) since floating point registers are not saved,
@ -478,8 +478,8 @@ Where <subdir> is one of the following:
CONFIG_STM32_IWDG=y : Enables the IWDG timer facility (but not both)
The WWDG watchdog is driven off the (fast) 42MHz PCLK1 and, as result,
has a maximum timeout value of 49 milliseconds. for WWDG watchdog, you
should also add the fillowing to the configuration file:
has a maximum timeout value of 49 milliseconds. For WWDG watchdog, you
should also add the following to the configuration file:
CONFIG_EXAMPLES_WATCHDOG_PINGDELAY=20
CONFIG_EXAMPLES_WATCHDOG_TIMEOUT=49

View File

@ -268,7 +268,7 @@ There are two version of the FPU support built into the STM32 port.
2. Lazy Floating Point Register Save.
An alternative mplementation only saves and restores FPU registers only
An alternative implementation only saves and restores FPU registers only
on context switches. This means: (1) floating point registers are not
stored on each context switch and, hence, possibly better interrupt
performance. But, (2) since floating point registers are not saved,
@ -776,7 +776,7 @@ Where <subdir> is one of the following:
The WWDG watchdog is driven off the (fast) 42MHz PCLK1 and, as result,
has a maximum timeout value of 49 milliseconds. for WWDG watchdog, you
should also add the fillowing to the configuration file:
should also add the following to the configuration file:
CONFIG_EXAMPLES_WATCHDOG_PINGDELAY=20
CONFIG_EXAMPLES_WATCHDOG_TIMEOUT=49

View File

@ -321,7 +321,7 @@ There are two version of the FPU support built into the STM32 port.
2. Lazy Floating Point Register Save.
An alternative mplementation only saves and restores FPU registers only
An alternative implementation only saves and restores FPU registers only
on context switches. This means: (1) floating point registers are not
stored on each context switch and, hence, possibly better interrupt
performance. But, (2) since floating point registers are not saved,
@ -1783,8 +1783,8 @@ Configuration Sub-directories
CONFIG_STM32_IWDG=y : Enables the IWDG timer facility (but not both)
The WWDG watchdog is driven off the (fast) 42MHz PCLK1 and, as result,
has a maximum timeout value of 49 milliseconds. for WWDG watchdog, you
should also add the fillowing to the configuration file:
has a maximum timeout value of 49 milliseconds. For WWDG watchdog, you
should also add the following to the configuration file:
CONFIG_EXAMPLES_WATCHDOG_PINGDELAY=20
CONFIG_EXAMPLES_WATCHDOG_TIMEOUT=49

View File

@ -76,7 +76,7 @@ endif
# they contain spaces or any other characters that might get mangled by the
# shell
#
# Depends on this setting passed as a make commaond line definition from the
# Depends on this setting passed as a make command line definition from the
# toplevel Makefile:
#
# TOPDIR - The path to the top level NuttX directory in the form
@ -302,7 +302,7 @@ endif
#
# USAGE: FILELIST = $(call RWILDCARD,<dir>,<wildcard-filename)
#
# This is functionally equivent to the fillowing, but has the advantage in
# This is functionally equivent to the following, but has the advantage in
# that it is portable
#
# FILELIST = ${shell find <dir> -name <wildcard-file>}