mirror of https://github.com/rusefi/wideband.git
71 lines
1.8 KiB
C
71 lines
1.8 KiB
C
#pragma once
|
|
|
|
#include "io_pins.h"
|
|
#include "wideband_board_config.h"
|
|
|
|
// *******************************
|
|
// Defaults
|
|
// *******************************
|
|
#ifndef EGT_CHANNELS
|
|
#define EGT_CHANNELS 0
|
|
#endif
|
|
|
|
// *******************************
|
|
// Nernst voltage & ESR sense
|
|
// *******************************
|
|
|
|
// Heater low pass filter
|
|
#define ESR_SENSE_ALPHA (0.002f)
|
|
|
|
// *******************************
|
|
// Pump current sense
|
|
// *******************************
|
|
|
|
#define PUMP_CURRENT_SENSE_GAIN (10)
|
|
|
|
// LSU sense resistor - 61.9 ohms
|
|
#define LSU_SENSE_R (61.9f)
|
|
|
|
// Pump low pass filter alpha
|
|
// sampling at 2.5khz, alpha of 0.01 gives about 50hz bandwidth
|
|
#define PUMP_FILTER_ALPHA (0.02f)
|
|
|
|
// *******************************
|
|
// Pump controller
|
|
// *******************************
|
|
#define NERNST_TARGET (0.45f)
|
|
|
|
// *******************************
|
|
// Heater controller config
|
|
// *******************************
|
|
#define HEATER_CONTROL_PERIOD 50
|
|
|
|
#define HEATER_PREHEAT_TIME 5000
|
|
#define HEATER_WARMUP_TIMEOUT 60000
|
|
|
|
#define HEATER_BATTERY_STAB_TIME 3000
|
|
// minimal battery voltage to start heating without CAN command
|
|
#define HEATER_BATTERY_ON_VOLTAGE 9.5
|
|
// mininal battery voltage to continue heating
|
|
#define HEATER_BATTETY_OFF_VOLTAGE 8.5
|
|
|
|
//LSU 4.9
|
|
#define LSU49_HEATER_CLOSED_LOOP_THRESHOLD_ESR 500
|
|
#define LSU49_HEATER_TARGET_ESR 300
|
|
#define LSU49_HEATER_OVERHEAT_ESR 150
|
|
#define LSU49_HEATER_UNDERHEAT_ESR 700
|
|
|
|
//LSU 4.2
|
|
// TODO: check this!!!
|
|
#define LSU42_HEATER_CLOSED_LOOP_THRESHOLD_ESR 150
|
|
#define LSU42_HEATER_TARGET_ESR 90
|
|
#define LSU42_HEATER_OVERHEAT_ESR 45
|
|
#define LSU42_HEATER_UNDERHEAT_ESR 250
|
|
|
|
// *******************************
|
|
// TunerStudio configuration
|
|
// *******************************
|
|
#if defined(TS_PRIMARY_UART_PORT) || defined(TS_PRIMARY_SERIAL_PORT)
|
|
#define TS_ENABLED
|
|
#endif
|