summaryrefslogtreecommitdiff
path: root/project_starter_files/Core/Inc/systick.h
diff options
context:
space:
mode:
Diffstat (limited to 'project_starter_files/Core/Inc/systick.h')
-rw-r--r--project_starter_files/Core/Inc/systick.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/project_starter_files/Core/Inc/systick.h b/project_starter_files/Core/Inc/systick.h
new file mode 100644
index 0000000..6bca9fc
--- /dev/null
+++ b/project_starter_files/Core/Inc/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_ */