From 86130c8747a4af7ce93f4ac93d1c4d9c94c917eb Mon Sep 17 00:00:00 2001 From: sowgro Date: Tue, 23 Sep 2025 15:27:41 -0400 Subject: Add activity 5 --- project/Core/Inc/Activities/activity5.h | 13 +++++++++++++ project/Core/Inc/Homework/printf.h | 1 + 2 files changed, 14 insertions(+) create mode 100644 project/Core/Inc/Activities/activity5.h (limited to 'project/Core/Inc') diff --git a/project/Core/Inc/Activities/activity5.h b/project/Core/Inc/Activities/activity5.h new file mode 100644 index 0000000..e74b3f0 --- /dev/null +++ b/project/Core/Inc/Activities/activity5.h @@ -0,0 +1,13 @@ +/* + * activity5.h + * + * Created on: Sep 23, 2025 + * Author: sowgro + */ + +#ifndef INC_ACTIVITIES_ACTIVITY5_H_ +#define INC_ACTIVITIES_ACTIVITY5_H_ + +void run2(); + +#endif /* INC_ACTIVITIES_ACTIVITY5_H_ */ diff --git a/project/Core/Inc/Homework/printf.h b/project/Core/Inc/Homework/printf.h index 4772dfd..a31119a 100644 --- a/project/Core/Inc/Homework/printf.h +++ b/project/Core/Inc/Homework/printf.h @@ -8,6 +8,7 @@ #ifndef INC_ACTIVITIES_PRINTF_H_ #define INC_ACTIVITIES_PRINTF_H_ +int putchar(int value); int printf(const char *format, ...); int puts(const char *string); -- cgit v1.2.3