32 lines
622 B
C++
32 lines
622 B
C++
/*
|
|
* yaw_rate_sensor.cpp
|
|
*
|
|
* bosch Yaw Rate Sensor YRS 3
|
|
*
|
|
* https://github.com/rusefi/rusefi/files/2476705/Yaw_Rate_Sensor_YRS_3_Datasheet_51_en_2778925323.pdf
|
|
* http://www.bosch-motorsport.de/media/msd/downloads/archiv/sensoren/Yaw_Rate_Sensor_YRS_3_Datasheet_51_en_2778925323.pdf
|
|
*
|
|
* 0 265 005 693 2007-2013 INFINITI G37
|
|
* BLACK or GREY GND
|
|
* GREEN +12
|
|
* LT BLU BUS-H
|
|
* YEL BUS-L
|
|
*
|
|
*
|
|
* @date Oct 16, 2018
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
|
*/
|
|
|
|
#include "yaw_rate_sensor.h"
|
|
|
|
#if EFI_BOSCH_YAW
|
|
|
|
void initBoschYawRateSensor() {
|
|
|
|
}
|
|
|
|
#endif /* EFI_BOSCH_YAW */
|
|
|
|
|
|
|