Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-04-08 | log: common logging method definition for all testers and helpers | Aleksander Morgado | |
2020-04-08 | modem-helpers: port clcc list parser to use object logging | Aleksander Morgado | |
2020-04-08 | log: new object logging support | Aleksander Morgado | |
So that we can provide the specific object id in every log associated to a given object. | |||
2020-01-31 | simtech,helpers: fix warnings with -Wdiscarded-qualifiers | Aleksander Morgado | |
simtech/tests/test-modem-helpers-simtech.c: In function ‘test_clcc_urc_single’: simtech/tests/test-modem-helpers-simtech.c:98:64: error: initialization discards ‘const’ qualifier from pointer target type [-Werror=discarded-qualifiers] 98 | { 1, MM_CALL_DIRECTION_INCOMING, MM_CALL_STATE_ACTIVE, "123456789" } | ^~~~~~~~~~~ simtech/tests/test-modem-helpers-simtech.c: In function ‘test_clcc_urc_multiple’: simtech/tests/test-modem-helpers-simtech.c:113:65: error: initialization discards ‘const’ qualifier from pointer target type [-Werror=discarded-qualifiers] 113 | { 2, MM_CALL_DIRECTION_INCOMING, MM_CALL_STATE_ACTIVE, "123456789" }, | ^~~~~~~~~~~ simtech/tests/test-modem-helpers-simtech.c:114:65: error: initialization discards ‘const’ qualifier from pointer target type [-Werror=discarded-qualifiers] 114 | { 3, MM_CALL_DIRECTION_INCOMING, MM_CALL_STATE_ACTIVE, "987654321" }, | ^~~~~~~~~~~ simtech/tests/test-modem-helpers-simtech.c: In function ‘test_clcc_urc_complex’: simtech/tests/test-modem-helpers-simtech.c:130:65: error: initialization discards ‘const’ qualifier from pointer target type [-Werror=discarded-qualifiers] 130 | { 1, MM_CALL_DIRECTION_INCOMING, MM_CALL_STATE_ACTIVE, "123456789" }, | ^~~~~~~~~~~ simtech/tests/test-modem-helpers-simtech.c:131:65: error: initialization discards ‘const’ qualifier from pointer target type [-Werror=discarded-qualifiers] 131 | { 2, MM_CALL_DIRECTION_INCOMING, MM_CALL_STATE_WAITING, "987654321" }, | ^~~~~~~~~~~ | |||
2019-10-16 | simtech: handle 'MISSED_CALL' URCs | Aleksander Morgado | |
https://source.puri.sm/Librem5/ModemManager/issues/6 | |||
2019-10-15 | simtech: handle '+RXDTMF' URCs reporting DTMF tones | Aleksander Morgado | |
2019-10-15 | simtech: handle non-standard '+CRING' URCs | Aleksander Morgado | |
The SIM7600E ends up emitting these URCs with too many <CR>s, and the generic +CRING handler doesn't catch them, interfering with other actions, e.g.: $ sudo mmcli --call 1 --accept error: couldn't accept the call: 'GDBus.Error:org.freedesktop.ModemManager1.Error.Core.Failed: Couldn't accept the call: Unhandled response '+CRING: VOICE +CRING: VOICE'' | |||
2019-10-15 | simtech: handle 'VOICE CALL' URCs | Aleksander Morgado | |
Just processing and parsing them for now, so that they don't interfere with other commands: $ sudo mmcli --call 1 --accept error: couldn't accept the call: 'GDBus.Error:org.freedesktop.ModemManager1.Error.Core.Failed: Couldn't accept the call: Unhandled response ' VOICE CALL: BEGIN'' | |||
2019-10-14 | simtech: implement +CLCC URC based call list management | Aleksander Morgado | |