diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-08-11 11:55:30 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-08-11 12:06:19 -0400 |
commit | f3da473285557b0424d9b649bc67faa686d74393 (patch) | |
tree | 0d6220db79b9a641051c0cc4c3f707cf4b963e36 /src/command.c | |
parent | f0f4ab7abec8abd79c06c6d69677f979a7059a80 (diff) | |
download | kutter-f3da473285557b0424d9b649bc67faa686d74393.tar.gz kutter-f3da473285557b0424d9b649bc67faa686d74393.tar.xz kutter-f3da473285557b0424d9b649bc67faa686d74393.zip |
docs: Update Code_Overview.md with PRU and command_dispatch() changes
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/command.c')
-rw-r--r-- | src/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command.c b/src/command.c index 87284ee8..3e5ef4c9 100644 --- a/src/command.c +++ b/src/command.c @@ -217,7 +217,7 @@ const struct command_encoder encode_acknak PROGMEM = { enum { CF_NEED_SYNC=1<<0, CF_NEED_VALID=1<<1 }; -// Find the next complete message. +// Find the next complete message block int8_t command_find_block(char *buf, uint8_t buf_len, uint8_t *pop_count) { |