X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=firmware%2Flib%2Fcommand.c;h=6388c643b366a82b2f1384c2b0e6b1960098d944;hp=8f9501a61841cf2ea0a4c0110f9b92eeb256fd53;hb=f244df1b2d3010548ed2cceabdde44f36089a29a;hpb=b27bfe788715f1d1127a1649ac5e3cbe91037af9 diff --git a/firmware/lib/command.c b/firmware/lib/command.c index 8f9501a..6388c64 100644 --- a/firmware/lib/command.c +++ b/firmware/lib/command.c @@ -1,6 +1,6 @@ /*! \file command.c \author Travis Goodspeed - \brief These functions manage command interpretation. + \brief These functions manage command interpretation and timing. */ #include "command.h" @@ -66,7 +66,7 @@ void txhead(unsigned char app, void txdata(unsigned char app, unsigned char verb, unsigned long len){ - unsigned int i=0; + unsigned long i=0; if(silent) return; txhead(app,verb,len); @@ -131,8 +131,8 @@ void msdelay(unsigned int ms){ /* 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. + PIC33F/24H/24F ICSP programming, and for better control of GoodFET + timing more generally, here are a few delay routines that use Timer B. Note that I wrote these referring only to the MSP430x2xx family manual. Beware on MSP430x1xx chips. Further note that, assuming @@ -140,45 +140,62 @@ void msdelay(unsigned int ms){ delaying slightly longer than requested. */ void prep_timer() { + #ifdef MSP430 BCSCTL2 = 0x00; /* In particular, use DCOCLK as SMCLK source with - divider 1. Hence, Timer A ticks with system + divider 1. Hence, Timer B ticks with system clock at 16 MHz. */ - TACTL = 0x0204; /* Driven by SMCLK; disable Timer A interrupts; + TBCTL = 0x0204; /* Driven by SMCLK; disable Timer B interrupts; reset timer in case it was previously in use */ + #else + #warning "prep_timer() unimplemented for this platform." + #endif } - +#if (platform != tilaunchpad) //! Delay for specified number of milliseconds (given 16 MHz clock) void delay_ms( unsigned int ms ) { + #ifdef MSP430 // 16000 ticks = 1 ms - TACTL |= 0x20; // Start timer! + TBCTL |= 0x20; // Start timer! while (ms--) { - while (TAR < 16000) + while (TBR < 16000) asm( "nop" ); - TACTL = 0x0224; + TBCTL = 0x0224; } - TACTL = 0x0204; // Reset Timer A, till next time + TBCTL = 0x0204; // Reset Timer B, till next time + #else + debugstr("delay_ms unimplemented"); + #endif } //! Delay for specified number of microseconds (given 16 MHz clock) void delay_us( unsigned int us ) { + #ifdef MSP430 // 16 ticks = 1 us - TACTL |= 0x20; // Start timer! + TBCTL |= 0x20; // Start timer! while (us--) { - while (TAR < 16) + while (TBR < 16) asm( "nop" ); - TACTL = 0x0224; + TBCTL = 0x0224; } - TACTL = 0x0204; // Reset Timer A, till next time + TBCTL = 0x0204; // Reset Timer B, till next time + #else + debugstr("delay_us unimplemented"); + #endif } //! 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) + #ifdef MSP430 + TBCTL |= 0x20; // Start timer + while (TBR < num_ticks) asm( "nop" ); - TACTL = 0x0204; // Reset Timer A, till next time + TBCTL = 0x0204; // Reset Timer B, till next time + #else + debugstr("delay_ticks unimplemented"); + #endif } +#endif