X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=firmware%2Flib%2Fcommand.c;h=92c0b4cff606cf12d58da531eca0bac43c82994d;hp=ec74ebb0a069d5d29c5b95f0ae02273adac6944b;hb=5b89da5a9d7864784dbe4942d856f751c3758c1c;hpb=21ff17d2af1e50542d9343d7177269a8910ebbe3;ds=sidebyside diff --git a/firmware/lib/command.c b/firmware/lib/command.c index ec74ebb..92c0b4c 100644 --- a/firmware/lib/command.c +++ b/firmware/lib/command.c @@ -165,7 +165,7 @@ void delay_ms( unsigned int ms ) } TBCTL = 0x0204; // Reset Timer B, till next time #else - #warning "Function unimplemented for this platform." + debugstr("delay_ms unimplemented"); #endif } @@ -182,7 +182,7 @@ void delay_us( unsigned int us ) } TBCTL = 0x0204; // Reset Timer B, till next time #else - #warning "Function unimplemented for this platform." + debugstr("delay_us unimplemented"); #endif } @@ -195,6 +195,6 @@ void delay_ticks( unsigned int num_ticks ) asm( "nop" ); TBCTL = 0x0204; // Reset Timer B, till next time #else - #warning "Function unimplemented for this platform." + debugstr("delay_ticks unimplemented"); #endif }