1 /**************************************************************************//**
2 *
3 * @copyright (C) 2019 Nuvoton Technology Corp. All rights reserved.
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Change Logs:
8 * Date            Author       Notes
9 * 2020-1-16       Wayne        First version
10 *
11 ******************************************************************************/
12 
13 #ifndef __SENSOR_BMX055_H__
14 #define __SENSOR_BMX055_H__
15 
16 #include "rtdevice.h"
17 
18 #include "bma2x2.h"
19 #include "bmm050.h"
20 #include "bmg160.h"
21 
22 int rt_hw_bmx055_init(const char *name, struct rt_sensor_config *cfg);
23 
24 #endif /* __SENSOR_BMX055_H__ */
25