This commit is contained in:
Sanyog Nevase Nevase 2024-09-22 20:29:19 +05:30
parent 34d0ad34a2
commit d3f45af26b
1 changed files with 9 additions and 0 deletions

View File

@ -88,3 +88,12 @@ void GPIOF_interruptHandler(void)
systick_setting();
}
int main(void)
{
GPIO_PORT_F_init(); // GPIO initialization function
systick_setting(); // SysTick setup
while (1) {
// DO NOTHING
}
}