Ldma (#5348)
* only:small-can-board * only:small-can-board * only:small-can-board
This commit is contained in:
parent
4e6608ce29
commit
c530dd806a
|
@ -5,8 +5,10 @@ DDEFS += -DSHORT_BOARD_NAME=small-can
|
||||||
|
|
||||||
#DDEFS += -DEFI_SENT_SUPPORT=TRUE
|
#DDEFS += -DEFI_SENT_SUPPORT=TRUE
|
||||||
|
|
||||||
|
DDEFS += -DPERSISTENT_LOCATION_VALUE=\"__attribute__\(\(section\(\\\".ram1\\\"\)\)\)\"
|
||||||
|
DDEFS += -DPERSISTENT_LOCATION_TODO
|
||||||
DDEFS += -DEFI_SENSOR_CHART=FALSE
|
DDEFS += -DEFI_SENSOR_CHART=FALSE
|
||||||
DDEFS += -DLUA_USER_HEAP=50000
|
DDEFS += -DLUA_USER_HEAP=30000
|
||||||
DDEFS += -DEFI_MC33816=FALSE
|
DDEFS += -DEFI_MC33816=FALSE
|
||||||
DDEFS += -DDL_OUTPUT_BUFFER=1000
|
DDEFS += -DDL_OUTPUT_BUFFER=1000
|
||||||
DDEFS += -DEFI_LOGIC_ANALYZER=FALSE
|
DDEFS += -DEFI_LOGIC_ANALYZER=FALSE
|
||||||
|
|
|
@ -9,4 +9,4 @@
|
||||||
#define ts_show_etb_pins false
|
#define ts_show_etb_pins false
|
||||||
#define ts_show_analog_divider false
|
#define ts_show_analog_divider false
|
||||||
|
|
||||||
#define LUA_SCRIPT_SIZE 60000
|
#define LUA_SCRIPT_SIZE 30000
|
|
@ -27,7 +27,14 @@
|
||||||
#include "sensor_chart.h"
|
#include "sensor_chart.h"
|
||||||
#include "trigger_central.h"
|
#include "trigger_central.h"
|
||||||
|
|
||||||
persistent_config_container_s persistentState CCM_OPTIONAL;
|
#ifndef PERSISTENT_LOCATION_TODO
|
||||||
|
#define PERSISTENT_LOCATION CCM_OPTIONAL
|
||||||
|
#else
|
||||||
|
#pragma message(PERSISTENT_LOCATION_VALUE)
|
||||||
|
#define PERSISTENT_LOCATION __attribute__((section(".ram1")))
|
||||||
|
#endif
|
||||||
|
|
||||||
|
persistent_config_container_s persistentState PERSISTENT_LOCATION;
|
||||||
|
|
||||||
#else // EFI_UNIT_TEST
|
#else // EFI_UNIT_TEST
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue