23 lines
458 B
C
23 lines
458 B
C
// RIEN A MODIFIER //
|
|
|
|
#ifndef ACCELERO_H
|
|
#define ACCELERO_H
|
|
|
|
|
|
|
|
#include "stm32f103xb.h"
|
|
|
|
/* =====================================================================================
|
|
Les fonctions qui gèrent les IO (ajout par rapport à l'activité 1)
|
|
=======================================================================================*/
|
|
|
|
void accelero_init(void);
|
|
|
|
int accelero_get_x(void);
|
|
|
|
int accelero_get_y(void);
|
|
|
|
int accelero_angle_bon(void);
|
|
|
|
|
|
#endif
|