code style

This commit is contained in:
rusefi 2020-04-01 19:00:56 -04:00
parent 46cd4af9aa
commit 907b80efa9
34 changed files with 38 additions and 113 deletions

View File

@ -1,5 +1,4 @@
#ifndef BOOTLOADER_H_
#define BOOTLOADER_H_
#pragma once
#ifdef __cplusplus
extern "C" {
@ -13,5 +12,3 @@ int initBootloader(void);
#ifdef __cplusplus
}
#endif
#endif /* BOOTLOADER_H_ */

View File

@ -1,5 +1,4 @@
#ifndef DFU_H_
#define DFU_H_
#pragma once
#include "tunerstudio_io.h"
@ -51,5 +50,3 @@ void dfuJumpToApp(uint32_t addr);
ts_channel_s *getTsChannel();
#endif /* DFU_H_ */

View File

@ -9,8 +9,7 @@
#include "../../stm32f4ems/efifeatures.h"
#ifndef EFIFEATURES_PROMETHEUS_H_
#define EFIFEATURES_PROMETHEUS_H_
#pragma once
#undef EFI_RTC
#define EFI_RTC FALSE
@ -115,4 +114,3 @@
#define EFI_NARROW_EGO_AVERAGING TRUE
#endif /* EFIFEATURES_PROMETHEUS_H_ */

View File

@ -9,8 +9,7 @@
#include "../../stm32f7ems/efifeatures.h"
#ifndef EFIFEATURES_SUBARUEJ20G_H_
#define EFIFEATURES_SUBARUEJ20G_H_
#pragma once
/* debug console */
#undef EFI_USE_UART_FOR_CONSOLE
@ -113,4 +112,3 @@
#define EFI_NARROW_EGO_AVERAGING TRUE
#endif /* EFIFEATURES_SUBARUEJ20G_H_ */

View File

@ -5,8 +5,7 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef CONFIG_ENGINES_MAZDA_MIATA_1_6_H_
#define CONFIG_ENGINES_MAZDA_MIATA_1_6_H_
#pragma once
#include "engine_configuration.h"
@ -16,4 +15,3 @@ void miataNAcommon(DECLARE_CONFIG_PARAMETER_SIGNATURE);
void setMiataNA6_VAF_MRE(DECLARE_CONFIG_PARAMETER_SIGNATURE);
#endif /* CONFIG_ENGINES_MAZDA_MIATA_1_6_H_ */

View File

@ -5,11 +5,9 @@
* Author: Ola
*/
#ifndef CONFIG_ENGINES_ME7PNP_H_
#define CONFIG_ENGINES_ME7PNP_H_
#pragma once
#include "engine_configuration.h"
void vag_18_Turbo(DECLARE_CONFIG_PARAMETER_SIGNATURE);
#endif /* CONFIG_ENGINES_ME7PNP_H_ */

View File

@ -4,11 +4,10 @@
* @date Aug 5, 2014
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef MITSUBISHI_H_
#define MITSUBISHI_H_
#pragma once
#include "engine_configuration.h"
void setMitsubishiConfiguration(DECLARE_CONFIG_PARAMETER_SIGNATURE);
#endif /* MITSUBISHI_H_ */

View File

@ -4,12 +4,9 @@
* @date Jun 27, 2014
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef ROVER_V8_H_
#define ROVER_V8_H_
#pragma once
#include "engine_configuration.h"
void setFrankenstein_01_LCD(engine_configuration_s *engineConfiguration);
void setRoverv8(DECLARE_CONFIG_PARAMETER_SIGNATURE);
#endif /* ROVER_V8_H_ */

View File

@ -4,11 +4,9 @@
* @date Jan 26, 2015
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef CONFIG_ENGINES_SACHS_H_
#define CONFIG_ENGINES_SACHS_H_
#pragma once
#include "engine_configuration.h"
void setSachs(DECLARE_CONFIG_PARAMETER_SIGNATURE);
#endif /* CONFIG_ENGINES_SACHS_H_ */

