Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
flow3r firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dos
flow3r firmware
Commits
571b126b
Verified
Commit
571b126b
authored
1 year ago
by
dos
Browse files
Options
Downloads
Patches
Plain Diff
lower latency
parent
aede9126
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
python_payload/st3m/reactor.py
+8
-9
8 additions, 9 deletions
python_payload/st3m/reactor.py
with
8 additions
and
9 deletions
python_payload/st3m/reactor.py
+
8
−
9
View file @
571b126b
...
...
@@ -147,20 +147,19 @@ class Reactor:
self
.
_top
.
think
(
hr
,
delta
)
# Draw!
if
s
elf
.
_ctx
is
None
and
sys_display
.
pipe_
available
():
self
.
_
ctx
=
sys_display
.
ctx
(
0
)
if
self
.
_
ctx
is
not
None
:
if
s
ys_display
.
pipe_available
()
and
not
sys_display
.
pipe_
full
():
ctx
=
sys_display
.
ctx
(
0
)
if
ctx
is
not
None
:
if
self
.
_last_ctx_get
is
not
None
:
diff
=
start
-
self
.
_last_ctx_get
self
.
stats
.
record_render_time
(
diff
)
self
.
_last_ctx_get
=
start
self
.
_ctx
.
save
()
self
.
_top
.
draw
(
self
.
_ctx
)
self
.
_ctx
.
restore
()
if
self
.
_ctx
is
not
None
and
not
sys_display
.
pipe_full
():
sys_display
.
update
(
self
.
_ctx
)
self
.
_ctx
=
None
ctx
.
save
()
self
.
_top
.
draw
(
ctx
)
ctx
.
restore
()
sys_display
.
update
(
ctx
)
# Share!
if
ftop
.
run
(
delta
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment