MPUdmp.hpp
Go to the documentation of this file.
1 // =========================================================================
2 // This library is placed under the MIT License
3 // Copyright 2017-2018 Natanael Josue Rabello. All rights reserved.
4 // For the license information refer to LICENSE file in root directory.
5 // =========================================================================
6 
12 #ifndef _MPU_DMP_HPP_
13 #define _MPU_DMP_HPP_
14 
15 #include "MPU.hpp"
16 
17 #if !defined CONFIG_MPU_ENABLE_DMP
18 #warning ''You must enable the option DMP in \
19 menuconfig -> components -> MPU driver, \
20 to compile the DMP source code''
21 #endif
22 
24 namespace mpud {
25 
27 namespace dmp {
28 
30 class MPUdmp : public mpud::MPU {
31 };
32 
33 typedef MPUdmp MPUdmp_t;
34 
35 } // namespace dmp
36 
37 } // namespace mpud
38 
39 #endif /* end of include guard: _MPU_DMP_HPP_ */
MPU with DMP interface.
Definition: MPUdmp.hpp:30
MPU library main file.
Motion Processing Unit.
Definition: MPU.hpp:64
MPUdmp MPUdmp_t
Definition: MPUdmp.hpp:33