generate java enum from C enum? generate both C and java from yaml? #2102
This commit is contained in:
parent
5e9c98086e
commit
ece2c198be
|
@ -5,6 +5,7 @@
|
|||
|
||||
#include "fuel_math.h"
|
||||
#include "airmass.h"
|
||||
#include "utlist.h"
|
||||
#include "lua_airmass.h"
|
||||
#include "can_msg_tx.h"
|
||||
#include "settings.h"
|
||||
|
@ -350,6 +351,10 @@ struct LuaCanReciever {
|
|||
|
||||
LuaCanReciever *next;
|
||||
|
||||
#if EFI_PROD_CODE
|
||||
cyclic_buffer<CANRxFrame> pending;
|
||||
#endif // EFI_PROD_CODE
|
||||
|
||||
~LuaCanReciever() {
|
||||
LuaCanReciever *current, *tmp;
|
||||
// find self in list and remove self
|
||||
|
|
Loading…
Reference in New Issue