parent
a25c9ab520
commit
be8ba29b42
|
@ -58,6 +58,11 @@
|
|||
#define MsgGetSig1(msg) (((msg) >> (1 * 4)) & 0xfff)
|
||||
#define MsgGetCrc(msg) MsgGetNibble(msg, 7)
|
||||
|
||||
|
||||
sent_channel::sent_channel() {
|
||||
state = SENT_STATE_CALIB;
|
||||
}
|
||||
|
||||
void sent_channel::restart(void)
|
||||
{
|
||||
state = SENT_STATE_CALIB;
|
||||
|
|
|
@ -36,6 +36,9 @@ struct sent_channel_stat {
|
|||
};
|
||||
|
||||
class sent_channel {
|
||||
public:
|
||||
sent_channel();
|
||||
|
||||
private:
|
||||
SENT_STATE_enum state = SENT_STATE_CALIB;
|
||||
|
||||
|
|
Loading…
Reference in New Issue