Fix misspellings using codespell tool

This commit is contained in:
Anatol Pomozov
2015-12-11 08:46:44 -08:00
parent 20e1ee174d
commit ae41782e1a
25 changed files with 31 additions and 31 deletions

View File

@@ -502,7 +502,7 @@ void gpio_toggle(uint32_t gpioport, uint8_t gpios)
* serviced_irq |= GPIO4;
* }
*
* // Clear the interupt flag for the processed IRQs
* // Clear the interrupt flag for the processed IRQs
* gpio_clear_interrupt_flag(GPIOF, serviced_irqs);
* }
* @endcode

View File

@@ -92,7 +92,7 @@ Alexandru Gagniuc <mr.nuke.me@gmail.com>
* internal 16MHz oscillator.
*
* High-level routines update the system clock automatically.
* For read access, it is recommended to acces this variable via
* For read access, it is recommended to access this variable via
* @code
* rcc_get_system_clock_frequency();
* @endcode

View File

@@ -256,7 +256,7 @@ void uart_clock_from_sysclk(uint32_t uart)
*
* \brief <b>Sending and receiving data through the UART</b>
*
* Primitives for sending and recieving data are provided, @ref uart_send() and
* Primitives for sending and receiving data are provided, @ref uart_send() and
* @ref uart_recv(). These primitives do not check if data can be transmitted
* or wait for data. If waiting until data is available or can be transmitted is
* desired, blocking primitives are also available, @ref uart_send_blocking()
@@ -407,7 +407,7 @@ uint16_t uart_recv_blocking(uint32_t uart)
* serviced_irq |= UART_INT_CTS;
* }
*
* // Clear the interupt flag for the processed IRQs
* // Clear the interrupt flag for the processed IRQs
* uart_clear_interrupt_flag(UART0, serviced_irqs);
* }
* @endcode