File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 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 @@ -337,10 +337,10 @@ function run_ui(event)
337
337
end
338
338
-- normal page viewing
339
339
elseif currentState <= pageStatus .display then
340
- if event == EVT_VIRTUAL_PREV_PAGE then
340
+ if not isTelemetryScript and event == EVT_VIRTUAL_PREV_PAGE then
341
341
incPage (- 1 )
342
342
killEvents (event ) -- X10/T16 issue: pageUp is a long press
343
- elseif event == EVT_VIRTUAL_NEXT_PAGE or event == EVT_VIRTUAL_MENU then
343
+ elseif ( not isTelemetryScript and event == EVT_VIRTUAL_NEXT_PAGE ) or ( isTelemetryScript and event == EVT_VIRTUAL_MENU ) then
344
344
incPage (1 )
345
345
elseif event == EVT_VIRTUAL_PREV or event == EVT_VIRTUAL_PREV_REPT then
346
346
incLine (- 1 )
You can’t perform that action at this time.
0 commit comments