stm32-moto/Core/Inc/icm20948.h

9 lines
159 B
C

#ifndef ICM20948_H
#define ICM20948_H
#include "stm32l4xx_hal.h"
void icm20948_init(void);
void icm20948_read_accel(float *ax, float *ay, float *az);
#endif