only:still FSIO

This commit is contained in:
rusefi 2024-06-25 14:47:52 -04:00
parent 50015fcc2c
commit d9bc70ecc3
2 changed files with 4 additions and 4 deletions

View File

@ -12,9 +12,9 @@
#include "script_impl.h"
static fsio8_Map3D_f32t scriptTable1{"script1"};
static script1_Map3D_f32t scriptTable1{"script1"};
static script2_Map3D_f32t scriptTable2{"script2"};
static fsio8_Map3D_u8t scriptTable3{"script3"};
static script3_Map3D_u8t scriptTable3{"script3"};
static script4_Map3D_u8t scriptTable4{"script4"};
ValueProvider3D *getscriptTable(int index) {

View File

@ -9,9 +9,9 @@
#include <rusefi/expected.h>
typedef Map3D<SCRIPT_TABLE_8, SCRIPT_TABLE_8, float, int16_t, int16_t> fsio8_Map3D_f32t;
typedef Map3D<SCRIPT_TABLE_8, SCRIPT_TABLE_8, float, int16_t, int16_t> script1_Map3D_f32t;
typedef Map3D<TABLE_2_RPM_SIZE, TABLE_2_LOAD_SIZE, float, int16_t, int16_t> script2_Map3D_f32t;
typedef Map3D<SCRIPT_TABLE_8, SCRIPT_TABLE_8, uint8_t, int16_t, int16_t> fsio8_Map3D_u8t;
typedef Map3D<SCRIPT_TABLE_8, SCRIPT_TABLE_8, uint8_t, int16_t, int16_t> script3_Map3D_u8t;
typedef Map3D<TABLE_4_RPM, SCRIPT_TABLE_8, uint8_t, int16_t, int16_t> script4_Map3D_u8t;
void initScriptImpl();