You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
219 B
12 lines
219 B
6 years ago
|
#pragma once
|
||
|
|
||
|
#include <esp_err.h>
|
||
|
|
||
|
typedef struct mpu_config_s {
|
||
|
} mpu_config_t;
|
||
|
|
||
|
typedef struct mpu_s *mpu_hndl_t;
|
||
|
|
||
|
esp_err_t mpu_init(mpu_config_t *config, mpu_hndl_t *hndl_out);
|
||
|
esp_err_t mpu_free(mpu_hndl_t hndl);
|