File tree Expand file tree Collapse file tree 1 file changed +24
-24
lines changed
drivers/include/drivers/interfaces Expand file tree Collapse file tree 1 file changed +24
-24
lines changed Original file line number Diff line number Diff line change @@ -118,35 +118,35 @@ namespace interface {
118
118
/* Having this as a struct allows interface::CAN and/or mbed::CAN to inherit the enums */
119
119
struct can {
120
120
121
- enum Mode {
122
- Reset = 0 ,
123
- Normal,
124
- Silent,
125
- LocalTest,
126
- GlobalTest,
127
- SilentTest
128
- };
129
-
130
- enum IrqType {
131
- RxIrq = 0 ,
132
- TxIrq,
133
- EwIrq,
134
- DoIrq,
135
- WuIrq,
136
- EpIrq,
137
- AlIrq,
138
- BeIrq,
139
- IdIrq,
140
-
141
- IrqCnt
142
- };
121
+ enum Mode {
122
+ Reset = 0 ,
123
+ Normal,
124
+ Silent,
125
+ LocalTest,
126
+ GlobalTest,
127
+ SilentTest
128
+ };
129
+
130
+ enum IrqType {
131
+ RxIrq = 0 ,
132
+ TxIrq,
133
+ EwIrq,
134
+ DoIrq,
135
+ WuIrq,
136
+ EpIrq,
137
+ AlIrq,
138
+ BeIrq,
139
+ IdIrq,
140
+
141
+ IrqCnt
142
+ };
143
143
144
144
// Prevent slicing and user creation of base class.
145
145
protected:
146
146
can () = default ;
147
147
~can () = default ;
148
- can (const can&) = default ;
149
- can& operator =(const can&) = default ;
148
+ can (const can &) = default ;
149
+ can & operator =(const can &) = default ;
150
150
151
151
};
152
152
You can’t perform that action at this time.
0 commit comments