X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=firmware%2Flib%2Fcommand.c;h=dadffbd0e4fa0dd5a8fe28f3e4216a389e1e8d6a;hb=25829298efbada4ec4121745019cb68cca319402;hp=738fab6271e306385082da670b4a643e839fdaac;hpb=3e4369fde16445c994da1b1efb332704aad0716d;p=goodfet diff --git a/firmware/lib/command.c b/firmware/lib/command.c index 738fab6..dadffbd 100644 --- a/firmware/lib/command.c +++ b/firmware/lib/command.c @@ -1,10 +1,14 @@ +/*! \file command.c + \author Travis Goodspeed + \brief These functions manage command interpretation. +*/ + #include "command.h" #include "platform.h" #include -//! Different command handling functions. - unsigned char cmddata[256]; +unsigned char silent=0; //! Transmit a string. void txstring(unsigned char app, @@ -18,11 +22,24 @@ void txstring(unsigned char app, serial_tx(*(str++)); } +/*! \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); +} + + //! Transmit data. void txdata(unsigned char app, unsigned char verb, unsigned char len){ unsigned int i=0; + if(silent) + return; serial_tx(app); serial_tx(verb); serial_tx(len);