dsp: add sample programs

This commit is contained in:
Paul Mathieu
2021-07-26 00:03:56 -07:00
parent 57984c093d
commit 5948622212
2 changed files with 62 additions and 0 deletions

22
dsp/echo.c Normal file
View File

@@ -0,0 +1,22 @@
#include "sys.h"
int strlen(const char* str) {
int i = 0;
while(str[i] != '\0') {
i++;
}
return i;
}
void log(const char* stuff) {
uart_writen(uart0, stuff, strlen(stuff));
}
int main() {
led0->output = 37;
while(1) {
uint8_t c = uart_read(uart0);
uart_write(uart0, c);
}
}