X-Git-Url: http://git.rot13.org//?p=goodfet;a=blobdiff_plain;f=firmware%2Flib%2Fcommand.c;fp=firmware%2Flib%2Fcommand.c;h=afeb3f9fd452e062868629a3d3d2824fae227f92;hp=6d721084e80e4c6035b910939064fe6958ec119f;hb=ae09939eb8c62c83f244527e7916cee5f9145e6c;hpb=ce0bba3cfbf4844bdce1f6984af24d1f78c347f1 diff --git a/firmware/lib/command.c b/firmware/lib/command.c index 6d72108..afeb3f9 100644 --- a/firmware/lib/command.c +++ b/firmware/lib/command.c @@ -1,7 +1,6 @@ /*! \file command.c \author Travis Goodspeed - - These functions manage command interpretation. + \brief These functions manage command interpretation. */ #include "command.h" @@ -23,7 +22,12 @@ void txstring(unsigned char app, serial_tx(*(str++)); } -//! Transmits a debugging string out of line. +/*! \brief Transmit a debug string. + + Transmits a debugging string that is to be printed + out of line by the client. This is just for record-keeping; + it is not considered a proper reply to a query. + */ void debugstr(const char *str){ txstring(0xFF,0xFF,str); }