portable device access api based on unix file descriptors

This commit is contained in:
2024-07-20 00:27:24 +02:00
parent 49c19ba675
commit cbe8184fab
23 changed files with 241 additions and 133 deletions

5
bsp_z7/newlib/read.c Normal file
View File

@ -0,0 +1,5 @@
int _read(int file, char *ptr, int len) {
return 0;
}