#include "Girouette.h" MyGPIO_Struct_TypeDef GPIOC3; void Test_Encoder (void) { Reset_degree(); } void init_girouette (void) { GPIOC3.GPIO = GPIOC; GPIOC3.GPIO_Conf = In_Floating; GPIOC3.GPIO_Pin = 3; MyGPIO_Init (&GPIOC3); init_encoder_timer(&Test_Encoder); } void Test_tour_girouette(void){ if(MyGPIO_Read(GPIOC3.GPIO, GPIOC3.GPIO_Pin)) { Reset_degree(); } }