Fix typos.

This commit is contained in:
Nathan Hartman
2019-08-04 14:50:28 -06:00
committed by Gregory Nutt
parent 89da9f2fea
commit 68d43d3679
81 changed files with 108 additions and 106 deletions
+1 -1
View File
@@ -72,7 +72,7 @@
* has been created. This function is called to initialize * has been created. This function is called to initialize
* the processor specific portions of the new TCB. * the processor specific portions of the new TCB.
* *
* This function must setup the intial architecture registers * This function must setup the initial architecture registers
* and/or stack so that execution will begin at tcb->start * and/or stack so that execution will begin at tcb->start
* on the next context switch. * on the next context switch.
* *
+1 -1
View File
@@ -75,7 +75,7 @@
* has been created. This function is called to initialize * has been created. This function is called to initialize
* the processor specific portions of the new TCB. * the processor specific portions of the new TCB.
* *
* This function must setup the intial architecture registers * This function must setup the initial architecture registers
* and/or stack so that execution will begin at tcb->start * and/or stack so that execution will begin at tcb->start
* on the next context switch. * on the next context switch.
* *
+1 -1
View File
@@ -64,7 +64,7 @@
* has been created. This function is called to initialize * has been created. This function is called to initialize
* the processor specific portions of the new TCB. * the processor specific portions of the new TCB.
* *
* This function must setup the intial architecture registers * This function must setup the initial architecture registers
* and/or stack so that execution will begin at tcb->start * and/or stack so that execution will begin at tcb->start
* on the next context switch. * on the next context switch.
* *
+1 -1
View File
@@ -93,7 +93,7 @@
/* Beginning (BOTTOM/BASE) and End+1 (TOP) of the IDLE stack. /* Beginning (BOTTOM/BASE) and End+1 (TOP) of the IDLE stack.
* *
* The IDLE stack is the stack that is used during intialization and, * The IDLE stack is the stack that is used during initialization and,
* eventually, becomes the stack of the IDLE task when initialization * eventually, becomes the stack of the IDLE task when initialization
* is complete. * is complete.
* *
+1 -1
View File
@@ -348,7 +348,7 @@ void up_lowputc(char ch)
* *
* Description: * Description:
* This performs basic initialization of the UART used for the serial * This performs basic initialization of the UART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
* The USART0/2/3 and UART1 peripherals are configured using the following * The USART0/2/3 and UART1 peripherals are configured using the following
+1 -1
View File
@@ -148,7 +148,7 @@ void kl_lowputc(uint32_t ch)
* *
* Description: * Description:
* This performs basic initialization of the UART used for the serial * This performs basic initialization of the UART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
+1 -1
View File
@@ -179,7 +179,7 @@ void up_lowputc(char ch)
* *
* Description: * Description:
* This performs basic initialization of the UART used for the serial * This performs basic initialization of the UART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
**************************************************************************/ **************************************************************************/
+1 -1
View File
@@ -282,7 +282,7 @@ static int rtc_interrupt(int irq, void *context, FAR void *arg)
* Get the current date and time from the date/time RTC. This interface * Get the current date and time from the date/time RTC. This interface
* is only supported by the date/time RTC hardware implementation. * is only supported by the date/time RTC hardware implementation.
* It is used to replace the system timer. It is only used by the RTOS during * It is used to replace the system timer. It is only used by the RTOS during
* intialization to set up the system time when CONFIG_RTC and CONFIG_RTC_DATETIME * initialization to set up the system time when CONFIG_RTC and CONFIG_RTC_DATETIME
* are selected (and CONFIG_RTC_HIRES is not). * are selected (and CONFIG_RTC_HIRES is not).
* *
* NOTE: Some date/time RTC hardware is capability of sub-second accuracy. That * NOTE: Some date/time RTC hardware is capability of sub-second accuracy. That
+1 -1
View File
@@ -286,7 +286,7 @@ void up_lowputc(char ch)
* *
* Description: * Description:
* This performs basic initialization of the UART used for the serial * This performs basic initialization of the UART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
* The UART0/1/2/3 peripherals are configured using the following registers: * The UART0/1/2/3 peripherals are configured using the following registers:
+1 -1
View File
@@ -172,7 +172,7 @@ void up_lowputc(char ch)
* *
* Description: * Description:
* This performs basic initialization of the UART used for the serial * This performs basic initialization of the UART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
* The USART0/2/3 and UART1 peripherals are configured using the following registers: * The USART0/2/3 and UART1 peripherals are configured using the following registers:
+2 -2
View File
@@ -40,7 +40,7 @@
* following custom functions. * following custom functions.
* *
* void arm_timer_initialize(void): Initializes the timer facilities. Called * void arm_timer_initialize(void): Initializes the timer facilities. Called
* early in the initialization sequence (by up_intialize()). * early in the initialization sequence (by up_initialize()).
* int up_timer_gettime(FAR struct timespec *ts): Returns the current * int up_timer_gettime(FAR struct timespec *ts): Returns the current
* time from the platform specific time source. * time from the platform specific time source.
* int up_timer_cancel(void): Cancels the interval timer. * int up_timer_cancel(void): Cancels the interval timer.
@@ -210,7 +210,7 @@ static void sam_oneshot_handler(void *arg)
* *
* Description: * Description:
* Initializes all platform-specific timer facilities. This function is * Initializes all platform-specific timer facilities. This function is
* called early in the initialization sequence by up_intialize(). * called early in the initialization sequence by up_initialize().
* On return, the current up-time should be available from * On return, the current up-time should be available from
* up_timer_gettime() and the interval timer is ready for use (but not * up_timer_gettime() and the interval timer is ready for use (but not
* actively timing. * actively timing.
+1 -1
View File
@@ -341,7 +341,7 @@ int up_putc(int ch)
* *
* Description: * Description:
* This performs basic initialization of the USART used for the serial * This performs basic initialization of the USART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
+1 -1
View File
@@ -1952,7 +1952,7 @@ FAR struct can_dev_s *sam_caninitialize(int port)
dev->cd_ops = &g_canops; dev->cd_ops = &g_canops;
dev->cd_priv = (FAR void *)priv; dev->cd_priv = (FAR void *)priv;
/* And put the hardware in the intial state */ /* And put the hardware in the initial state */
can_reset(dev); can_reset(dev);
} }
+1 -1
View File
@@ -353,7 +353,7 @@ int up_putc(int ch)
* *
* Description: * Description:
* This performs basic initialization of the USART used for the serial * This performs basic initialization of the USART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
+2 -2
View File
@@ -40,7 +40,7 @@
* following custom functions. * following custom functions.
* *
* void arm_timer_initialize(void): Initializes the timer facilities. Called * void arm_timer_initialize(void): Initializes the timer facilities. Called
* early in the initialization sequence (by up_intialize()). * early in the initialization sequence (by up_initialize()).
* int up_timer_gettime(FAR struct timespec *ts): Returns the current * int up_timer_gettime(FAR struct timespec *ts): Returns the current
* time from the platform specific time source. * time from the platform specific time source.
* int up_timer_cancel(void): Cancels the interval timer. * int up_timer_cancel(void): Cancels the interval timer.
@@ -222,7 +222,7 @@ static void sam_oneshot_handler(void *arg)
* *
* Description: * Description:
* Initializes all platform-specific timer facilities. This function is * Initializes all platform-specific timer facilities. This function is
* called early in the initialization sequence by up_intialize(). * called early in the initialization sequence by up_initialize().
* On return, the current up-time should be available from * On return, the current up-time should be available from
* up_timer_gettime() and the interval timer is ready for use (but not * up_timer_gettime() and the interval timer is ready for use (but not
* actively timing. * actively timing.
+1 -1
View File
@@ -246,7 +246,7 @@ int up_putc(int ch)
* *
* Description: * Description:
* This performs basic initialization of the USART used for the serial * This performs basic initialization of the USART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
+2 -2
View File
@@ -40,7 +40,7 @@
* following custom functions. * following custom functions.
* *
* void arm_timer_initialize(void): Initializes the timer facilities. Called * void arm_timer_initialize(void): Initializes the timer facilities. Called
* early in the initialization sequence (by up_intialize()). * early in the initialization sequence (by up_initialize()).
* int up_timer_gettime(FAR struct timespec *ts): Returns the current * int up_timer_gettime(FAR struct timespec *ts): Returns the current
* time from the platform specific time source. * time from the platform specific time source.
* int up_timer_cancel(void): Cancels the interval timer. * int up_timer_cancel(void): Cancels the interval timer.
@@ -234,7 +234,7 @@ static void sam_oneshot_handler(void *arg)
* *
* Description: * Description:
* Initializes all platform-specific timer facilities. This function is * Initializes all platform-specific timer facilities. This function is
* called early in the initialization sequence by up_intialize(). * called early in the initialization sequence by up_initialize().
* On return, the current up-time should be available from * On return, the current up-time should be available from
* up_timer_gettime() and the interval timer is ready for use (but not * up_timer_gettime() and the interval timer is ready for use (but not
* actively timing. * actively timing.
+1 -1
View File
@@ -435,7 +435,7 @@ void up_lowputc(char ch)
* *
* Description: * Description:
* This performs basic initialization of the USART used for the serial * This performs basic initialization of the USART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
+2 -2
View File
@@ -42,7 +42,7 @@
* following custom functions. * following custom functions.
* *
* void arm_timer_initialize(void): Initializes the timer facilities. * void arm_timer_initialize(void): Initializes the timer facilities.
* Called early in the initialization sequence (by up_intialize()). * Called early in the initialization sequence (by up_initialize()).
* int up_timer_gettime(FAR struct timespec *ts): Returns the current * int up_timer_gettime(FAR struct timespec *ts): Returns the current
* time from the platform specific time source. * time from the platform specific time source.
* int up_timer_cancel(void): Cancels the interval timer. * int up_timer_cancel(void): Cancels the interval timer.
@@ -389,7 +389,7 @@ static int stm32_tickless_handler(int irq, void *context, void *arg)
* *
* Description: * Description:
* Initializes all platform-specific timer facilities. This function is * Initializes all platform-specific timer facilities. This function is
* called early in the initialization sequence by up_intialize(). * called early in the initialization sequence by up_initialize().
* On return, the current up-time should be available from * On return, the current up-time should be available from
* up_timer_gettime() and the interval timer is ready for use (but not * up_timer_gettime() and the interval timer is ready for use (but not
* actively timing. * actively timing.
+1 -1
View File
@@ -266,7 +266,7 @@ void up_lowputc(char ch)
* *
* Description: * Description:
* This performs basic initialization of the USART used for the serial * This performs basic initialization of the USART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
+1 -1
View File
@@ -283,7 +283,7 @@ void up_lowputc(char ch)
* *
* Description: * Description:
* This performs basic initialization of the USART used for the serial * This performs basic initialization of the USART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
+1 -1
View File
@@ -359,7 +359,7 @@ void up_lowputc(char ch)
* *
* Description: * Description:
* This performs basic initialization of the USART used for the serial * This performs basic initialization of the USART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
+2 -2
View File
@@ -42,7 +42,7 @@
* following custom functions. * following custom functions.
* *
* void arm_timer_initialize(void): Initializes the timer facilities. * void arm_timer_initialize(void): Initializes the timer facilities.
* Called early in the initialization sequence (by up_intialize()). * Called early in the initialization sequence (by up_initialize()).
* int up_timer_gettime(FAR struct timespec *ts): Returns the current * int up_timer_gettime(FAR struct timespec *ts): Returns the current
* time from the platform specific time source. * time from the platform specific time source.
* int up_timer_cancel(void): Cancels the interval timer. * int up_timer_cancel(void): Cancels the interval timer.
@@ -402,7 +402,7 @@ static int stm32_tickless_handler(int irq, void *context, void *arg)
* *
* Description: * Description:
* Initializes all platform-specific timer facilities. This function is * Initializes all platform-specific timer facilities. This function is
* called early in the initialization sequence by up_intialize(). * called early in the initialization sequence by up_initialize().
* On return, the current up-time should be available from * On return, the current up-time should be available from
* up_timer_gettime() and the interval timer is ready for use (but not * up_timer_gettime() and the interval timer is ready for use (but not
* actively timing. * actively timing.
+1 -1
View File
@@ -359,7 +359,7 @@ void up_lowputc(char ch)
* *
* Description: * Description:
* This performs basic initialization of the USART used for the serial * This performs basic initialization of the USART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
+1 -1
View File
@@ -306,7 +306,7 @@ void up_lowputc(char ch)
* *
* Description: * Description:
* This performs basic initialization of the USART used for the serial * This performs basic initialization of the USART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
+2 -2
View File
@@ -41,7 +41,7 @@
* following custom functions. * following custom functions.
* *
* void arm_timer_initialize(void): Initializes the timer facilities. * void arm_timer_initialize(void): Initializes the timer facilities.
* Called early in the initialization sequence (by up_intialize()). * Called early in the initialization sequence (by up_initialize()).
* int up_timer_gettime(FAR struct timespec *ts): Returns the current * int up_timer_gettime(FAR struct timespec *ts): Returns the current
* time from the platform specific time source. * time from the platform specific time source.
* int up_timer_cancel(void): Cancels the interval timer. * int up_timer_cancel(void): Cancels the interval timer.
@@ -167,7 +167,7 @@ static void stm32l4_oneshot_handler(FAR void *arg)
* *
* Description: * Description:
* Initializes all platform-specific timer facilities. This function is * Initializes all platform-specific timer facilities. This function is
* called early in the initialization sequence by up_intialize(). * called early in the initialization sequence by up_initialize().
* On return, the current up-time should be available from * On return, the current up-time should be available from
* up_timer_gettime() and the interval timer is ready for use (but not * up_timer_gettime() and the interval timer is ready for use (but not
* actively timing. * actively timing.
+1 -1
View File
@@ -273,7 +273,7 @@ void up_lowputc(char ch)
* *
* Description: * Description:
* This performs basic initialization of the UART used for the serial * This performs basic initialization of the UART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
+1 -1
View File
@@ -248,7 +248,7 @@ void up_lowputc(char ch)
* *
* Description: * Description:
* This performs basic initialization of the UART used for the serial * This performs basic initialization of the UART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
+1 -1
View File
@@ -246,7 +246,7 @@ int up_putc(int ch)
* *
* Description: * Description:
* This performs basic initialization of the SCI used for the serial * This performs basic initialization of the SCI used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
+1 -1
View File
@@ -76,7 +76,7 @@
* *
* Description: * Description:
* This performs basic initialization of the USART used for the serial * This performs basic initialization of the USART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
+1 -1
View File
@@ -115,7 +115,7 @@ static inline void up_wdtinit(void)
* *
* Description: * Description:
* This performs basic initialization of the USART used for the serial * This performs basic initialization of the USART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
+1 -1
View File
@@ -115,7 +115,7 @@ static inline void up_wdtinit(void)
* *
* Description: * Description:
* This performs basic initialization of the USART used for the serial * This performs basic initialization of the USART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
+1 -1
View File
@@ -62,7 +62,7 @@
* function is called to initialize the processor specific portions of the * function is called to initialize the processor specific portions of the
* new TCB. * new TCB.
* *
* This function must setup the intial architecture registers and/or stack * This function must setup the initial architecture registers and/or stack
* so that execution will begin at tcb->start on the next context switch. * so that execution will begin at tcb->start on the next context switch.
* *
****************************************************************************/ ****************************************************************************/
+1 -1
View File
@@ -72,7 +72,7 @@
* function is called to initialize the processor specific portions of the * function is called to initialize the processor specific portions of the
* new TCB. * new TCB.
* *
* This function must setup the intial architecture registers and/or stack * This function must setup the initial architecture registers and/or stack
* so that execution will begin at tcb->start on the next context switch. * so that execution will begin at tcb->start on the next context switch.
* *
****************************************************************************/ ****************************************************************************/
+1 -1
View File
@@ -70,7 +70,7 @@
* has been created. This function is called to initialize * has been created. This function is called to initialize
* the processor specific portions of the new TCB. * the processor specific portions of the new TCB.
* *
* This function must setup the intial architecture registers * This function must setup the initial architecture registers
* and/or stack so that execution will begin at tcb->start * and/or stack so that execution will begin at tcb->start
* on the next context switch. * on the next context switch.
* *
+1 -1
View File
@@ -62,7 +62,7 @@
* has been created. This function is called to initialize * has been created. This function is called to initialize
* the processor specific portions of the new TCB. * the processor specific portions of the new TCB.
* *
* This function must setup the intial architecture registers * This function must setup the initial architecture registers
* and/or stack so that execution will begin at tcb->start * and/or stack so that execution will begin at tcb->start
* on the next context switch. * on the next context switch.
* *
+1 -1
View File
@@ -73,7 +73,7 @@
* has been created. This function is called to initialize * has been created. This function is called to initialize
* the processor specific portions of the new TCB. * the processor specific portions of the new TCB.
* *
* This function must setup the intial architecture registers * This function must setup the initial architecture registers
* and/or stack so that execution will begin at tcb->start * and/or stack so that execution will begin at tcb->start
* on the next context switch. * on the next context switch.
* *
@@ -64,7 +64,7 @@
* has been created. This function is called to initialize * has been created. This function is called to initialize
* the processor specific portions of the new TCB. * the processor specific portions of the new TCB.
* *
* This function must setup the intial architecture registers * This function must setup the initial architecture registers
* and/or stack so that execution will begin at tcb->start * and/or stack so that execution will begin at tcb->start
* on the next context switch. * on the next context switch.
* *
+1 -1
View File
@@ -62,7 +62,7 @@
* has been created. This function is called to initialize * has been created. This function is called to initialize
* the processor specific portions of the new TCB. * the processor specific portions of the new TCB.
* *
* This function must setup the intial architecture registers * This function must setup the initial architecture registers
* and/or stack so that execution will begin at tcb->start * and/or stack so that execution will begin at tcb->start
* on the next context switch. * on the next context switch.
* *
+1 -1
View File
@@ -60,7 +60,7 @@
* function is called to initialize the processor specific portions of the * function is called to initialize the processor specific portions of the
* new TCB. * new TCB.
* *
* This function must setup the intial architecture registers and/or stack * This function must setup the initial architecture registers and/or stack
* so that execution will begin at tcb->start on the next context switch. * so that execution will begin at tcb->start on the next context switch.
* *
****************************************************************************/ ****************************************************************************/
+2 -2
View File
@@ -213,7 +213,7 @@ static inline int up_txready(void)
* *
* Description: * Description:
* This performs basic initialization of the UART used for the serial * This performs basic initialization of the UART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
@@ -318,7 +318,7 @@ void up_lowputc(char ch)
* *
* Description: * Description:
* This performs basic initialization of the UART used for the serial * This performs basic initialization of the UART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
+1 -1
View File
@@ -86,7 +86,7 @@ static inline irqstate_t up_getsr(void)
* has been created. This function is called to initialize * has been created. This function is called to initialize
* the processor specific portions of the new TCB. * the processor specific portions of the new TCB.
* *
* This function must setup the intial architecture registers * This function must setup the initial architecture registers
* and/or stack so that execution will begin at tcb->start * and/or stack so that execution will begin at tcb->start
* on the next context switch. * on the next context switch.
* *
+1 -1
View File
@@ -220,7 +220,7 @@ void up_lowputc(char ch)
* *
* Description: * Description:
* This performs basic initialization of the UART used for the serial * This performs basic initialization of the UART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
****************************************************************************/ ****************************************************************************/
+1 -1
View File
@@ -149,7 +149,7 @@ void up_lowputc(char ch)
* *
* Description: * Description:
* This performs basic initialization of the UART used for the serial * This performs basic initialization of the UART used for the serial
* console. Its purpose is to get the console output availabe as soon * console. Its purpose is to get the console output available as soon
* as possible. * as possible.
* *
**************************************************************************/ **************************************************************************/
+1 -1
View File
@@ -61,7 +61,7 @@
* has been created. This function is called to initialize * has been created. This function is called to initialize
* the processor specific portions of the new TCB. * the processor specific portions of the new TCB.
* *
* This function must setup the intial architecture registers * This function must setup the initial architecture registers
* and/or stack so that execution will begin at tcb->start * and/or stack so that execution will begin at tcb->start
* on the next context switch. * on the next context switch.
* *
+1 -1
View File
@@ -58,7 +58,7 @@
* has been created. This function is called to initialize * has been created. This function is called to initialize
* the processor specific portions of the new TCB. * the processor specific portions of the new TCB.
* *
* This function must setup the intial architecture registers * This function must setup the initial architecture registers
* and/or stack so that execution will begin at tcb->start * and/or stack so that execution will begin at tcb->start
* on the next context switch. * on the next context switch.
* *
+2 -2
View File
@@ -40,7 +40,7 @@
* following custom functions. * following custom functions.
* *
* void sim_timer_initialize(void): Initializes the timer facilities. Called * void sim_timer_initialize(void): Initializes the timer facilities. Called
* early in the intialization sequence (by up_intialize()). * early in the initialization sequence (by up_initialize()).
* int up_timer_gettime(FAR struct timespec *ts): Returns the current * int up_timer_gettime(FAR struct timespec *ts): Returns the current
* time from the platform specific time source. * time from the platform specific time source.
* int up_timer_cancel(void): Cancels the interval timer. * int up_timer_cancel(void): Cancels the interval timer.
@@ -100,7 +100,7 @@ static bool g_timer_active;
* *
* Description: * Description:
* Initializes all platform-specific timer facilities. This function is * Initializes all platform-specific timer facilities. This function is
* called early in the initialization sequence by up_intialize(). * called early in the initialization sequence by up_initialize().
* On return, the current up-time should be available from * On return, the current up-time should be available from
* up_timer_gettime() and the interval timer is ready for use (but not * up_timer_gettime() and the interval timer is ready for use (but not
* actively timing. * actively timing.
+2 -2
View File
@@ -193,9 +193,9 @@ static void up_notify(FAR struct up_dev_s *priv)
nxsem_post(&priv->waitsem); nxsem_post(&priv->waitsem);
} }
/* If there are threads waiting on poll() for touchscreen data to become availabe, /* If there are threads waiting on poll() for touchscreen data to become available,
* then wake them up now. NOTE: we wake up all waiting threads because we * then wake them up now. NOTE: we wake up all waiting threads because we
* do not know that they are going to do. If they all try to read the data, * do not know what they are going to do. If they all try to read the data,
* then some make end up blocking after all. * then some make end up blocking after all.
*/ */
+1 -1
View File
@@ -72,7 +72,7 @@
* function is called to initialize the processor specific portions of the * function is called to initialize the processor specific portions of the
* new TCB. * new TCB.
* *
* This function must setup the intial architecture registers and/or stack * This function must setup the initial architecture registers and/or stack
* so that execution will begin at tcb->start on the next context switch. * so that execution will begin at tcb->start on the next context switch.
* *
****************************************************************************/ ****************************************************************************/
+1 -1
View File
@@ -64,7 +64,7 @@
* function is called to initialize the processor specific portions of the * function is called to initialize the processor specific portions of the
* new TCB. * new TCB.
* *
* This function must setup the intial architecture registers and/or stack * This function must setup the initial architecture registers and/or stack
* so that execution will begin at tcb->start on the next context switch. * so that execution will begin at tcb->start on the next context switch.
* *
****************************************************************************/ ****************************************************************************/

Some files were not shown because too many files have changed in this diff Show More