Pudding_LWNode_Template/src/app_syscalls.c
Yilin Sun 0f722b27aa
All checks were successful
continuous-integration/drone/push Build is passing
Initial commit
Signed-off-by: Yilin Sun <imi415@imi.moe>
2023-07-05 08:23:14 +08:00

7 lines
130 B
C

#include "stm32wlxx_hal.h"
int _write(int file, char *ptr, int len) {
for (int i = 0; i < len; i++) {
}
return len;
}