File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -129,6 +129,7 @@ function mspPollReply()
129
129
while true do
130
130
ret = protocol .mspPoll ()
131
131
if type (ret ) == " table" then
132
+ mspLastReq = 0
132
133
return mspRxReq , ret
133
134
else
134
135
break
Original file line number Diff line number Diff line change @@ -325,10 +325,10 @@ function run_ui(event)
325
325
end
326
326
-- normal page viewing
327
327
elseif currentState <= pageStatus .display then
328
- if event == EVT_VIRTUAL_PREV_PAGE then
328
+ if not isTelemetryScript and event == EVT_VIRTUAL_PREV_PAGE then
329
329
incPage (- 1 )
330
330
killEvents (event ) -- X10/T16 issue: pageUp is a long press
331
- elseif event == EVT_VIRTUAL_NEXT_PAGE or event == EVT_VIRTUAL_MENU then
331
+ elseif ( not isTelemetryScript and event == EVT_VIRTUAL_NEXT_PAGE ) or ( isTelemetryScript and event == EVT_VIRTUAL_MENU ) then
332
332
incPage (1 )
333
333
elseif event == EVT_VIRTUAL_PREV or event == EVT_VIRTUAL_PREV_REPT then
334
334
incLine (- 1 )
You can’t perform that action at this time.
0 commit comments