diff options
Diffstat (limited to 'app/bits.c')
-rw-r--r-- | app/bits.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/bits.c b/app/bits.c new file mode 100644 index 0000000..03d5c31 --- /dev/null +++ b/app/bits.c @@ -0,0 +1,22 @@ +#include "project.h" + +void dump_bits(char *wot,uint8_t *bits) +{ +char buf[128]; +char *ptr=buf; +unsigned i=60; + + +ptr+=sprintf(buf,"%s bits: ",wot); + + +while (i--) +*(ptr++)=*(bits++) ? '1':'0'; + + +*(ptr++)='\r'; +*(ptr++)='\n'; +*ptr=0; +usart1_write(buf,(unsigned) (ptr-buf),1); + +} |