Compare commits

...

28 Commits

Author SHA1 Message Date
David Holdeman b174671ada
Merge 49143f0c95 into e4db668aa7 2024-04-26 07:53:48 +07:00
Matthew Kennedy e4db668aa7 use timer instead of home spun time math 2024-04-25 20:50:48 -04:00
Matthew Kennedy 046ad7436f use timer instead of home spun time math 2024-04-25 20:50:48 -04:00
GitHub set-date Action 0f522f1947 Update date 2024-04-26 00:42:25 +00:00
rusEFI LLC 7cdb78d6fa only: TODO: use a timer instead 2024-04-25 20:32:40 -04:00
GitHub gen-default-tune Action c0e7eb4a2c Auto-generated default tune 2024-04-26 00:10:32 +00:00
Matthew Kennedy b8e9c2832f only: tcharge uses a timer instead of hand spun 2024-04-25 20:06:52 -04:00
GitHub gen-configs Action 27114da4d0 Auto-generated configs and docs 2024-04-25 23:20:38 +00:00
Matthew Kennedy b6a3d4f977 duration vs timestamp 2024-04-25 19:03:39 -04:00
Matthew Kennedy 2d3b6eed36 fix dynoview typing 2024-04-25 19:03:20 -04:00
Matthew Kennedy 2c33abbf7b use timer instead of home spun time math 2024-04-25 19:03:09 -04:00
Matthew Kennedy 005d2eb21a distinguish between "timestamp" and "duration" 2024-04-25 18:57:11 -04:00
rusefi 9932330bca only: migrating to Timer API 2024-04-25 18:51:35 -04:00
Matthew Kennedy d66b752173 only: migrating to Timer API 2024-04-25 18:50:18 -04:00
Matthew Kennedy 51ebc0c246 only: inline variable 2024-04-25 18:27:36 -04:00
Matthew Kennedy 7897f7d991 another extra time type 2024-04-25 17:47:12 -04:00
rusefi da34743332 only:minor progress 2024-04-25 17:45:14 -04:00
Matthew Kennedy ab801bceb3 logic analyzer type correctness 2024-04-25 17:16:42 -04:00
rusEFI LLC 93edf72814 todo: are those hibernating ports not well? 2024-04-25 15:17:35 -04:00
kifir 998d1caae1 add .idea folder to .gitignore 2024-04-25 13:10:34 -04:00
kifir 80cf6d1943 add check of bailed on dwell count #6373 2024-04-25 13:10:34 -04:00
kifir a734efdf87 reuse constant for consistency with CsvReader::processLine method implementation 2024-04-25 13:10:34 -04:00
kifir 964e595af2 enhance instruction for running single test 2024-04-25 13:10:34 -04:00
rusEFI LLC 75f38f6913 only: EFI_ANTILAG_SYSTEM is effectively dead 2024-04-24 21:57:46 -04:00
rusEFI LLC a7ad444e12 Did master just break by itself? requiring macos-12 #6405 2024-04-24 21:56:07 -04:00
rusefi b133b88fdb Each bank of cam inputs should have individual edge selection fix #5333 2024-04-24 21:26:38 -04:00
David Holdeman 49143f0c95
use macos 12 2024-04-24 16:48:38 -05:00
David Holdeman d1ecead8b7
test 2024-04-24 15:22:10 -05:00
194 changed files with 362 additions and 354 deletions

View File

@ -4,7 +4,7 @@ on: [push,pull_request]
jobs:
build:
runs-on: macos-latest
runs-on: macos-12
steps:
- uses: actions/setup-java@v4

View File

