30 lines
404 B
C
30 lines
404 B
C
#include "Driver_GPIO.h"
|
|
#include "Driver_Timer.h"
|
|
#include "Driver_UART.h"
|
|
#include "Driver_ADC.h"
|
|
#include "Plateau.h"
|
|
#include "telecommande.h"
|
|
|
|
char data[] = "Hello World";
|
|
int i = 0;
|
|
int len = sizeof(data) - 1; // -1 pour ne pas envoyer le caractère nul
|
|
|
|
|
|
int main (void){
|
|
|
|
init_telecommande();
|
|
Plateau_init();
|
|
Plateau_direction(DROITE);
|
|
|
|
|
|
testRemote();
|
|
|
|
|
|
|
|
while(1){
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|