extra
This commit is contained in:
parent
0ab11d231c
commit
2508453aaa
3
board.mk
3
board.mk
|
@ -2,7 +2,8 @@ BOARDCPPSRC = $(BOARD_DIR)/board_configuration.cpp \
|
||||||
$(BOARD_DIR)/default_tune.cpp \
|
$(BOARD_DIR)/default_tune.cpp \
|
||||||
|
|
||||||
|
|
||||||
BOARDINC += $(BOARD_DIR)/generated/controllers/generated
|
BOARDINC += $(BOARD_DIR)/generated/controllers/generated \
|
||||||
|
$(BOARD_DIR)/firmware
|
||||||
|
|
||||||
# defines SHORT_BOARD_NAME
|
# defines SHORT_BOARD_NAME
|
||||||
include $(BOARD_DIR)/meta-info.env
|
include $(BOARD_DIR)/meta-info.env
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
// this section was generated automatically by rusEFI tool config_definition_base-all.jar based on (unknown script) ../../../extra.txt Wed May 15 21:50:20 EDT 2024
|
||||||
|
// by class com.rusefi.output.CHeaderConsumer
|
||||||
|
// begin
|
||||||
|
#pragma once
|
||||||
|
#include "rusefi_types.h"
|
||||||
|
// start of board_extra_s
|
||||||
|
struct board_extra_s {
|
||||||
|
/**
|
||||||
|
* offset 0
|
||||||
|
*/
|
||||||
|
int extraField = (int)0;
|
||||||
|
/**
|
||||||
|
* offset 4
|
||||||
|
*/
|
||||||
|
uint8_t unusedAtTheExtraEnd[92];
|
||||||
|
};
|
||||||
|
static_assert(sizeof(board_extra_s) == 96);
|
||||||
|
|
||||||
|
// end
|
||||||
|
// this section was generated automatically by rusEFI tool config_definition_base-all.jar based on (unknown script) ../../../extra.txt Wed May 15 21:50:20 EDT 2024
|
|
@ -0,0 +1,3 @@
|
||||||
|
#include "pch.h"
|
||||||
|
|
||||||
|
#include "../extra_generated.h"
|
Loading…
Reference in New Issue