voilier-team-1/keilproject/Source/Principale.c

18 lines
396 B
C
Raw Normal View History

2023-03-22 15:28:54 +01:00
#include "stm32f10x.h"
#include "../../driver/MyI2C.h"
#include "../../driver/MySPI.h"
#include "../../implementation/remote.h"
#include "../../driver/gpio.h"
2023-03-22 15:28:54 +01:00
int main (void)
{
MyGPIO_Struct_TypeDef led = {GPIOA,5,Out_PullUp}; //led
MyGPIO_Init(&led); //test des leds pour ignorer les contraintes li<6C>es aux diff<66>rents ports
initRemote();
2023-04-04 15:26:37 +02:00
testRemote();
while(1){
};
2023-03-22 15:28:54 +01:00
}