X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=firmware%2Flib%2Fcommand.c;h=415171b732d9bc011f1c559acc8d6b1409d7a2ef;hp=c5e35b561647fbace2a18e596ff33f7ccbf08baa;hb=d7ad826230d336ad7b7bd20e47dccc26d7ad456f;hpb=ef8b3dcd43ed26a82df672e64396bf8c024bb09c diff --git a/firmware/lib/command.c b/firmware/lib/command.c index c5e35b5..415171b 100644 --- a/firmware/lib/command.c +++ b/firmware/lib/command.c @@ -1,43 +1,127 @@ +/*! \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 cmddata[CMDDATALEN]; +unsigned char silent=0; //! Transmit a string. void txstring(unsigned char app, unsigned char verb, const char *str){ - unsigned char len=strlen(str); - serial_tx(app); - serial_tx(verb); - serial_tx(len); + unsigned long len=strlen(str); + txhead(app,verb,len); while(len--) 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); } +//! brief Debug a hex word string. +void debughex(u16 v) { + unsigned char a[7]; + a[0]='0'; a[1]='x'; + + a[2]=0xf&(v>>12); + a[2]+=(a[2]>9)?('a'-10):'0'; + + a[3]=0xf&(v>>8); + a[3]+=(a[3]>9)?('a'-10):'0'; + + a[4]=0xf&(v>>4); + a[4]+=(a[4]>9)?('a'-10):'0'; + + a[5]=0xf&(v>>0); + a[5]+=(a[5]>9)?('a'-10):'0'; + + a[6]=0; + + txstring(0xFF,0xFF,a); +} + +/*! \brief Transmit debug bytes. + + Transmits bytes for debugging. +*/ +void debugbytes(const char *bytes, unsigned int len){ + u16 i; + txhead(0xFF,0xFE,len); + for(i=0;i>=8; + serial_tx(l&0xFF); + l>>=8; + serial_tx(l&0xFF); + l>>=8; + serial_tx(l&0xFF); + l>>=8; +} +//! Transmit a word. +void txword(unsigned int l){ + serial_tx(l&0xFF); + l>>=8; + serial_tx(l&0xFF); + l>>=8; +} + //Be very careful changing delay(). //It was chosen poorly by trial and error.