De clock-out lijkt op port 1, pin 0 te zitten.
A 50% duty cycle clock can be programmed to come out on P1.0, as shown in Figure 12-1. This
pin, besides being a regular I/O pin, has two alternate functions. It can be programmed to input
the external clock for Timer/Counter 2 or to output a 50% duty cycle clock ranging from 61 Hz to
4 MHz (for a 16 MHz operating frequency).
To configure the Timer/Counter 2 as a clock generator, bit C/T2 (T2CON.1) must be cleared and
bit T2OE (T2MOD.1) must be set. Bit TR2 (T2CON.2) starts and stops the timer.
The clock-out frequency depends on the oscillator frequency and the reload value of Timer 2
capture registers (RCAP2H, RCAP2L), as shown in the following equation.
code:
1
2
3
| Oscillator Frequency
Clock Out Frequency = ---------------------------------------
4 ×[65536 - (RCAP2H,RCAP2L)] |
In the clock-out mode, Timer 2 rollovers will not generate an interrupt. This behavior is similar to
when Timer 2 is used as a baud-rate generator. It is possible to use Timer 2 as a baud-rate generator
and a clock generator simultaneously. Note, however, that the baud-rate and clock-out
frequencies cannot be determined independently from one another since they both use
RCAP2H and RCAP2L
Dusss, om je clock-out te verdubbelen moet je de oscilator frequentie verdubbelen, ofwel zorgen dat de 4 ×[65536 - (RCAP2H,RCAP2L) half zo veel teruggeeft door (RCAP2H,RCAP2L) aan te passen.
Maargoed, meer informatie over jouw specifieke projectje is wel gewenst indien je meer hulp zou wensen.
[
Voor 13% gewijzigd door
Ibex op 20-05-2009 22:13
]