* Improve uart dma ring buffer. Sending dma still missing

* Add digio module for controlling LEDs, Loudspeaker, and the Digital IOs
* General code improvements
This commit is contained in:
2020-02-10 22:38:24 +01:00
parent 48fea3d36e
commit 69c00ff3d3
14 changed files with 340 additions and 96 deletions

View File

@@ -36,6 +36,6 @@ int _read(void) {
return 0;
}
int _write(int fd, const void *buf, int count) {
sendString((char*)buf, count);
uart_send_array((char*)buf, count);
return count;
}