Motorcortex Core
version: 2.7.6
my_module1.h
1
/*
2
* Add Comment here
3
*/
4
5
#ifndef MY_MODULE1_H
6
#define MY_MODULE1_H
7
8
#include "ct_module.h"
9
10
class
MyModule1
:
public
mcx::container::Module
{
11
public
:
12
13
MyModule1
() =
default
;
14
15
~
MyModule1
()
override
=
default
;
16
17
private
:
18
void
create_(
const
char
* name,
mcx::parameter_server::Parameter
* parameter_server, uint64_t dt_micro_s)
override
;
19
20
bool
initPhase1_()
override
;
21
22
bool
initPhase2_()
override
;
23
24
bool
startOp_()
override
;
25
26
bool
stopOp_()
override
;
27
28
bool
iterateOp_(
const
mcx::container::TaskTime
& system_time,
mcx::container::UserTime
* user_time)
override
;
29
};
30
31
#endif
/* MY_MODULE1_H */
MyModule1
Definition:
my_module.h:13
mcx::parameter_server::Parameter
Definition:
ps_parameter.h:45
mcx::container::TaskTime
Internal time source.
Definition:
ct_time.h:25
mcx::container::UserTime
External time source.
Definition:
ct_time.h:40
mcx::container::Module
A building block of the Motorcortex components.
Definition:
ct_module.h:64
test
persistence
my_module1.h
Generated by
1.8.18