This commit is contained in:
Sanyog Nevase Nevase 2024-09-22 20:56:54 +05:30
parent c394652d00
commit dfb46c9359
1 changed files with 8 additions and 1 deletions

View File

@ -106,6 +106,13 @@ void GPIOF_interruptHandler(void) {
} }
} }
int main(void) {
GPIO_PORT_F_init(); // GPIO initialization function
systick_setting(); // SysTick setup
while (1) {
// Main loop does nothing; everything is handled in interrupts
}
}