Re: [PATCH 4/7] quectel: EC21 needs aux channel to be the first mux channel

2020-05-26 Thread Denis Kenzior
Hi Lars, On 5/26/20 5:16 AM, poesc...@lemonage.de wrote: From: Lars Poeschel The Quectel EC21 does only work correctly, if the mux channel used for aux is the first mux channel. It does only put it's URC messages in the first mux channel, so this has to be the aux channel in our case. ---

Re: [PATCH 0/7] Add quectel EC21 in serial mode

2020-05-26 Thread Denis Kenzior
Hi Lars, On 5/26/20 5:16 AM, poesc...@lemonage.de wrote: From: Lars Poeschel This patchset adds support for the quectel EC21 LTE modem connected through its serial port. Lars Poeschel (7): quectel: Add Quectel EC21 to known serial modems quectel: use lte atom on EC21 quectel: Query

[PATCH 5/7] quectel: EC21 does not understand AT+QIURC

2020-05-26 Thread poeschel
From: Lars Poeschel Because the Quectel EC21 does not understand the AT+QIURC command, we leave that out during initialisation. --- plugins/quectel.c | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/plugins/quectel.c b/plugins/quectel.c index 9ff75516..574de44e

[PATCH 6/7] voicecall: Quectel modem do not understand AT+CNAP

2020-05-26 Thread poeschel
From: Lars Poeschel --- drivers/atmodem/voicecall.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/atmodem/voicecall.c b/drivers/atmodem/voicecall.c index 7ab6567f..e7f24b60 100644 --- a/drivers/atmodem/voicecall.c +++ b/drivers/atmodem/voicecall.c @@ -1113,7

[PATCH 7/7] quectel: EC21 add ussd with atmodem driver

2020-05-26 Thread poeschel
From: Lars Poeschel --- plugins/quectel.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/quectel.c b/plugins/quectel.c index 574de44e..a8fbc75a 100644 --- a/plugins/quectel.c +++ b/plugins/quectel.c @@ -1295,8 +1295,10 @@ static void quectel_post_sim(struct

[PATCH 4/7] quectel: EC21 needs aux channel to be the first mux channel

2020-05-26 Thread poeschel
From: Lars Poeschel The Quectel EC21 does only work correctly, if the mux channel used for aux is the first mux channel. It does only put it's URC messages in the first mux channel, so this has to be the aux channel in our case. --- plugins/quectel.c | 51

[PATCH 0/7] Add quectel EC21 in serial mode

2020-05-26 Thread poeschel
From: Lars Poeschel This patchset adds support for the quectel EC21 LTE modem connected through its serial port. Lars Poeschel (7): quectel: Add Quectel EC21 to known serial modems quectel: use lte atom on EC21 quectel: Query the model before setting up the mux quectel: EC21 needs aux

[PATCH 3/7] quectel: Query the model before setting up the mux

2020-05-26 Thread poeschel
From: Lars Poeschel This is a change for the EC21. It will require specific handling before and right after setting up the mux. So this change prepares this. It queries the modem model before the mux (CMUX) is activated. --- plugins/quectel.c | 86 +++

[PATCH 2/7] quectel: use lte atom on EC21

2020-05-26 Thread poeschel
From: Lars Poeschel --- plugins/quectel.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/quectel.c b/plugins/quectel.c index 1a49a5b3..0f6896b1 100644 --- a/plugins/quectel.c +++ b/plugins/quectel.c @@ -1263,6 +1263,9 @@ static void quectel_post_sim(struct ofono_modem *modem)

[PATCH 1/7] quectel: Add Quectel EC21 to known serial modems

2020-05-26 Thread poeschel
From: Lars Poeschel This adds the Quectel EC21 to the known modems of the quectel driver and therefore allows to use it with its serial interface. --- plugins/quectel.c | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/plugins/quectel.c b/plugins/quectel.c index