File tree Expand file tree Collapse file tree 2 files changed +2
-17
lines changed
module-cellular/Modem/TS0710 Expand file tree Collapse file tree 2 files changed +2
-17
lines changed Original file line number Diff line number Diff line change 22
22
* ` [messages] ` SMS bubble edges smoothing.
23
23
* ` [phonebook] ` Crash on contact details application exit fix.
24
24
* ` [specialInput] ` Special characters inserts no longer call onBeforeShow.
25
+ * ` [cellular] ` Temporary removed SMS memory setting.
25
26
26
27
## [ 0.42.1 2020-10-12]
27
28
Original file line number Diff line number Diff line change @@ -240,24 +240,8 @@ TS0710::ConfState TS0710::ConfProcedure()
240
240
}
241
241
}
242
242
243
- bool timed_out = false ;
244
- constexpr uint32_t cpmsTmeout = 5 ;
245
- const auto cpmsTmeoutTicks =
246
- cpp_freertos::Ticks::GetTicks () + pdMS_TO_TICKS (cpmsTmeout * utils::time::milisecondsInSecond);
247
- while (!timed_out) {
248
- if (parser->cmd (at::AT::SET_SMS_STORAGE)) {
249
- break ;
250
- }
251
- vTaskDelay (pdMS_TO_TICKS (utils::time::milisecondsInSecond));
252
- timed_out = cpp_freertos::Ticks::GetTicks () > cpmsTmeoutTicks;
253
- if (timed_out) {
254
- return ConfState::Failure;
255
- }
256
- }
257
-
258
243
LOG_WARN (" TODO: determine while this retry loop is necessary" );
259
-
260
- timed_out = false ;
244
+ bool timed_out = false ;
261
245
constexpr uint32_t qsclkTmeout = 30 ;
262
246
const auto qsclkTmeoutTicks =
263
247
cpp_freertos::Ticks::GetTicks () + pdMS_TO_TICKS (qsclkTmeout * utils::time::milisecondsInSecond);
You can’t perform that action at this time.
0 commit comments