rusefi-1/firmware/init/init.h

15 lines
393 B
C
Raw Normal View History

2019-09-21 12:33:13 -07:00
/**
* @file init.h
*/
#pragma once
// Call this once at startup to initialize, configure, and subscribe sensors
void initSensors();
// Call this whenever the configuration may have changed, so any sensors
// can be reconfigured with the new settings.
// Note: this may not be necessarily possible for all sensors, so some may
// do nothing when this is called.
void reconfigureSensors();