annotate src/cs/drivers/drv_app/buzzer/vibrator.c @ 303:f76436d19a7a default tip

!GPRS config: fix long-standing AT+COPS chance hanging bug There has been a long-standing bug in FreeCalypso going back years: sometimes in the AT command bring-up sequence of an ACI-only MS, the AT+COPS command would produce only a power scan followed by cessation of protocol stack activity (only L1 ADC traces), instead of the expected network search sequence. This behaviour was seen in different FC firmware versions going back to Citrine, and seemed to follow some law of chance, not reliably repeatable. This bug has been tracked down and found to be specific to !GPRS configuration, stemming from our TCS2/TCS3 hybrid and reconstruction of !GPRS support that was bitrotten in TCS3.2/LoCosto version. ACI module psa_mms.c, needed only for !GPRS, was missing in the TCS3 version and had to be pulled from TCS2 - but as it turns out, there is a new field in the MMR_REG_REQ primitive that needs to be set correctly, and that psa_mms.c module is the place where this initialization needed to be added.
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 08 Jun 2023 08:23:37 +0000
parents 4d203ef0eb4b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
289
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 /*
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 * This C module is a FreeCalypso addition: it implements hardware vibrator
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 * control as appropriate for different hw targets.
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 */
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 #include "main/sys_types.h"
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7 #include "memif/mem.h"
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 #include "armio/armio.h"
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 #include "buzzer.h"
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 #include "vibrator.h"
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11 #include "abb/abb.h"
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 #include "board.cfg"
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14 #include "fc-target.h"
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16 /* flag tells L1 to suppress deep sleep */
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
17 SYS_BOOL HW_vibrator_is_on;
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
18
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19 void HW_vibrator_on(SYS_UWORD8 level)
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
20 {
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
21 HW_vibrator_is_on = 1;
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
22 #ifdef CONFIG_TARGET_PIRELLI
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
23 /* vibrator is controlled via BU output */
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
24 BZ_Tone(0);
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
25 BZ_Volume(level >> 2);
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
26 BZ_Enable();
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
27 #elif defined(CONFIG_TARGET_COMPAL)
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
28 /* vibrator is controlled via Iota AUX DAC */
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
29 ABB_Write_Register_on_page(PAGE0, TOGBR1, 0x20);
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
30 ABB_Write_Register_on_page(PAGE0, AUXDAC, (level << 2) | 3);
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
31 #endif
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
32 }
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
33
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
34 void HW_vibrator_off(void)
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
35 {
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
36 #ifdef CONFIG_TARGET_PIRELLI
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
37 BZ_Disable();
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
38 #elif defined(CONFIG_TARGET_COMPAL)
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
39 ABB_Write_Register_on_page(PAGE0, AUXDAC, 0);
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
40 ABB_Write_Register_on_page(PAGE0, TOGBR1, 0x10);
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
41 #endif
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
42 HW_vibrator_is_on = 0;
4d203ef0eb4b implement vibrator on/off control driver
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
43 }