From e3a880051ccf1ba9a16fd9cf031b7386b2533bf1 Mon Sep 17 00:00:00 2001 From: sowgro Date: Tue, 2 Sep 2025 14:45:40 -0400 Subject: Organized project --- project/Core/Inc/System/systick.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 project/Core/Inc/System/systick.h (limited to 'project/Core/Inc/System/systick.h') diff --git a/project/Core/Inc/System/systick.h b/project/Core/Inc/System/systick.h new file mode 100644 index 0000000..6bca9fc --- /dev/null +++ b/project/Core/Inc/System/systick.h @@ -0,0 +1,17 @@ +/* + * systick.h + * + * Created on: Jan 8, 2023 + * Author: bruce + */ + +#ifndef INC_SYSTICK_H_ +#define INC_SYSTICK_H_ + +// This function is to Initialize SysTick registers +void init_systick(); + +// This fuction is to create delay using SysTick timer counter +void delay_systick(); + +#endif /* INC_SYSTICK_H_ */ -- cgit v1.2.3