changed structer of whole Project

-Added GPIO.c
-Added ADC.c
-Added mcpwm.c
-Added all headrs for new files
-Fixed Header usage
-Fixed parsed pins only import  once
This commit is contained in:
2025-01-26 01:07:40 +01:00
parent e93e5c8c15
commit 56f6c33124
15 changed files with 609 additions and 552 deletions

7
main/include/mcpwm.h Normal file
View File

@@ -0,0 +1,7 @@
#ifndef MCPWM_H
#define MCPWM_H
void mcpwm_init();
void mcpwm_set_duty(float duty);
#endif