Voilier/GPIO_Test/Sources/Main.c
2023-04-11 15:34:05 +02:00

33 lines
378 B
C

#include "Driver_GPIO.h"
#include "Driver_Timer.h"
#include "Driver_UART.h"
#include "Driver_ADC.h"
#include "Plateau.h"
#include "telecommande.h"
int main (void){
MyGPIO_Struct_TypeDef * GPIO;
//init_telecommande();
//Plateau_init();
//Plateau_direction(DROITE);
//testRemote();
MyGPIO_Init(GPIO);
while(1){
MyGPIO_Set(GPIOA,3);
}
}