* Read a file using callbacks. * Note that filename must be in persistent memory (e.g. flash string) as call may not be started * immediately. */
| 230 | * immediately. |
| 231 | */ |
| 232 | void readFileAsync(const char* filename) |
| 233 | { |
| 234 | gdb_syscall_open(filename, O_RDONLY, 0, asyncReadCallback); |
| 235 | } |
| 236 | |
| 237 | void fileStat(const char* filename) |
| 238 | { |
no test coverage detected