summaryrefslogtreecommitdiff
path: root/nuttx/configs/pic32mx7mmb
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/pic32mx7mmb')
-rw-r--r--nuttx/configs/pic32mx7mmb/README.txt2
-rw-r--r--nuttx/configs/pic32mx7mmb/src/up_leds.c2
-rw-r--r--nuttx/configs/pic32mx7mmb/src/up_spi.c2
-rw-r--r--nuttx/configs/pic32mx7mmb/src/up_touchscreen.c4
4 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/configs/pic32mx7mmb/README.txt b/nuttx/configs/pic32mx7mmb/README.txt
index f64eee77b..358b55e82 100644
--- a/nuttx/configs/pic32mx7mmb/README.txt
+++ b/nuttx/configs/pic32mx7mmb/README.txt
@@ -670,7 +670,7 @@ Where <subdir> is one of the following:
NOTE: The SD card should *not* be mounted under NSH *and* exported
by the mass storage device!!! That can result in corruption of the
SD card format. This is the sequence of commands that you should
- used to work the the SD card safely:
+ use to work with the SD card safely:
mount -t vfat /dev/mmcsd0 /mnt/sdcard : Mount the SD card initially
...
diff --git a/nuttx/configs/pic32mx7mmb/src/up_leds.c b/nuttx/configs/pic32mx7mmb/src/up_leds.c
index 187935280..573565518 100644
--- a/nuttx/configs/pic32mx7mmb/src/up_leds.c
+++ b/nuttx/configs/pic32mx7mmb/src/up_leds.c
@@ -156,7 +156,7 @@ static const struct led_setting_s g_ledoffvalues[LED_NVALUES] =
{LED_OFF, LED_NC, LED_NC, LED_OFF},
};
-/* If CONFIG_ARCH_LEDS is not defined, the the user can control the LEDs in
+/* If CONFIG_ARCH_LEDS is not defined, then the user can control the LEDs in
* any way. The following array simply maps the PIC32MX_PIC32MX7MMB_LEDn
* index values to the correct LED pin configuration.
*/
diff --git a/nuttx/configs/pic32mx7mmb/src/up_spi.c b/nuttx/configs/pic32mx7mmb/src/up_spi.c
index c3e90729a..b5676a0ac 100644
--- a/nuttx/configs/pic32mx7mmb/src/up_spi.c
+++ b/nuttx/configs/pic32mx7mmb/src/up_spi.c
@@ -171,7 +171,7 @@ uint8_t pic32mx_spi1status(FAR struct spi_dev_s *dev, enum spi_dev_e devid)
{
ret = SPI_STATUS_PRESENT;
- /* A high value indicates the the card is write protected. */
+ /* A high value indicates that the card is write protected. */
if (pic32mx_gpioread(GPIO_SD_WP))
{
diff --git a/nuttx/configs/pic32mx7mmb/src/up_touchscreen.c b/nuttx/configs/pic32mx7mmb/src/up_touchscreen.c
index c8fe53507..7babc6194 100644
--- a/nuttx/configs/pic32mx7mmb/src/up_touchscreen.c
+++ b/nuttx/configs/pic32mx7mmb/src/up_touchscreen.c
@@ -249,7 +249,7 @@ static int tc_poll(FAR struct file *filep, struct pollfd *fds, bool setup);
* Private Data
****************************************************************************/
-/* This the the vtable that supports the character driver interface */
+/* This the vtable that supports the character driver interface */
static const struct file_operations tc_fops =
{
@@ -610,7 +610,7 @@ static int tc_waitsample(FAR struct tc_dev_s *priv,
}
}
- /* Re-acquire the the semaphore that manages mutually exclusive access to
+ /* Re-acquire the semaphore that manages mutually exclusive access to
* the device structure. We may have to wait here. But we have our sample.
* Interrupts and pre-emption will be re-enabled while we wait.
*/