Timer
Hardware timers that use 16-bit counters (TIMER0 ... 4) are available.
This timer can be used as a peripheral, such as a PWM output, or it can be used as a hardware timer for software processing.
Pin assignment
TIMER0
8, 9, 10
2,3,4
General-purpose timer function available
TIMER1
11
5
PWM output only
TIMER2
12
6
DO0*
PWM output only
TIMER3
13
7
DO1*
PWM output only
TIMER4
17
8
PWM output only
In TWELITE RED, there are more PWM output systems, but the standard response in TWELITE NET is TIMER0..4.
Initialize and start, end
Declare the ports that will not be used by the Timer by referring to the peripheral manual in advance. If this declaration is not made, the corresponding port will not be available as a general-purpose IO port after the Timer is initialized.
In the following example, bit0, 1, and 2 are set. This releases all PWM pins used of TIMER0 for general-purpose IO.
the parameter of vAHI_TimerFineGrainDIOControl()
Bit
Timer Input/Output
0
TIMER 0 gate/event input
1
TIMER 0 capture input
2
TIMER 0 PWM output
3
TIMER 1 PWM output
4
TIMER 2 PWM output
5
TIMER 3 PWM output
6
TIMER 4 PWM output
7
reserved
Next, the initialization structure tsTimerContext
for the Timer library is statically allocated and configured.必要なタイマーの周波数に対して適切な PreScale を選択するようにします。
Finally, start the Timer.
To stop the timer temporarily, call vTimerStop()
. To disable it completely, call vTimerDisable()
.
Timer interrupt
The u8DeviceID
parameter of ToCoNet_u8HwInt()
and ToCoNet_vHwEvent()
takes E_AHI_DEVICE_TIMER0
to E_AHI_DEVICE_TIMER4
.
As the interrupt frequency increases, the overhead of processing hard interrupts and events becomes non-negligible.
Disable unnecessary timer interrupts.
Set
bDisableInt
oftsTimerContext
toTRUE
.
Handled by interrupt processing only, no hard events are generated.
To
return
an interrupt handler withTRUE
.
PWM output
The PWM output can be set as the output of the Timer.
The following settings are required to have PWM output.
Set
bPWMOut
oftsTimerContext
toTRUE
.Set
u16duty
oftsTimerContext
to a value of 0..1024.Output is not disabled by
vAHI_TimerFineGrainDIOControl()
.
最終更新