@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-12]
steps:
- uses: actions/checkout@v4
@ -23,17 +23,17 @@ jobs:
git submodule update --init --depth=1 java_console/peak-can-basic
- name: Discover cores
if: ${{ matrix.os != 'macos-latest' }}
if: ${{ matrix.os != 'macos-12' }}
run: lscpu | egrep 'Model name|Socket|Thread|NUMA|CPU\(s\)'
- name: Install required software (ubuntu)
if: ${{ matrix.os != 'macos-latest' }}
if: ${{ matrix.os != 'macos-12' }}
run: |
sudo bash misc/actions/add-ubuntu-latest-apt-mirrors.sh
sudo apt-get install mtools zip dosfstools sshpass lcov valgrind
- name: Install required software (macos)
if: ${{ matrix.os == 'macos-latest' }}
if: ${{ matrix.os == 'macos-12' }}
run: |
brew install mtools zip dosfstools flock coreutils
@ -74,7 +74,7 @@ jobs:
fi
- name: Generate Code Coverage
if: ${{ matrix.os != 'macos-latest' && github.event_name == 'push' && github.ref == 'refs/heads/master' }}
if: ${{ matrix.os != 'macos-12' && github.event_name == 'push' && github.ref == 'refs/heads/master' }}
working-directory: ./unit_tests/
run: ./ci_gcov.sh ${{ secrets.RUSEFI_SSH_USER }} ${{ secrets.RUSEFI_SSH_PASS }} ${{ secrets.RUSEFI_SSH_SERVER }}
@ -85,13 +85,13 @@ jobs:
- name: Rebuild Tests For Valgrind
# Valgrind isn't compatible with address sanitizer, so we have to rebuild the code
if: ${{ matrix.os != 'macos-latest' }}
if: ${{ matrix.os != 'macos-12' }}
working-directory: ./unit_tests/
run: |
make clean
make -j4 SANITIZE=no
- name: Run Tests (Valgrind)
if: ${{ matrix.os != 'macos-latest' }}
if: ${{ matrix.os != 'macos-12' }}
working-directory: ./unit_tests/
run: valgrind --error-exitcode=1 --exit-on-first-error=yes --leak-check=no --show-error-list=yes build/rusefi_test

View File

@ -28,6 +28,7 @@ Release template (copy/paste this for new release):
### Breaking Changes
- "60/2 VW" trigger wheel renamed to "60-2 Wrong Polarity" #988
- exhaust VVTs now use it's onw Edge Select setting
## Unreleased

View File

