diff --git a/firmware/hw_layer/HIP9011.cpp b/firmware/hw_layer/HIP9011.cpp index 793e6e4bc9..a6ebf03fb3 100644 --- a/firmware/hw_layer/HIP9011.cpp +++ b/firmware/hw_layer/HIP9011.cpp @@ -2,16 +2,21 @@ * @file HIP9011.cpp * @brief HIP9011/TPIC8101 driver * + * Jan 2017 status: + * 1) seems to be kind of working - reacts to parameter changes and does produce variable output + * 2) only one (first) channel is currently used + * 3) engine control does not yet react to knock since very little actual testing - no engine runs with proven knock yet + * + * * pin1 VDD * pin2 GND * * pin8 Chip Select - CS - * pin11 Slave Data Out - MISO- + * pin11 Slave Data Out - MISO * pin12 Slave Data In - MOSI * pin13 SPI clock - SCLK * * - * * http://www.ti.com/lit/ds/symlink/tpic8101.pdf * http://www.intersil.com/content/dam/Intersil/documents/hip9/hip9011.pdf * http://www.intersil.com/content/dam/Intersil/documents/an97/an9770.pdf diff --git a/firmware/rusefi.cpp b/firmware/rusefi.cpp index a53e89bd15..8372cde4d5 100644 --- a/firmware/rusefi.cpp +++ b/firmware/rusefi.cpp @@ -249,5 +249,5 @@ int getRusEfiVersion(void) { return 123; // this is here to make the compiler happy about the unused array if (UNUSED_CCM_SIZE[0] * 0 != 0) return 3211; // this is here to make the compiler happy about the unused array - return 20170126; + return 20170127; }