View File

@ -4,12 +4,8 @@
* @date Sep 14, 2014
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef SUBARU_H_
#define SUBARU_H_
#include "engine_configuration.h"
void setSubaru2003Wrx(DECLARE_CONFIG_PARAMETER_SIGNATURE);
void setSubaruEJ20GDefaults(DECLARE_CONFIG_PARAMETER_SIGNATURE);
#endif /* SUBARU_H_ */

View File

@ -5,9 +5,7 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef BLUETOOTH_H_
#define BLUETOOTH_H_
#pragma once
#include "global.h"
#include "tunerstudio_io.h"
@ -44,4 +42,3 @@ void bluetoothCancel(void);
*/
void bluetoothSoftwareDisconnectNotify();
#endif /* BLUETOOTH_H_ */

View File

@ -5,9 +5,7 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef TUNERSTUDIO_H_
#define TUNERSTUDIO_H_
#pragma once
#include "global.h"
#include "tunerstudio_io.h"
@ -106,5 +104,3 @@ typedef pre_packed struct
} TunerStudioWriteValueRequest;
#endif /* EFI_TUNER_STUDIO */
#endif /* TUNERSTUDIO_H_ */

View File

@ -4,9 +4,8 @@
* @date Mar 8, 2015
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef CONSOLE_TUNERSTUDIO_TUNERSTUDIO_IO_H_
#define CONSOLE_TUNERSTUDIO_TUNERSTUDIO_IO_H_
#pragma once
#include "global.h"
#if EFI_PROD_CODE
@ -109,4 +108,3 @@ int sr5ReadData(ts_channel_s *tsChannel, uint8_t * buffer, int size);
int sr5ReadDataTimeout(ts_channel_s *tsChannel, uint8_t * buffer, int size, int timeout);
bool sr5IsReady(ts_channel_s *tsChannel);
#endif /* CONSOLE_TUNERSTUDIO_TUNERSTUDIO_IO_H_ */

View File

@ -4,9 +4,8 @@
* @date Dec 29, 2012
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef CONSOLE_IO_H_
#define CONSOLE_IO_H_
#pragma once
#ifdef __cplusplus
extern "C"
{
@ -42,4 +41,3 @@ bool isCommandLineConsoleReady(void);
#define isCommandLineConsoleReady() true
#endif
#endif /* CONSOLE_IO_H_ */

View File

@ -6,12 +6,9 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef RFICONSOLE_H_
#define RFICONSOLE_H_
#pragma once
#include "datalogging.h"
void initializeConsole(Logging *sharedLogger);
void print(const char *fmt, ...);
#endif /* RFICONSOLE_H_ */

View File

@ -54,6 +54,7 @@
#include "perf_trace.h"
#include "boost_control.h"
#include "launch_control.h"
#include "tachometer.h"
#if EFI_SENSOR_CHART
#include "sensor_chart.h"
@ -91,7 +92,6 @@
#include "pwm_generator.h"
#include "lcd_controller.h"
#include "pin_repository.h"
#include "tachometer.h"
#endif /* EFI_PROD_CODE */
#if EFI_CJ125
@ -655,6 +655,7 @@ void commonInitEngineController(Logging *sharedLogger DECLARE_ENGINE_PARAMETER_S
}
#endif /* EFI_ENGINE_CONTROL */
initTachometer(PASS_ENGINE_PARAMETER_SIGNATURE);
}
#if !EFI_UNIT_TEST
@ -730,9 +731,6 @@ void initEngineContoller(Logging *sharedLogger DECLARE_ENGINE_PARAMETER_SUFFIX)
initLcdController();
#endif /* EFI_HD44780_LCD */
#if EFI_PROD_CODE
initTachometer();
#endif /* EFI_PROD_CODE */
}
// these two variables are here only to let us know how much RAM is available, also these

View File

@ -8,10 +8,8 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef MALFUNCTION_INDICATOR_H_
#define MALFUNCTION_INDICATOR_H_
#pragma once
#include "global.h"
#include "engine.h"
#if EFI_MALFUNCTION_INDICATOR
@ -21,4 +19,3 @@ void initMalfunctionIndicator(void);
#endif /* EFI_MALFUNCTION_INDICATOR */
#endif /* MALFUNCTION_INDICATOR_H_ */

View File

@ -40,7 +40,7 @@ static void tachSignalCallback(trigger_event_e ckpSignalType,
engine->executor.scheduleForLater(&tachTurnSignalOff, (int)MS2US(durationMs), &turnTachPinLow);
}
void initTachometer(void) {
void initTachometer(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
if (CONFIG(tachOutputPin) == GPIO_UNASSIGNED) {
return;
}

View File

@ -5,11 +5,9 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef CONTROLLERS_TACHOMETER_H_
#define CONTROLLERS_TACHOMETER_H_
#pragma once
#include "engine.h"
void initTachometer(void);
void initTachometer(DECLARE_ENGINE_PARAMETER_SIGNATURE);
#endif /* CONTROLLERS_TACHOMETER_H_ */

View File

@ -6,11 +6,10 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef CONTROLLERS_TRIGGER_TRIGGER_ROVER_H_
#define CONTROLLERS_TRIGGER_TRIGGER_ROVER_H_
#pragma once
#include "trigger_structure.h"
void initializeRoverK(TriggerWaveform *s);
#endif /* CONTROLLERS_TRIGGER_TRIGGER_ROVER_H_ */

View File

@ -6,9 +6,7 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef CONTROLLERS_TRIGGER_DECODERS_TRIGGER_UNIVERSAL_H_
#define CONTROLLERS_TRIGGER_DECODERS_TRIGGER_UNIVERSAL_H_
#pragma once
#include "trigger_structure.h"
#define NO_LEFT_FILTER -1
@ -27,4 +25,3 @@ void configureOnePlus60_2(TriggerWaveform *s, operation_mode_e operationMode);
void configure3_1_cam(TriggerWaveform *s, operation_mode_e operationMode);
void configureOnePlusOne(TriggerWaveform *s, operation_mode_e operationMode);
#endif /* CONTROLLERS_TRIGGER_DECODERS_TRIGGER_UNIVERSAL_H_ */

View File

@ -5,10 +5,8 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef ENGINE_EMULATOR_H_
#define ENGINE_EMULATOR_H_
#pragma once
#include "engine.h"
void initEngineEmulator(Logging *sharedLogger DECLARE_ENGINE_PARAMETER_SUFFIX);
#endif /* ENGINE_EMULATOR_H_ */

View File

@ -6,8 +6,7 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef WAVE_CHART_H_
#define WAVE_CHART_H_
#pragma once
#include "global.h"
@ -48,4 +47,3 @@ void setChartSize(int newSize);
#endif /* EFI_ENGINE_SNIFFER */
#endif /* WAVE_CHART_H_ */

View File

@ -6,8 +6,7 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef POTEN_H_
#define POTEN_H_
#pragma once
#include "global.h"
@ -26,4 +25,3 @@ void setPotResistance(Mcp42010Driver *driver, int channel, int resistance);
#endif
#endif /* POTEN_H_ */

View File

@ -6,8 +6,7 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef DIST_EMULATOR_H_
#define DIST_EMULATOR_H_
#pragma once
#include "global.h"
@ -18,4 +17,3 @@ void initTriggerEmulator(Logging *sharedLogger DECLARE_ENGINE_PARAMETER_SUFFIX);
void setTriggerEmulatorRPM(int value DECLARE_ENGINE_PARAMETER_SUFFIX);
void onConfigurationChangeRpmEmulatorCallback(engine_configuration_s *previousConfiguration);
#endif /* DIST_EMULATOR_H_ */

View File

@ -8,8 +8,7 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef ADC_MATH_H_
#define ADC_MATH_H_
#pragma once
#include "engine_configuration.h"
#define ADC_MAX_VALUE 4095
@ -22,4 +21,3 @@ float getVoltage(const char *msg, adc_channel_e channel DECLARE_ENGINE_PARAMETER
float getVoltageDivided(const char *msg, adc_channel_e channel DECLARE_ENGINE_PARAMETER_SUFFIX);
#endif /* ADC_MATH_H_ */

View File

@ -5,8 +5,7 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef HW_LAYER_CDM_ION_SENSE_H_
#define HW_LAYER_CDM_ION_SENSE_H_
#pragma once
#include "global.h"
@ -38,4 +37,3 @@ void ionPostState(TunerStudioOutputChannels *tsOutputChannels);
void cdmIonInit(void);
int getCurrentCdmValue(int currentRevolution);
#endif /* HW_LAYER_CDM_ION_SENSE_H_ */

View File

@ -5,8 +5,7 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef LCD_HD44780_H_
#define LCD_HD44780_H_
#pragma once
#ifdef __cplusplus
extern "C"
@ -28,4 +27,3 @@ void lcdShowPanicMessage(char *message);
}
#endif /* __cplusplus */
#endif /* LCD_HD44780_H_ */

View File

@ -7,8 +7,7 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef MMC_CARD_H_
#define MMC_CARD_H_
#pragma once
#ifdef __cplusplus
extern "C"
@ -25,4 +24,3 @@ void readLogFileContent(char *buffer, short fileId, short offset, short length);
}
#endif /* __cplusplus */
#endif /* MMC_CARD_H_ */

View File

@ -8,8 +8,7 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef PIN_REPOSITORY_H_
#define PIN_REPOSITORY_H_
#pragma once
#include "global.h"
#include "io_pins.h"
@ -57,4 +56,3 @@ void initBrainUsedPins(void);
const char* & getBrainUsedPin(unsigned int idx);
#endif
#endif /* PIN_REPOSITORY_H_ */

View File

@ -5,10 +5,8 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef HW_LAYER_ACCELEROMETER_H_
#define HW_LAYER_ACCELEROMETER_H_
#pragma once
#include "global.h"
#include "engine.h"
void configureAccelerometerPins(DECLARE_ENGINE_PARAMETER_SIGNATURE);
@ -24,4 +22,3 @@ float getLongitudinalAcceleration(DECLARE_ENGINE_PARAMETER_SIGNATURE);
*/
float getTransverseAcceleration(DECLARE_ENGINE_PARAMETER_SIGNATURE);
#endif /* HW_LAYER_ACCELEROMETER_H_ */

View File

@ -5,8 +5,7 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef HW_LAYER_SENSORS_CJ125_LOGIC_H_
#define HW_LAYER_SENSORS_CJ125_LOGIC_H_
#pragma once
#include "engine_configuration.h"
#include "pwm_generator_logic.h"
@ -149,4 +148,3 @@ public:
#define CJ125_PID_LSU49_P (8.0f)
#define CJ125_PID_LSU49_I (0.003f)
#endif /* HW_LAYER_SENSORS_CJ125_LOGIC_H_ */

View File

@ -5,8 +5,7 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef HW_LAYER_SMART_GPIO_H_
#define HW_LAYER_SMART_GPIO_H_
#pragma once
/* TLE6240 pins go right after on chips */
#define TLE6240_PIN(n) ((brain_pin_e)((int)BRAIN_PIN_LAST_ONCHIP + 1 + (n)))
@ -17,4 +16,3 @@ void initSmartGpio(void);
void startSmartCsPins();
void stopSmartCsPins();
#endif /* HW_LAYER_SMART_GPIO_H_ */

View File

@ -4,8 +4,8 @@
* @date Dec 24, 2014
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#ifndef STEPPER_H_
#define STEPPER_H_
#pragma once
#include "global.h"
#include "efi_gpio.h"
@ -76,4 +76,3 @@ private:
int m_targetPosition = 0;
};
#endif /* STEPPER_H_ */