@ -357,7 +357,9 @@ static void sendResponseCode(ts_response_format_e mode, TsChannelBase *tsChannel
* 'Burn' command is a command to commit the changes
*/
static void handleBurnCommand(TsChannelBase* tsChannel, ts_response_format_e mode) {
efitimems_t nowMs = getTimeNowMs();
Timer t;
t.reset();
tsState.burnCommandCounter++;
efiPrintf("got B (Burn) %s", mode == TS_PLAIN ? "plain" : "CRC");
@ -368,7 +370,7 @@ static void handleBurnCommand(TsChannelBase* tsChannel, ts_response_format_e mod
}
sendResponseCode(mode, tsChannel, TS_RESPONSE_BURN_OK);
efiPrintf("BURN in %dms", getTimeNowMs() - nowMs);
efiPrintf("BURN in %dms", (int)(t.getElapsedSeconds() * 1e3));
}
#if (EFI_PROD_CODE || EFI_SIMULATOR)

View File

@ -685,8 +685,7 @@ void updateTunerStudioState() {
tsOutputChannels->injectorDutyCycleStage2 = getInjectorDutyCycleStage2(rpm);
#endif
efitimesec_t timeSeconds = getTimeNowS();
tsOutputChannels->seconds = timeSeconds;
tsOutputChannels->seconds = getTimeNowS();
tsOutputChannels->engineMode = packEngineMode();
tsOutputChannels->firmwareVersion = getRusEfiVersion();

View File

@ -413,8 +413,7 @@ expected<percent_t> EtbController::getClosedLoopAutotune(percent_t target, perce
efitick_t now = getTimeNowNt();
// Determine period
float tu = NT2US((float)(now - m_cycleStartTime)) / 1e6;
m_cycleStartTime = now;
float tu = m_autotuneCycleStart.getElapsedSecondsAndReset(now);
// Determine amplitude
float a = m_maxCycleTps - m_minCycleTps;

View File

@ -117,7 +117,7 @@ private:
// Autotune helpers
bool m_lastIsPositive = false;
efitick_t m_cycleStartTime = 0;
Timer m_autotuneCycleStart;
float m_minCycleTps = 0;
float m_maxCycleTps = 0;
// Autotune measured parameters: gain and ultimate period

View File

@ -22,7 +22,7 @@ class DynoView {
public:
// Update the state of the launch control system
void update(vssSrc src);
void updateAcceleration(efitick_t deltaTime, float deltaSpeed);
void updateAcceleration(efitimeus_t deltaTime, float deltaSpeed);
void updateHP();
float getAcceleration();
int getEngineForce();

View File

@ -289,7 +289,7 @@ Engine::Engine()
, softSparkLimiter(false), hardSparkLimiter(true)
#if EFI_ANTILAG_SYSTEM
, ALSsoftSparkLimiter(false)
// , ALSsoftSparkLimiter(false)
#endif /* EFI_ANTILAG_SYSTEM */
#endif // EFI_LAUNCH_CONTROL

View File

@ -197,7 +197,7 @@ public:
#endif // EFI_ANTILAG_SYSTEM
#if EFI_ANTILAG_SYSTEM
SoftSparkLimiter ALSsoftSparkLimiter;
// SoftSparkLimiter ALSsoftSparkLimiter;
#endif /* EFI_ANTILAG_SYSTEM */
#if EFI_SHAFT_POSITION_INPUT
@ -223,10 +223,13 @@ public:
#if EFI_UNIT_TEST
bool needTdcCallback = true;
int bailedOnDwell = 0;
private:
int bailedOnDwellCount = 0;
public:
int getBailedOnDwellCount() const { return bailedOnDwellCount; }
void incrementBailedOnDwellCount() { bailedOnDwellCount++; }
#endif /* EFI_UNIT_TEST */
int getGlobalConfigurationVersion(void) const;

View File

@ -82,7 +82,7 @@ bool WarningCodeState::isWarningNow(ObdCode code) const {
}
EngineState::EngineState() {
timeSinceLastTChargeK = getTimeNowNt();
timeSinceLastTChargeK.reset(getTimeNowNt());
}
void EngineState::updateSlowSensors() {
@ -215,14 +215,13 @@ void EngineState::periodicFastCallback() {
#if EFI_ENGINE_CONTROL
void EngineState::updateTChargeK(int rpm, float tps) {
float newTCharge = engine->fuelComputer.getTCharge(rpm, tps);
// convert to microsecs and then to seconds
efitick_t curTime = getTimeNowNt();
float secsPassed = (float)NT2US(curTime - timeSinceLastTChargeK) / US_PER_SECOND_F;
if (!cisnan(newTCharge)) {
// control the rate of change or just fill with the initial value
efitick_t nowNt = getTimeNowNt();
float secsPassed = timeSinceLastTChargeK.getElapsedSeconds(nowNt);
sd.tCharge = (sd.tChargeK == 0) ? newTCharge : limitRateOfChange(newTCharge, sd.tCharge, engineConfiguration->tChargeAirIncrLimit, engineConfiguration->tChargeAirDecrLimit, secsPassed);
sd.tChargeK = convertCelsiusToKelvin(sd.tCharge);
timeSinceLastTChargeK = curTime;
timeSinceLastTChargeK.reset(nowNt);
}
}
#endif

View File

@ -70,7 +70,7 @@ public:
struct multispark_state
{
efitick_t delay = 0;
efitick_t dwell = 0;
efidur_t delay = 0;
efidur_t dwell = 0;
uint8_t count = 0;
};

View File

@ -60,7 +60,7 @@ public:
// Angle between firing the main (primary) spark and the secondary (trailing) spark
angle_t trailingSparkAngle = 0;
efitick_t timeSinceLastTChargeK;
Timer timeSinceLastTChargeK;
float currentVe = 0;

View File

@ -55,10 +55,6 @@ public:
scheduling_s dwellStartTimer;
AngleBasedEvent sparkEvent;
#if EFI_UNIT_TEST
bool bailedOnDwell = false;
#endif
scheduling_s trailingSparkCharge;
scheduling_s trailingSparkFire;
@ -74,10 +70,9 @@ public:
*/
angle_t sparkAngle = NAN;
floatms_t sparkDwell = 0;
/**
* this timestamp allows us to measure actual dwell time
*/
uint32_t actualStartOfDwellNt = 0;
// this timer allows us to measure actual dwell time
Timer actualDwellTimer;
float dwellAngle = 0;

View File

@ -34,11 +34,6 @@
#define STOICH_RATIO 14.7f
#define CONST_PI 3.14159265358979323846
/**
* 64 bit time in milliseconds (1/1_000 of a second), since boot
*/
using efitimems64_t = int64_t;
/**
* integer time in milliseconds (1/1_000 of a second)
* 32 bit 4B / 1000 = 4M seconds = 1111.11 hours = 23(or46?) days.
@ -47,6 +42,8 @@ using efitimems64_t = int64_t;
*/
using efitimems_t = uint32_t;
using efidur_t = efitick_t;
// date-time struct a la ctime struct tm
typedef struct {
uint32_t year = 0;

View File

@ -50,8 +50,8 @@ int getRusEfiVersion(void);
#define efiAssert(code, condition, message, result) { if (!(condition)) { firmwareError(code, message); return result; } }
#define efiAssertVoid(code, condition, message) { if (!(condition)) { firmwareError(code, message); return; } }
#else /* EFI_ENABLE_ASSERTS */
#define efiAssert(code, condition, message, result) { }
#define efiAssertVoid(code, condition, message) { UNUSED(condition);}
#define efiAssert(code, condition, message, result) { UNUSED(code);UNUSED(condition);UNUSED(message);UNUSED(result); }
#define efiAssertVoid(code, condition, message) { UNUSED(condition);UNUSED(message);}
#endif /* EFI_ENABLE_ASSERTS */
#define criticalAssert(condition, message, result) efiAssert(ObdCode::OBD_PCM_Processor_Fault, condition, message, result)

View File

@ -1,2 +1,2 @@
#pragma once
#define VCS_DATE 20240425
#define VCS_DATE 20240426

View File

@ -32,7 +32,7 @@ void postMapState(TunerStudioOutputChannels *tsOutputChannels);
class MapAverager : public StoredValueSensor {
public:
MapAverager(SensorType type, efitick_t timeout)
MapAverager(SensorType type, efidur_t timeout)
: StoredValueSensor(type, timeout)
{
}

View File

@ -208,11 +208,12 @@ void fireSparkAndPrepareNextSchedule(IgnitionEvent *event) {
#if !EFI_UNIT_TEST
if (engineConfiguration->debugMode == DBG_DWELL_METRIC) {
#if EFI_TUNER_STUDIO
uint32_t actualDwellDurationNt = getTimeNowLowerNt() - event->actualStartOfDwellNt;
float actualDwellMs = event->actualDwellTimer.getElapsedSeconds(nowNt) * 1e3;
/**
* ratio of desired dwell duration to actual dwell duration gives us some idea of how good is input trigger jitter
*/
float ratio = NT2US(actualDwellDurationNt) / 1000.0 / event->sparkDwell;
float ratio = actualDwellMs / event->sparkDwell;
// todo: smarted solution for index to field mapping
switch (event->cylinderIndex) {
@ -317,10 +318,10 @@ static bool startDwellByTurningSparkPinHigh(IgnitionEvent *event, IgnitionOutput
}
void turnSparkPinHighStartCharging(IgnitionEvent *event) {
event->actualStartOfDwellNt = getTimeNowLowerNt();
efitick_t nowNt = getTimeNowNt();
event->actualDwellTimer.reset(nowNt);
bool skippedDwellDueToTriggerNoised = false;
for (int i = 0; i< MAX_OUTPUTS_FOR_IGNITION;i++) {
IgnitionOutputPin *output = event->outputs[i];
@ -334,7 +335,7 @@ void turnSparkPinHighStartCharging(IgnitionEvent *event) {
}
#if EFI_UNIT_TEST
event->bailedOnDwell = skippedDwellDueToTriggerNoised;
engine->incrementBailedOnDwellCount();
#endif
@ -569,6 +570,7 @@ void onTriggerEventSparkLogic(int rpm, efitick_t edgeTimestamp, float currentPha
#endif // EFI_LAUNCH_CONTROL
#if EFI_ANTILAG_SYSTEM && EFI_LAUNCH_CONTROL
/*
if (engine->antilagController.isAntilagCondition) {
if (engine->ALSsoftSparkLimiter.shouldSkip()) {
continue;
@ -583,6 +585,7 @@ void onTriggerEventSparkLogic(int rpm, efitick_t edgeTimestamp, float currentPha
auto ALSSkipRatio = engine->antilagController.timingALSSkip;
engine->ALSsoftSparkLimiter.setTargetSkipRatio(ALSSkipRatio/100);
*/
#endif // EFI_ANTILAG_SYSTEM
scheduleSparkEvent(limitedSpark, event, rpm, edgeTimestamp, currentPhase, nextPhase);

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins false
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.alphax-2chan.79935669"
#define TS_SIGNATURE "rusEFI master.2024.04.26.alphax-2chan.79935669"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1595,7 +1595,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins false
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.alphax-4chan.1583457787"
#define TS_SIGNATURE "rusEFI master.2024.04.26.alphax-4chan.1583457787"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1595,7 +1595,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins false
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.alphax-4chan_f7.1583457787"
#define TS_SIGNATURE "rusEFI master.2024.04.26.alphax-4chan_f7.1583457787"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1594,7 +1594,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.alphax-8chan-revA.368422870"
#define TS_SIGNATURE "rusEFI master.2024.04.26.alphax-8chan-revA.368422870"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1594,7 +1594,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins false
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.alphax-8chan.777556358"
#define TS_SIGNATURE "rusEFI master.2024.04.26.alphax-8chan.777556358"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1594,7 +1594,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins false
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.alphax-8chan_f7.777556358"
#define TS_SIGNATURE "rusEFI master.2024.04.26.alphax-8chan_f7.777556358"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.at_start_f435.1109271617"
#define TS_SIGNATURE "rusEFI master.2024.04.26.at_start_f435.1109271617"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.atlas.102363151"
#define TS_SIGNATURE "rusEFI master.2024.04.26.atlas.102363151"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.f407-discovery.3863994144"
#define TS_SIGNATURE "rusEFI master.2024.04.26.f407-discovery.3863994144"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.f429-discovery.1109271617"
#define TS_SIGNATURE "rusEFI master.2024.04.26.f429-discovery.1109271617"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.f469-discovery.1892229842"
#define TS_SIGNATURE "rusEFI master.2024.04.26.f469-discovery.1892229842"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.frankenso_na6.345854042"
#define TS_SIGNATURE "rusEFI master.2024.04.26.frankenso_na6.345854042"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.haba208.1109271617"
#define TS_SIGNATURE "rusEFI master.2024.04.26.haba208.1109271617"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1594,7 +1594,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen-112-17.3407264965"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen-112-17.3407264965"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen-gm-e67.2389132281"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen-gm-e67.2389132281"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1596,7 +1596,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen-honda-k.3006873626"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen-honda-k.3006873626"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1594,7 +1594,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen-nb1.2869351009"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen-nb1.2869351009"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1594,7 +1594,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen121nissan.1873054294"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen121nissan.1873054294"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1594,7 +1594,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen121vag.1919367591"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen121vag.1919367591"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1594,7 +1594,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen128.2945191606"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen128.2945191606"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1594,7 +1594,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen154hyundai.3038984243"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen154hyundai.3038984243"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1594,7 +1594,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen154hyundai_f7.2200182196"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen154hyundai_f7.2200182196"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1594,7 +1594,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen72.3271545053"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen72.3271545053"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen81.663663783"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen81.663663783"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1594,7 +1594,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output false
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen88bmw.816685540"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen88bmw.816685540"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1594,7 +1594,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellenNA6.3602630561"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellenNA6.3602630561"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1595,7 +1595,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellenNA8_96.694257007"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellenNA8_96.694257007"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1594,7 +1594,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.m74_9.4137950366"
#define TS_SIGNATURE "rusEFI master.2024.04.26.m74_9.4137950366"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1594,7 +1594,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.mre_f4.1104247486"
#define TS_SIGNATURE "rusEFI master.2024.04.26.mre_f4.1104247486"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1594,7 +1594,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.mre_f7.1104247486"
#define TS_SIGNATURE "rusEFI master.2024.04.26.mre_f7.1104247486"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.nucleo_f413.1109271617"
#define TS_SIGNATURE "rusEFI master.2024.04.26.nucleo_f413.1109271617"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.prometheus_405.1921706449"
#define TS_SIGNATURE "rusEFI master.2024.04.26.prometheus_405.1921706449"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.prometheus_469.1921706449"
#define TS_SIGNATURE "rusEFI master.2024.04.26.prometheus_469.1921706449"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.proteus_f4.2818940515"
#define TS_SIGNATURE "rusEFI master.2024.04.26.proteus_f4.2818940515"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.proteus_f7.2818940515"
#define TS_SIGNATURE "rusEFI master.2024.04.26.proteus_f7.2818940515"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.proteus_h7.2818940515"
#define TS_SIGNATURE "rusEFI master.2024.04.26.proteus_h7.2818940515"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1594,7 +1594,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.s105.4254442627"
#define TS_SIGNATURE "rusEFI master.2024.04.26.s105.4254442627"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1595,7 +1595,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.small-can-board.3841132131"
#define TS_SIGNATURE "rusEFI master.2024.04.26.small-can-board.3841132131"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.stm32f429_nucleo.1109271617"
#define TS_SIGNATURE "rusEFI master.2024.04.26.stm32f429_nucleo.1109271617"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.stm32f767_nucleo.1109271617"
#define TS_SIGNATURE "rusEFI master.2024.04.26.stm32f767_nucleo.1109271617"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.stm32h743_nucleo.1109271617"
#define TS_SIGNATURE "rusEFI master.2024.04.26.stm32h743_nucleo.1109271617"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.t-b-g.1109271617"
#define TS_SIGNATURE "rusEFI master.2024.04.26.t-b-g.1109271617"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1593,7 +1593,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.tdg-pdm8.2016647369"
#define TS_SIGNATURE "rusEFI master.2024.04.26.tdg-pdm8.2016647369"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1594,7 +1594,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins false
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.25.uaefi.946100602"
#define TS_SIGNATURE "rusEFI master.2024.04.26.uaefi.946100602"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 79935669
#define TS_SIGNATURE "rusEFI master.2024.04.25.alphax-2chan.79935669"
#define TS_SIGNATURE "rusEFI master.2024.04.26.alphax-2chan.79935669"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 1583457787
#define TS_SIGNATURE "rusEFI master.2024.04.25.alphax-4chan.1583457787"
#define TS_SIGNATURE "rusEFI master.2024.04.26.alphax-4chan.1583457787"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 1583457787
#define TS_SIGNATURE "rusEFI master.2024.04.25.alphax-4chan_f7.1583457787"
#define TS_SIGNATURE "rusEFI master.2024.04.26.alphax-4chan_f7.1583457787"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 368422870
#define TS_SIGNATURE "rusEFI master.2024.04.25.alphax-8chan-revA.368422870"
#define TS_SIGNATURE "rusEFI master.2024.04.26.alphax-8chan-revA.368422870"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 777556358
#define TS_SIGNATURE "rusEFI master.2024.04.25.alphax-8chan.777556358"
#define TS_SIGNATURE "rusEFI master.2024.04.26.alphax-8chan.777556358"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 777556358
#define TS_SIGNATURE "rusEFI master.2024.04.25.alphax-8chan_f7.777556358"
#define TS_SIGNATURE "rusEFI master.2024.04.26.alphax-8chan_f7.777556358"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 1109271617
#define TS_SIGNATURE "rusEFI master.2024.04.25.at_start_f435.1109271617"
#define TS_SIGNATURE "rusEFI master.2024.04.26.at_start_f435.1109271617"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 102363151
#define TS_SIGNATURE "rusEFI master.2024.04.25.atlas.102363151"
#define TS_SIGNATURE "rusEFI master.2024.04.26.atlas.102363151"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3863994144
#define TS_SIGNATURE "rusEFI master.2024.04.25.f407-discovery.3863994144"
#define TS_SIGNATURE "rusEFI master.2024.04.26.f407-discovery.3863994144"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 1109271617
#define TS_SIGNATURE "rusEFI master.2024.04.25.f429-discovery.1109271617"
#define TS_SIGNATURE "rusEFI master.2024.04.26.f429-discovery.1109271617"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 1892229842
#define TS_SIGNATURE "rusEFI master.2024.04.25.f469-discovery.1892229842"
#define TS_SIGNATURE "rusEFI master.2024.04.26.f469-discovery.1892229842"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 345854042
#define TS_SIGNATURE "rusEFI master.2024.04.25.frankenso_na6.345854042"
#define TS_SIGNATURE "rusEFI master.2024.04.26.frankenso_na6.345854042"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 1109271617
#define TS_SIGNATURE "rusEFI master.2024.04.25.haba208.1109271617"
#define TS_SIGNATURE "rusEFI master.2024.04.26.haba208.1109271617"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3407264965
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen-112-17.3407264965"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen-112-17.3407264965"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 2389132281
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen-gm-e67.2389132281"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen-gm-e67.2389132281"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3006873626
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen-honda-k.3006873626"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen-honda-k.3006873626"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 2869351009
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen-nb1.2869351009"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen-nb1.2869351009"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 1873054294
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen121nissan.1873054294"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen121nissan.1873054294"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 1919367591
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen121vag.1919367591"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen121vag.1919367591"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 2945191606
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen128.2945191606"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen128.2945191606"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3038984243
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen154hyundai.3038984243"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen154hyundai.3038984243"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 2200182196
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen154hyundai_f7.2200182196"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen154hyundai_f7.2200182196"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3271545053
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen72.3271545053"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen72.3271545053"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 663663783
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen81.663663783"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen81.663663783"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 816685540
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellen88bmw.816685540"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellen88bmw.816685540"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3602630561
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellenNA6.3602630561"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellenNA6.3602630561"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 694257007
#define TS_SIGNATURE "rusEFI master.2024.04.25.hellenNA8_96.694257007"
#define TS_SIGNATURE "rusEFI master.2024.04.26.hellenNA8_96.694257007"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 4137950366
#define TS_SIGNATURE "rusEFI master.2024.04.25.m74_9.4137950366"
#define TS_SIGNATURE "rusEFI master.2024.04.26.m74_9.4137950366"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 1104247486
#define TS_SIGNATURE "rusEFI master.2024.04.25.mre_f4.1104247486"
#define TS_SIGNATURE "rusEFI master.2024.04.26.mre_f4.1104247486"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 1104247486
#define TS_SIGNATURE "rusEFI master.2024.04.25.mre_f7.1104247486"
#define TS_SIGNATURE "rusEFI master.2024.04.26.mre_f7.1104247486"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 1109271617
#define TS_SIGNATURE "rusEFI master.2024.04.25.nucleo_f413.1109271617"
#define TS_SIGNATURE "rusEFI master.2024.04.26.nucleo_f413.1109271617"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 1921706449
#define TS_SIGNATURE "rusEFI master.2024.04.25.prometheus_405.1921706449"
#define TS_SIGNATURE "rusEFI master.2024.04.26.prometheus_405.1921706449"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 1921706449
#define TS_SIGNATURE "rusEFI master.2024.04.25.prometheus_469.1921706449"
#define TS_SIGNATURE "rusEFI master.2024.04.26.prometheus_469.1921706449"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 2818940515
#define TS_SIGNATURE "rusEFI master.2024.04.25.proteus_f4.2818940515"
#define TS_SIGNATURE "rusEFI master.2024.04.26.proteus_f4.2818940515"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 2818940515
#define TS_SIGNATURE "rusEFI master.2024.04.25.proteus_f7.2818940515"
#define TS_SIGNATURE "rusEFI master.2024.04.26.proteus_f7.2818940515"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 2818940515
#define TS_SIGNATURE "rusEFI master.2024.04.25.proteus_h7.2818940515"
#define TS_SIGNATURE "rusEFI master.2024.04.26.proteus_h7.2818940515"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 4254442627
#define TS_SIGNATURE "rusEFI master.2024.04.25.s105.4254442627"
#define TS_SIGNATURE "rusEFI master.2024.04.26.s105.4254442627"

Some files were not shown because too many files have changed in this diff Show More