Motorcortex Core  version: 2.7.6
cmdline_realtime.h
1 /*
2  * Developer : Alexey Zakharov (alexey.zakharov@vectioneer.com)
3  * All rights reserved. Copyright (c) 2020 VECTIONEER.
4  */
5 
6 #ifndef MOTORCORTEX_CORE_CMDLINE_REALTIME_H
7 #define MOTORCORTEX_CORE_CMDLINE_REALTIME_H
8 
9 #include <cstdint>
10 #include <vector>
11 
12 namespace mcx::cmd_line {
13 
14 struct Realtime {
15  bool enable;
16  std::vector<uint32_t> cpu_list;
17  size_t size_mb;
18 };
19 
20 } // namespace mcx
21 
22 #endif // MOTORCORTEX_CORE_CMDLINE_REALTIME_H
mcx::cmd_line::Realtime
Definition: cmdline_realtime.h:14