FreeCalypso > hg > freecalypso-docs
comparison Calypso-PWM-light @ 40:1cdd0f0a6e70
Calypso-PWM-light and Calypso-buzzer-output articles written
based on oscilloscope probing experiments
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 29 May 2021 07:07:05 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
39:ce044aa49baf | 40:1cdd0f0a6e70 |
---|---|
1 The Calypso chip has a PWM light output called LT/PWL - a digital output pin | |
2 that can be configured as either LT or PWL. The documentation we got from TI | |
3 is not exhaustively complete in describing the exact behaviour and output | |
4 waveforms of these two modes, thus I (Mother Mychaela) did a little bit of lab | |
5 experimentation to complete the picture. All experimental observations were | |
6 made with an oscilloscope probe placed on the LT/PWL signal on a FreeCalypso | |
7 Caramel2 board. | |
8 | |
9 LT mode | |
10 ======= | |
11 | |
12 LT functionality of the LT/PWL output is implemented in the ARMIO block, | |
13 together with GPIO and keypad functions. LT output stays at constant low level | |
14 (zero light) only when the LIGHT bit in BUZZ_LIGHT_REG (FFFE:480E) is cleared; | |
15 if the LIGHT bit is set, then a small amount of light will be emitted even if | |
16 LIGHT_LEVEL_REG is set to 0, contrary to CAL207 document saying "no light" in | |
17 this case. Light levels 0 through 63 as written into LIGHT_LEVEL_REG really | |
18 correspond to 1/64 through 64/64 in terms of the actual emitted PWM duty cycles. | |
19 If the register is written with the maximum light level of 63, then LT output | |
20 is a continuous high level, with no o'scope-observable PWM activity. If the | |
21 register is written with any other value, then PWM activity becomes visible on | |
22 an oscilloscope, with each full cycle period equal to 64 periods of CLK13M, | |
23 i.e., PWM frequency equals 203.125 kHz, the master 13 MHz clock divided by 64. | |
24 The shape of this PWM output is totally straightforward: if LIGHT_LEVEL_REG is | |
25 set to 0, LT output is high for one CLK13M period and low for 63 periods, then | |
26 repeat; if LIGHT_LEVEL_REG is set to 1, LT output is high for 2 CLK13M periods | |
27 and low for 62 periods, and so forth, with LIGHT_LEVEL_REG set to 63 resulting | |
28 in LT being high in all 64 slots, i.e., continuous high output with no visible | |
29 PWM activity. | |
30 | |
31 PWL mode | |
32 ======== | |
33 | |
34 The description of PWL in the CAL207 document is reasonably good; only a few | |
35 additional notes need to be made: | |
36 | |
37 * By the fundamental principles of how all LFSRs work, an LFSR of N bits CANNOT | |
38 have a period of 2**N, instead the greatest period that can be achieved with | |
39 careful choice of polynomial is 2**N-1. Calypso PWL block features an 8-bit | |
40 LFSR, TI's choice of polynomial (hard-wired in the silicon) is a proper one, | |
41 thus the period is 255. | |
42 | |
43 * Two alternate hw implementations are possible: XOR implementation would | |
44 produce an LFSR with valid values [1,255], whereas XNOR implementation would | |
45 produce an LFSR with valid values [0,254]. Obviously we have no way to look | |
46 inside Calypso silicon, but the visible behaviour with different comparator | |
47 values suggests that the internal LFSR runs in the [1,255] range. There must | |
48 be some reset logic in the hw that prevents a stuck value of 0. | |
49 | |
50 * The visible output on the PWL pin repeats every 255 cycles of CLK32K, and the | |
51 average light intensity ranges from 0/255 to 254/255 in 1/255 steps. If | |
52 PWL_LEVEL_REG is set to either 0 or 1, PWL output is continuous low; if the | |
53 register is set to 2, PWL output is 1/255 (on for just one CLK32K cycle out of | |
54 255), and if the register is set to maximum of 255, PWL output is NOT | |
55 continuous high as CAL207 claims, but instead it is 254/255, i.e., on for 254 | |
56 out of every 255 CLK32K periods. | |
57 | |
58 Deep sleep interaction | |
59 ====================== | |
60 | |
61 LT mode uses CLK13M, thus it is incompatible with deep sleep. PWL uses CLK32K | |
62 instead, thus deep sleep is perfectly OK with this light on. |