Home
last modified time | relevance | path

Searched refs:timer (Results 1 – 18 of 18) sorted by relevance

/Kernel-v11.1.0/portable/IAR/STR91x/
Dport.c46 …be set to either 1 or 0 in FreeRTOSConfig.h to use either the Watchdog or timer 2 to generate the …
354 TIM_InitTypeDef timer; in prvSetupTimerInterrupt() local
358 TIM_StructInit( &timer ); in prvSetupTimerInterrupt()
361 timer.TIM_Mode = TIM_OCM_CHANNEL_1; in prvSetupTimerInterrupt()
362 timer.TIM_OC1_Modes = TIM_TIMING; in prvSetupTimerInterrupt()
363 timer.TIM_Clock_Source = TIM_CLK_APB; in prvSetupTimerInterrupt()
364 timer.TIM_Clock_Edge = TIM_CLK_EDGE_RISING; in prvSetupTimerInterrupt()
365 timer.TIM_Prescaler = a - 1; in prvSetupTimerInterrupt()
366 timer.TIM_Pulse_Level_1 = TIM_HIGH; in prvSetupTimerInterrupt()
367 timer.TIM_Pulse_Length_1 = s_nPulseLength = b - 1; in prvSetupTimerInterrupt()
[all …]
/Kernel-v11.1.0/portable/RVDS/ARM7_LPC21xx/
DportASM.s93 ; Interrupt service routine for preemptive scheduler tick timer
96 ; Uses timer 0 of LPC21XX Family
115 MOV R0, #T0MATCHBIT ; Clear the timer event
/Kernel-v11.1.0/portable/IAR/RL78/
Dportasm.s71 ; This is installed as the interval timer interrupt handler.
76 RCALL (_xTaskIncrementTick) ; Call the timer tick function.
/Kernel-v11.1.0/portable/IAR/MSP430/
Dportext.s4385 * Start off the scheduler by initialising the RTOS tick timer, then restoring
99 /* Install vTickISR as the timer A0 interrupt. */
/Kernel-v11.1.0/portable/IAR/AVR_Mega0/
Dporthardware.h111 #error Invalid timer setting.
Dportmacro.s90220 call xTaskIncrementTick ; Call the timer tick function.
/Kernel-v11.1.0/portable/IAR/AVR_AVRDx/
Dporthardware.h124 #error Invalid timer setting.
Dportmacro.s90226 call xTaskIncrementTick ; Call the timer tick function.
/Kernel-v11.1.0/portable/CCS/MSP430X/
Dportext.asm142 ; Start off the scheduler by initialising the RTOS tick timer, then restoring
/Kernel-v11.1.0/portable/IAR/MSP430X/
Dportext.s43123 * Start off the scheduler by initialising the RTOS tick timer, then restoring
/Kernel-v11.1.0/portable/IAR/78K0R/
Dportasm.s26112 call xTaskIncrementTick ; Call the timer tick function.
/Kernel-v11.1.0/portable/IAR/V850ES/
Dportasm_Hx2.s85256 jarl xTaskIncrementTick,lp ; Call the timer tick function.
275 jarl xTaskIncrementTick,lp ; Call the timer tick function.
Dportasm.s85256 jarl xTaskIncrementTick,lp ; Call the timer tick function.
275 jarl xTaskIncrementTick,lp ; Call the timer tick function.
Dportasm_Fx3.s85265 jarl xTaskIncrementTick,lp ; Call the timer tick function.
284 jarl xTaskIncrementTick,lp ; Call the timer tick function.
/Kernel-v11.1.0/portable/ThirdParty/XCC/Xtensa/
Dreadme_xtensa.txt48 - Timer interrupt option with at least one interruptible timer.
49 - Interrupt option (implied by the timer interrupt option).
386 timer that generates the periodic interrupt.
401 XT_TIMER_INDEX=n Specifies which timer to use for periodic tick.
403 provides more than one suitable timer and you
617 If the interrupt is for the system timer, it calls a special interrupt
618 handler for the system timer tick, which calls _frxt_timer_int then
/Kernel-v11.1.0/
DHistory.txt22 + Update vTaskEndScheduler to delete the timer and idle tasks,
53 + Update the POSIX port to use a timer thread for tick interrupts instead of
391 the case when the SysTick timer is not clocked from the same source as the CPU.
414 + Changed uxAutoReload parameter in timer functions to xAutoReload. The
637 + The RISC-V machine timer compare register can now be for any HART, whereas
639 + Update the sequence used to update the 64-bit machine timer
701 + Update the method used to detect if a timer is active. Previously the
702 timer was deemed to be inactive if it was not referenced from a list.
703 However, when a timer is updated it is temporarily removed from, then
704 re-added to a list, so now the timer's active status is stored separately.
[all …]
/Kernel-v11.1.0/portable/IAR/ATMega323/
Dportmacro.s90221 call xTaskIncrementTick ; Call the timer tick function.
/Kernel-v11.1.0/include/
DFreeRTOS.h2667 …OR_RUN_TIME_STATS should call a port layer function to setup a peripheral timer/counter that can t…