X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=firmware%2Flib%2Fcommand.c;h=8f9501a61841cf2ea0a4c0110f9b92eeb256fd53;hp=afeb3f9fd452e062868629a3d3d2824fae227f92;hb=757884d51cc6b119a3b1773873c446926b26011d;hpb=ae09939eb8c62c83f244527e7916cee5f9145e6c diff --git a/firmware/lib/command.c b/firmware/lib/command.c index afeb3f9..8f9501a 100644 --- a/firmware/lib/command.c +++ b/firmware/lib/command.c @@ -7,17 +7,15 @@ #include "platform.h" #include -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++)); } @@ -32,20 +30,86 @@ void debugstr(const char *str){ txstring(0xFF,0xFF,str); } +//! brief Debug a hex word string. +void debughex(u16 v) { + debugbytes((void *)&v, 2); +} + +//! brief Debug a hex word string. +void debughex32(u32 v) { + debugbytes((void *)&v, 4); +} + +/*! \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. @@ -64,3 +128,57 @@ void msdelay(unsigned int ms){ } //Using TimerA might be cleaner. } + + +/* To better satisfy the somewhat odd timing requirements for + dsPIC33F/PIC24H ICSP programming, and for better control of GoodFET + timing more generally, here are a few delay routines that use Timer A. + + Note that I wrote these referring only to the MSP430x2xx family + manual. Beware on MSP430x1xx chips. Further note that, assuming + some minor errors will be made, I try to err on the side of + delaying slightly longer than requested. */ +void prep_timer() +{ + BCSCTL2 = 0x00; /* In particular, use DCOCLK as SMCLK source with + divider 1. Hence, Timer A ticks with system + clock at 16 MHz. */ + + TACTL = 0x0204; /* Driven by SMCLK; disable Timer A interrupts; + reset timer in case it was previously in use */ +} + +//! Delay for specified number of milliseconds (given 16 MHz clock) +void delay_ms( unsigned int ms ) +{ + // 16000 ticks = 1 ms + TACTL |= 0x20; // Start timer! + while (ms--) { + while (TAR < 16000) + asm( "nop" ); + TACTL = 0x0224; + } + TACTL = 0x0204; // Reset Timer A, till next time +} + +//! Delay for specified number of microseconds (given 16 MHz clock) +void delay_us( unsigned int us ) +{ + // 16 ticks = 1 us + TACTL |= 0x20; // Start timer! + while (us--) { + while (TAR < 16) + asm( "nop" ); + TACTL = 0x0224; + } + TACTL = 0x0204; // Reset Timer A, till next time +} + +//! Delay for specified number of clock ticks (16 MHz clock implies 62.5 ns per tick). +void delay_ticks( unsigned int num_ticks ) +{ + TACTL |= 0x20; // Start timer + while (TAR < num_ticks) + asm( "nop" ); + TACTL = 0x0204; // Reset Timer A, till next time +}