One Framework 0.1.0
RoboMaster嵌入式框架“一键”解决方案,为你的“创意”服务。
载入中...
搜索中...
未找到
HubRegistry.hpp
浏览该文件的文档.
1#ifndef OF_LIB_HUB_REGISTRY_HPP
2#define OF_LIB_HUB_REGISTRY_HPP
3
4#include "HubManager.hpp"
5#ifdef CONFIG_NOTIFY_HUB
7#endif
8
9#ifdef CONFIG_IMU_HUB
11#endif
12
13#ifdef CONFIG_CONTROLLER_HUB
15#endif
16
17#ifdef CONFIG_NOTIFY_HUB
18extern const OF::NotifyHubConfig notify_hub_config;
19#endif
20
21#ifdef CONFIG_IMU_HUB
22extern const OF::ImuHubConfig imu_hub_config;
23#endif
24
25#ifdef CONFIG_CONTROLLER_HUB
26extern const OF::ControllerHubConfig controller_hub_config;
27#endif
28
29namespace OF
30{
32#ifdef CONFIG_NOTIFY_HUB
34#endif
35#if defined(CONFIG_NOTIFY_HUB) && defined(CONFIG_IMU_HUB)
36 ,
37#endif
38#ifdef CONFIG_IMU_HUB
40#endif
41#if (defined(CONFIG_NOTIFY_HUB) || defined(CONFIG_IMU_HUB)) && defined(CONFIG_CONTROLLER_HUB)
42 ,
43#endif
44#ifdef CONFIG_CONTROLLER_HUB
46#endif
47 >;
48}
49
50#endif //OF_LIB_HUB_REGISTRY_HPP
定义 HubManager.hpp:41
定义 Mecanum.hpp:6
HubManager< > HubRegistry
定义 HubRegistry.hpp:31
定义 ControllerHub.hpp:21
定义 HubManager.hpp:13
定义 ImuHub.hpp:12
定义 NotifyHub.hpp:59