33 lines
378 B
C
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);
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|