I am using nRF9160 to develop a mobile measuring device.
For this purpose I need LTE and GPS, I know it is shared so I had to implement PSM/eDRX to make it work together. This goes well to a maximum logging frequency of about 13 seconds because GNSS is blocked by LTE activity for about 11/12 seconds after I send a measurement.
For this reason I changed my application, when I got a fix I do a measurement and send this logging. Then I have to wait till there is a new fix, about 12/13 seconds and do this again. I found out this 12/13 seconds that GNSS is blocked by LTE is caused by CSCON: 1, after 12 seconds I see +CSCON: 0 and there is a fix and a new measurement logged. I log these measurements to AWS IoT core and sending the data and waiting for an ACK is about 1 second. The other 12 seconds it is just waiting for CSCON getting 0 again.
Is there a possibility to decrease this CSCON: 1 time so it gets +CSCON: 0 sooner so I can get a fix more often, preferable every 5 or at least 10 seconds?