Add calibration routine from shell

This commit is contained in:
2020-02-15 17:53:15 +01:00
parent 5a00950589
commit c568b95cf2
8 changed files with 111 additions and 23 deletions

View File

@@ -67,6 +67,6 @@ int _read(void)
int _write(int fd, const void *buf, int count)
{
if (fd == 1)
uart_send_array((char*)buf, count);
uart_send_array_with_dma((char*)buf, count);
return count;
}