diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2023-01-05 03:09:43 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2023-01-05 03:09:43 -0500 |
commit | a564824009cd63c12000198676ad8abaaa9c4efe (patch) | |
tree | 907e2aed409ea5f5a72ed2babde2ccab03ddb3dc /klippy | |
parent | cbc17a7cb6569ea39621404456e55c4b6ce01189 (diff) | |
download | kutter-a564824009cd63c12000198676ad8abaaa9c4efe.tar.gz kutter-a564824009cd63c12000198676ad8abaaa9c4efe.tar.xz kutter-a564824009cd63c12000198676ad8abaaa9c4efe.zip |
serialqueue: Add comment to do_write()
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy')
-rw-r--r-- | klippy/chelper/serialqueue.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/chelper/serialqueue.c b/klippy/chelper/serialqueue.c index 75d39d21..684710c1 100644 --- a/klippy/chelper/serialqueue.c +++ b/klippy/chelper/serialqueue.c @@ -356,6 +356,7 @@ kick_event(struct serialqueue *sq, double eventtime) pollreactor_update_timer(sq->pr, SQPT_COMMAND, PR_NOW); } +// OS write of data to be sent to the mcu static void do_write(struct serialqueue *sq, void *buf, int buflen) { |