forked from collin80/SavvyCAN
-
Notifications
You must be signed in to change notification settings - Fork 1
/
can_trigger_structs.h
78 lines (68 loc) · 1.88 KB
/
can_trigger_structs.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#ifndef CAN_TRIGGER_STRUCTS_H
#define CAN_TRIGGER_STRUCTS_H
#include "can_structs.h"
#include <QList>
//Stores a single trigger.
class Trigger
{
public:
bool readyCount; //ready to do millisecond ticks?
int ID; //which ID to match against
int milliseconds; //interval for triggering
int msCounter; //how many MS have ticked since last trigger
int maxCount; //max # of these frames to trigger for
int currCount; //how many we have triggered for so far.
int bus; //which bus to monitor (-1 if we aren't picky)
};
//referece for a source location for a single modifier.
//If ID is zero then this is a numeric operand. The number is then
//stored in databyte
//If ID is -1 then this is the temporary storage register. This is a shadow
//register used to accumulate the results of a multi operation modifier.
//if ID is -2 then this is a look up of our own data bytes stored in the class data.
class ModifierOperand
{
public:
int ID;
int bus;
int databyte;
bool notOper; //should a bitwise NOT be applied to this prior to doing the actual calculation?
};
//list of operations that can be done between the two operands
enum ModifierOperationType
{
ADDITION,
SUBTRACTION,
MULTIPLICATION,
DIVISION,
AND,
OR,
XOR,
MOD
};
//A single modifier operation
class ModifierOp
{
public:
ModifierOperand first;
ModifierOperand second;
ModifierOperationType operation;
};
//All the operations that entail a single modifier. For instance D0+1+D2 is two operations
class Modifier
{
public:
int destByte;
QList<ModifierOp> operations;
};
//A single line from the data grid. Inherits from CANFrame so it stores a canbus frame
//plus the extra stuff for the data grid
class FrameSendData : public CANFrame
{
public:
bool enabled;
int count;
QList<Trigger> triggers;
QList<Modifier> modifiers;
};
#endif // CAN_TRIGGER_STRUCTS_H