From 09bb15d94a6949f2193a8ee2ca621050bd10c22b Mon Sep 17 00:00:00 2001 From: Simon Kueppers Date: Sun, 10 Sep 2023 18:52:26 +0200 Subject: [PATCH] Added additional newlib stubs due to failing build (issue #36) --- stm32/aioc-fw/Src/main.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/stm32/aioc-fw/Src/main.c b/stm32/aioc-fw/Src/main.c index 1e1b8fb..6cb80a8 100644 --- a/stm32/aioc-fw/Src/main.c +++ b/stm32/aioc-fw/Src/main.c @@ -145,6 +145,34 @@ int _write(int file, char *ptr, int len) return len; } +void _close(void) +{ +} + +void _lseek(void) +{ +} + +void _read(void) +{ +} + +void _fstat(void) +{ +} + +void _getpid(void) +{ +} + +void _isatty(void) +{ +} + +void _kill(void) +{ +} + int main(void) { SystemReset();