mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-12-28 02:10:25 -07:00
Deploying to gh-pages from @ Klipper3d/klipper@1c18265a62 🚀
This commit is contained in:
parent
66ec86d9ce
commit
8df597f290
10 changed files with 4 additions and 4 deletions
|
|
@ -1410,11 +1410,11 @@ functions are declared using the DECL_COMMAND() macro (see the
|
|||
<p>Task, init, and command functions always run with interrupts enabled
|
||||
(however, they can temporarily disable interrupts if needed). These
|
||||
functions should avoid long pauses, delays, or do work that lasts a
|
||||
significant time. These functions schedule work at specific times by
|
||||
scheduling timers. Long delays in these "task" functions result in
|
||||
significant time. (Long delays in these "task" functions result in
|
||||
scheduling jitter for other "tasks" - delays over 100us may become
|
||||
noticeable, delays over 500us may result in command retransmissions,
|
||||
delays over 100ms may result in watchdog reboots.</p>
|
||||
delays over 100ms may result in watchdog reboots.) These functions
|
||||
schedule work at specific times by scheduling timers.</p>
|
||||
<p>Timer functions are scheduled by calling sched_add_timer() (located in
|
||||
<strong>src/sched.c</strong>). The scheduler code will arrange for the given
|
||||
function to be called at the requested clock time. Timer interrupts
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue