random code inspired by Ola

This commit is contained in:
rusefi 2020-03-24 19:50:04 -04:00
parent 92a13312dc
commit aa28127211
3 changed files with 10 additions and 8 deletions

View File

@ -23,7 +23,7 @@
#if defined(HAS_OS_ACCESS) #if defined(HAS_OS_ACCESS)
#error "Unexpected OS ACCESS HERE" #error "Unexpected OS ACCESS HERE"
#endif #endif /* HAS_OS_ACCESS */
EXTERN_ENGINE EXTERN_ENGINE
; ;

View File

@ -37,12 +37,12 @@
#include "idle_thread.h" #include "idle_thread.h"
#include "periodic_thread_controller.h" #include "periodic_thread_controller.h"
#include "tps.h" #include "tps.h"
#include "cj125.h"
#include "malfunction_central.h"
#if EFI_PROD_CODE #if EFI_PROD_CODE
#include "cj125.h"
#include "rusefi.h" #include "rusefi.h"
#include "mpu_util.h" #include "mpu_util.h"
#include "malfunction_central.h"
#endif /* EFI_PROD_CODE */ #endif /* EFI_PROD_CODE */
#if (BOARD_TLE8888_COUNT > 0) #if (BOARD_TLE8888_COUNT > 0)
@ -312,9 +312,11 @@ void executeTSCommand(uint16_t subsystem, uint16_t index) {
// cmd_test_idle_valve // cmd_test_idle_valve
#if EFI_IDLE_CONTROL #if EFI_IDLE_CONTROL
startIdleBench(); startIdleBench();
#endif #endif /* EFI_IDLE_CONTROL */
} else if (subsystem == 0x18) { } else if (subsystem == 0x18) {
#if EFI_CJ125
cjCalibrate(); cjCalibrate();
#endif /* EFI_CJ125 */
} else if (subsystem == 0x20 && index == 0x3456) { } else if (subsystem == 0x20 && index == 0x3456) {
// call to pit // call to pit
setCallFromPitStop(30000); setCallFromPitStop(30000);

View File

@ -146,14 +146,14 @@ TEST(util, histogram) {
static void testMalfunctionCentralRemoveNonExistent() { static void testMalfunctionCentralRemoveNonExistent() {
print("******************************************* testMalfunctionCentralRemoveNonExistent\r\n"); print("******************************************* testMalfunctionCentralRemoveNonExistent\r\n");
initMalfunctionCentral(); clearWarnings();
// this should not crash // this should not crash
removeError(OBD_Engine_Coolant_Temperature_Circuit_Malfunction); removeError(OBD_Engine_Coolant_Temperature_Circuit_Malfunction);
} }
static void testMalfunctionCentralSameElementAgain() { static void testMalfunctionCentralSameElementAgain() {
initMalfunctionCentral(); clearWarnings();
print("******************************************* testMalfunctionCentralSameElementAgain\r\n"); print("******************************************* testMalfunctionCentralSameElementAgain\r\n");
error_codes_set_s localCopy; error_codes_set_s localCopy;
@ -164,7 +164,7 @@ static void testMalfunctionCentralSameElementAgain() {
} }
static void testMalfunctionCentralRemoveFirstElement() { static void testMalfunctionCentralRemoveFirstElement() {
initMalfunctionCentral(); clearWarnings();
print("******************************************* testMalfunctionCentralRemoveFirstElement\r\n"); print("******************************************* testMalfunctionCentralRemoveFirstElement\r\n");
error_codes_set_s localCopy; error_codes_set_s localCopy;
@ -190,7 +190,7 @@ TEST(misc, testMalfunctionCentral) {
testMalfunctionCentralRemoveFirstElement(); testMalfunctionCentralRemoveFirstElement();
print("******************************************* testMalfunctionCentral\r\n"); print("******************************************* testMalfunctionCentral\r\n");
initMalfunctionCentral(); clearWarnings();
error_codes_set_s localCopy; error_codes_set_s localCopy;