From 2023dea41eac87e162270a5bfc955bef4eb2c768 Mon Sep 17 00:00:00 2001 From: rusEfi Date: Sun, 1 Apr 2018 23:38:34 -0400 Subject: [PATCH] docs --- firmware/console/binary/tunerstudio.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/firmware/console/binary/tunerstudio.h b/firmware/console/binary/tunerstudio.h index 79b2fa5106..e0e605d344 100644 --- a/firmware/console/binary/tunerstudio.h +++ b/firmware/console/binary/tunerstudio.h @@ -32,11 +32,23 @@ typedef struct { int testCommandCounter; } tunerstudio_counters_s; +/** + * handle non CRC wrapped command + */ bool handlePlainCommand(ts_channel_s *tsChannel, uint8_t command); int tunerStudioHandleCrcCommand(ts_channel_s *tsChannel, char *data, int incomingPacketSize); +/** + * rusEfi own test command + */ void handleTestCommand(ts_channel_s *tsChannel); +/** + * this command is part of protocol initialization + */ void handleQueryCommand(ts_channel_s *tsChannel, ts_response_format_e mode); +/** + * Gauges refresh + */ void handleOutputChannelsCommand(ts_channel_s *tsChannel, ts_response_format_e mode); char *getWorkingPageAddr(int pageIndex);