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()
129129 while true do
130130 ret = protocol .mspPoll ()
131131 if type (ret ) == " table" then
132+ mspLastReq = 0
132133 return mspRxReq , ret
133134 else
134135 break
Original file line number Diff line number Diff line change @@ -337,10 +337,10 @@ function run_ui(event)
337337 end
338338 -- normal page viewing
339339 elseif currentState <= pageStatus .display then
340- if event == EVT_VIRTUAL_PREV_PAGE then
340+ if not isTelemetryScript and event == EVT_VIRTUAL_PREV_PAGE then
341341 incPage (- 1 )
342342 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
344344 incPage (1 )
345345 elseif event == EVT_VIRTUAL_PREV or event == EVT_VIRTUAL_PREV_REPT then
346346 incLine (- 1 )
You can’t perform that action at this time.
0 commit comments