summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFiles
2021-03-31Merge branch 'rs/GP-1111-cemode-for-telit' into 'master' 1.0.24Jeff Hatch6
[GP-1111] mPower R. Apr 2021: +CEMODE shall be set to CEMODE=2 - libmts-io for Telit See merge request !37
2021-03-31[GP-1111] mPower R. Apr 2021: +CEMODE shall be set to CEMODE=2 - libmts-io ↵rodion.shyshkin2
for Telit Changes after a code review.
2021-03-31[GP-1111] mPower R. Apr 2021: +CEMODE shall be set to CEMODE=2 - libmts-io ↵rodion.shyshkin4
for Telit Changes after a code review
2021-03-31[GP-1111] mPower R. Apr 2021: +CEMODE shall be set to CEMODE=2 - libmts-io ↵rodion.shyshkin5
for Telit Adding an ability to set UE mode of operation to libmts-io. There was added two clear virtual methods in iCellularRadio, correct implementation for them for Telit LTE modems and implementation with error messages for all other.
2021-03-08Merge branch 'jsoncpp_update' into 'master' 1.0.23Jeff Hatch1
Allow building against jsoncpp 1.9.2 See merge request !35
2021-03-07Allow building agains jsoncpp 1.9.2Mykyta Dorokhin1
2020-08-25Merge branch 'sk/IN4046-mng2-cell-mode-fix' into 'master' 1.0.22Jeff Hatch1
[IN:4046] MTR-MNG2 Dashboard has blank Cellular Mode. See merge request !34
2020-08-19[IN:4046] MTR-MNG2 Dashboard has blank Cellular Mode.Serhii Kostiuk1
This commit contains the following changes: - mark all GSM modes as 2G (EGPRS/EDGE is also 2G/GSM); - mark NB-IoT and CAT M1 as 4G/LTE. Those changes allow to correctly display 4G modes for MNG2 and 2G modes for all radios.
2020-08-11Merge branch 'sk/l4g1-delta-fwu' into 'master' Jeff Hatch6
Quectel EG25-G Delta Radio Firmware Upgrade support - libmts-io implementation See merge request !33
2020-08-07Quectel EG25-G Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk2
Small improvements in code comments.
2020-08-07Quectel EG25-G Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk1
Switched from `sendCommand` with empty command argument to `waitResponse` for URC analysis. Sending empty string to the serial interface is undefined behaviour according to the POSIX standart. More of it, we don't need to execute `write` on file descriptor to wait for URC messages. It was more like a hack than something that was actually required. This commit removes the hack and replaces it with a proper waiting for a response.
2020-08-07Quectel EG25-G Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk1
This commit fixes additional issue discrovered after implementation of ACK mode. When a single 1024 bytes long chunk of data is sent to the radio - the radio reports that it received nothing. Which is a lie according to Wireshark USB logs, data is actually sent over USB and looks like radio acknowledged it in USB packet. This issue is reproducible when chunk size is set to 1024 or 512 bytes. This issue is not reproducible with chunk size of 256 bytes. When 1025 or 2048 bytes are sent to the radio - all bytes are received just fine and we get an ACK string for each 1024 bytes of data. This commit allows to send 2048 bytes long chunks of data, wait for two ACK strings from the radio and finish transmission successfully.
2020-08-07Quectel EG25-G Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk2
During testing I discrovered that EG25-G radio may lose some data during transmission over Serial AT interface or just freezes and stops responding over Serial AT interface. When ACK mode is not used, the radio may either return an error: ``` Expected: [+QFUPL: 24312545,fa6b], Actual: [+QFUPL: 17124608,b907 +CME ERROR: 409 // Fail to write the file ] ``` Or it may just freeze on modem_at1 interface and stop responding to AT commands: ``` 8:0:34:32|TRACE|RADIO| Sending command [AT] 8:0:34:133|DEBUG|RESULT: 8:0:34:133|DEBUG|Shutting Down ``` This commit implements an alternative, ACK mode for data transmission to prevent data losses. Data is sent in chunks and the device waits for ACK string from the radio for each chunk.
2020-08-06Quectel EG25-G Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk4
Added waitResponse overloads to the public interface of ICellularRadio.
2020-08-06Quectel EG25-G Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk2
Refactored MTS::IO::ICellularRadio::sendCommand. Moved response waiting code to the MTS::IO::ICellularRadio::waitResponse function. **Motivation** In many places in the modern libmts-io implementation there are cases when we need to wait for some response from the radio without executing or sending any commands. Such places may wait for some URC messages, acknowledge strings during data transmission and so on. One way to handle such cases is to use `sendCommand` with `cmd` argument set to an empty string. It generally works but according to POSIX: "If count is zero and fd refers to a file other than a regular file, the results are not specified." The other way to handle such cases is to use `isNeedMoreData` callback of `sendCommand` function to analyze all the data on the fly. But this approach may not work for data transfers when `sendCommand` and its std::string argument may not be used to store binary data with null characters within. This commit moves the "wait for the radio to answer" part to the separate function which allows reusablity of such a code.
2020-08-05Quectel EG25-G Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk1
Increase the timeout for +QFUPL response to 10 seconds. 5 seconds is the default timeout for the radio to wait for new data on its serial interface. +QFUPL response timeout was increased to 10 seconds to debug cases when hardware flow control fails for some reason and the radio does not receive all the data sent to it from the device.
2020-08-04Quectel EG25-G Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk1
CellularRadio::resetConnection implementations disables serial echo on connection reset. Serial echo is disabled using ATE0 command, radio may handle it and return an OK response. During testing I discovered that EG25 radio does not return an OK response in 100ms (default timeout time) and this OK response may conflict with successive AT commands. This commit adds a simple "AT" command to be executed before getVendorFirmware to "eat" all the data accumulated in the buffer.
2020-08-04Quectel EG25-G Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk2
During testing with L4G1 device I discovered some inconsistencies in behaviour between EG25-G device and EG95 devices (EG95-NA and EG95-E). EG25-G device that I have on hands does not allow to perform downgrades using delta images. When there is an attempt to apply a downgrade delta image it behaves as the following: - radio prints `OK` - radio prints `+QIND: "FOTA",502` - radio is not rebooted While EG95 radios always reboot at least once to apply the firmware image. Even if it is not valid. Also I noticed that detach from the serial bus may take more than 10 seconds in some rare cases. Thus we need to wait not a fixed amount of time but until the radio actually detaches from the bus. This commit attempts to address the findings described above.
2020-08-04Quectel EG25-G Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk1
Delta Radio Firmware Upgrade implementation uses file management commands for Quectel radios. Radio behaviour for +QFLST output on EG25 radios is different that on EG95: - EG95 radios list all files on UFS _with_ "UFS:" prefix; - EG25 radios list all files on UFS _without_ "UFS:" prefix. This commit allows to handle both formats of +QFLST output to check file presense.
2020-07-31Merge branch 'sk/GP-759-L4N1-delta-fwu' into 'master' Jeff Hatch3
[GP-759] Delta Radio Firmware Upgrade support for L4N1 See merge request !32
2020-07-28[GP-759] Delta Radio Firmware Upgrade support for L4N1Serhii Kostiuk1
Increased the maximum delay for AT#OTAUPW response to 10 seconds. In some cases 1 second is too short for the radio to start accepting the injected firmware.
2020-07-28[GP-759] Added delta radio firmware upgrade support for Telit LE910C4-NFSerhii Kostiuk2
2020-07-24Merge branch 'sk/quectel-delta-fwu' into 'master' Jeff Hatch2
Quectel Delta Radio Firmware Upgrade support - libmts-io implementation See merge request !31
2020-07-23Quectel Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk1
During testing it was discovered that rarely CellularRadio::sendCommand implementation returns not one line with URC output but multiple lines. It happened once during testing and development. But is likely to happen again under increased CPU load and/or when CPU does not keep pace with the serial data flow.
2020-07-23Quectel Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk2
Added more strict handling for comma-separated data in URC messages to prevent out-of-bounds reads.
2020-07-22Merge branch 'delta-radio-fwu' into 'master' Jeff Hatch12
Delta Radio Firmware Upgrade support: LEU7 and L4E1 See merge request !30
2020-07-22Telit Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk1
During testing it was discovered that the radio is detached for 4 minutes 40 seconds while the upgrade is in progress. This was too close to the time limit of 5 minutes set before. This commit increases attach timeout to 6 minutes to be on the safe side.
2020-07-22Telit Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk3
Changes after code review: 1. Handle cases when the number of bytes written is different from the number of bytes requested to transfer. 2. Use fstat instead of lseek to determine the firmware size. 3. Renamed TelitRadio::startWrite and TelitRadio::abortWrite functions to better represent their applicability scope.
2020-07-21Quectel Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk1
Fixed Quectel checksum calculation algorithm to correctly handle odd file sizes.
2020-07-17Merge branch 'ap/vendor_firmware' into 'delta-radio-fwu' Serhii Kostiuk10
Add vendor firmware version See merge request !29
2020-07-17Code reviewAndrii Pientsov4
2020-07-17Code reviewAndrii Pientsov4
2020-07-16Add vendor firmware versionAndrii Pientsov8
2020-07-15Merge branch 'ap/l4e1-delta-fwu' into 'delta-radio-fwu' Serhii Kostiuk8
MTX-3404 mPower Oct20: Delta Radio Firmware Upgrade - L4E1 - libmts-io support See merge request !28
2020-07-15MTX-3404 Code ReviewAndrii Pientsov6
2020-07-13MTX-3404 Code ReviewAndrii Pientsov6
2020-07-13Merge remote-tracking branch 'origin/delta-radio-fwu' into ap/l4e1-delta-fwuAndrii Pientsov1
2020-07-10MTX-3404 mPower Oct20: Delta Radio Firmware Upgrade - L4E1 - libmts-io supportAndrii Pientsov4
2020-07-10Merge branch 'sk/quectel-delta-fwu' into 'delta-radio-fwu' Andrii Pientsov1
Quectel Delta Radio Firmware Upgrade support - libmts-io implementation See merge request !27
2020-07-10Quectel Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk1
Small fixes and improvements. 1. Fixed casing for the "FUMO Error: timeout, radio is not responding" message. All error messages passed to the status callback shall start with "FUMO Error:" 2. Removed extra carriage return for the "abortFileUpload" command. Passing "+++\r" instead of the "+++" to the radio works for Quectel but cause issues for Telit. At the same time Quectel specificly requires to "Do not input any character within 1s after “+++” has been inputted." in their FILE manual. Possibly, "any character" includes carriage return. 3. Fixed a typo: "lenght" -> "length"
2020-07-06Merge branch 'sk/quectel-delta-fwu' into 'delta-radio-fwu' Andrii Pientsov6
Quectel Delta Radio Firmware Upgrade support - libmts-io implementation See merge request !26
2020-07-06Quectel Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk1
Fixed message format for FUMO Done and FUMO Error messages. The original code with "FUMO done" ("done" lowercase) and "FUMO error" ("error" lowercase) was copied from the ME910C1-WW implementation. At the same time other places of the code use Title Case for "Done", "Error" and "Info" messages. This commit fixes the last bunch of messages in the QuectelRadio Delta FWU implementation to use Title Case. This simplifies handling in various scripts and other components.
2020-07-06Quectel Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk1
Fixed format of FILE upload log messages.
2020-07-03Quectel Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk2
Implemented firmware version check detection.
2020-07-03Quectel Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk1
Cleanup for the printouts and status messages.
2020-07-03Quectel Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk2
Simplified usage of step callbacks in the QuectelRadio class. Refactored existing function to use a wrapper and preven repetitive checks.
2020-07-03Quectel Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk5
Started code cleanup before finishing the procedure. Renamed functions related to the delta radio firmware upgrade to follow established patterns: - uploadDeltaFirmwareFile -> fumoLocalInject - applyDeltaFirmwareFile -> fumoLocalApply - removeDeltaFirmwareFile -> fumoLocalCleanup - new function: updateFumoLocal - encapsulates all the magic for radios that may not support separate stages for the delta upload and delta apply
2020-07-03WIP: Quectel Delta Radio Firmware Upgrade support - libmts-io implementationSerhii Kostiuk2
Initial implementation of the "Apply delta firmware" step. Requires cleanup.
2020-06-30Merge remote-tracking branch 'origin/master' into sk/quectel-delta-fwuSerhii Kostiuk6
2020-06-30Merge branch 'sk/port-lna7-changes' into 'master' Jeff Hatch6
[MTX-3489] mPower Oct20: Porting "LNA7 Intermediate Release" changes See merge request !25