2015-07-10 06:01:56 -07:00
|
|
|
/**
|
2020-03-26 05:03:55 -07:00
|
|
|
* @file bench_test.h
|
|
|
|
* @brief Utility methods related to bench testing.
|
2015-07-10 06:01:56 -07:00
|
|
|
*
|
|
|
|
* todo: rename this file
|
|
|
|
*
|
|
|
|
* @date Sep 8, 2013
|
2020-01-07 21:02:40 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
2015-07-10 06:01:56 -07:00
|
|
|
*/
|
|
|
|
|
2019-11-14 21:00:13 -08:00
|
|
|
#pragma once
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2019-12-23 20:25:08 -08:00
|
|
|
#include "global.h"
|
2015-07-10 06:01:56 -07:00
|
|
|
|
|
|
|
void fanBench(void);
|
|
|
|
void fuelPumpBench(void);
|
2019-09-14 14:56:17 -07:00
|
|
|
void acRelayBench(void);
|
2016-04-23 20:07:45 -07:00
|
|
|
void milBench(void);
|
2020-03-26 05:03:55 -07:00
|
|
|
void initBenchTest(Logging *sharedLogger);
|
2016-01-11 14:01:33 -08:00
|
|
|
bool isRunningBenchTest(void);
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2019-03-12 17:33:13 -07:00
|
|
|
void executeTSCommand(uint16_t subsystem, uint16_t index);
|