Comments typo fixes
authorNathael Pajani <nathael.pajani@ed3l.fr>
Tue, 25 Aug 2015 22:50:59 +0000 (00:50 +0200)
committerNathael Pajani <nathael.pajani@ed3l.fr>
Tue, 8 Nov 2022 16:03:04 +0000 (17:03 +0100)
README
core/system.c
drivers/rtc.c
drivers/serial.c
include/core/lpc_regs_12xx.h
include/drivers/rtc.h

diff --git a/README b/README
index d940868..17c02f1 100644 (file)
--- a/README
+++ b/README
@@ -67,7 +67,6 @@ SUPPORTED FEATURES and INTERFACES
    - clock / PLL config
    - systick
    - precise msleep and usleep functions (using systick)
-   - counter / timers
    - pio configuration
 
 - Simple C Library
@@ -81,6 +80,7 @@ SUPPORTED FEATURES and INTERFACES
    - ADC
    - GPIO
    - GPIO interrupts
+   - Counter / Timers
    - SPI (SSP)
    - PWM
    - RTC (partial)
index 59d69de..d63fef1 100644 (file)
@@ -123,7 +123,7 @@ void system_set_default_power_state(void)
 }
 
 /* Enter deep sleep.
- * NOTE : entering deep sleep implies a lot of side effects. I'll try to lost them all here 
+ * NOTE : entering deep sleep implies a lot of side effects. I'll try to list them all here
  *        so this can be done right.
  *
  * Note : see remark about RTC and deep sleep in section 5.3.3 of UM10441
index 9c5b089..747bd57 100644 (file)
@@ -39,7 +39,7 @@ static uint8_t periodic_match = 0;
 /***************************************************************************** */
 /* Return the number of RTC ticks from system power on.
  * This count is from power being present, even if resets occured.
- * The calls maded during the first three seconds after RTC timer start will return 0.
+ * The calls made during the first three seconds after RTC timer start will return 0.
  */
 uint32_t rtc_get_count(void)
 {
index 27735a1..b38bca9 100644 (file)
@@ -240,7 +240,7 @@ static struct uart_clk_cfg uart_clk_table[] = {
 
 /* UART Clock Setup */
 /* Note : for both uarts we use full peripheral clock.
- *    With a minimum main clock of 12MHz, ths gives 12MHz/16 = 750kbauds at least
+ *    With a minimum main clock of 12MHz, this gives 12MHz/16 = 750kbauds at least
  *    for UARTs baudrates.
  * Note : IRQ are off, whether called by system update or by UART on helper
  */
index 5393bba..90e7cf9 100644 (file)
@@ -636,7 +636,7 @@ struct lpc_ssp
        volatile uint32_t raw_int_status;     /* 0x018 : Raw Interrupt Status Register (R/-) */
        volatile uint32_t masked_int_status;  /* 0x01C : Masked Interrupt Status Register (R/-) */
        volatile uint32_t int_clear;     /* 0x020 : SSPICR Interrupt Clear Register (-/W) */
-       volatile uint32_t dma_ctrl;;     /* 0x024 : DMA Control Register (R/W) */
+       volatile uint32_t dma_ctrl;      /* 0x024 : DMA Control Register (R/W) */
 };
 #define LPC_SSP0        ((struct lpc_ssp *) LPC_SSP0_BASE)
 
index 4540184..0448f01 100644 (file)
@@ -27,7 +27,8 @@
 
 /* Return the number of RTC ticks from system power on.
  * This count is from power being present, even if resets occured.
- * The calls maded during the first three seconds after RTC timer start will return 0.
+ * The calls made during the first three seconds after RTC timer start will return 0. (See
+ *    UM10441 section 16.6.1)
  */
 uint32_t rtc_get_count(void);