From b3c6320899d6b27899ab3c67c745e8d3b29af3a2 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 19 Feb 2019 13:46:18 +0000 Subject: working ethernet --- app/bits.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 app/bits.c (limited to 'app/bits.c') 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); + +} -- cgit v1.2.3