diff options
| author | Louis Burda <quent.burda@gmail.com> | 2023-02-05 17:10:07 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2023-02-05 17:10:07 +0100 |
| commit | d19f5ce8b56e1199eb9e20ba83b38f8e3e915437 (patch) | |
| tree | 4314e72cf02d14dd86895e328a88fb7c86e09106 /src/util.c | |
| parent | b50765e6377eda0b6b4aa292379f8b01e48ae5c0 (diff) | |
| download | sxkbd-d19f5ce8b56e1199eb9e20ba83b38f8e3e915437.tar.gz sxkbd-d19f5ce8b56e1199eb9e20ba83b38f8e3e915437.zip | |
Make led blip asynchronous and add sync mechanism to split comms
Diffstat (limited to 'src/util.c')
| -rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ stdio_log(int level, const char *fmtstr, ...) va_list ap, cpy; if (level == LOG_WARN) { - led_blip(HARD_RED); + led_start_blip(HARD_RED, 100); va_copy(cpy, ap); va_start(cpy, fmtstr); vsnprintf(warnlog, sizeof(warnlog), fmtstr, cpy); |
