summaryrefslogtreecommitdiff
path: root/project/Core/Inc/systick.h
blob: 6bca9fc50a43a99e0cb4d25b45557306362bd368 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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_ */