File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1111 "type" : " git" ,
1212 "url" : " https://github.com/designer2k2/EMUcan"
1313 },
14- "version" : " 1.0.3 " ,
14+ "version" : " 1.0.4 " ,
1515 "license" : " GPL-3.0-only" ,
1616 "frameworks" : " arduino" ,
1717 "platforms" : " *" ,
Original file line number Diff line number Diff line change 11name =EMUcan
2- version =1.0.3
2+ version =1.0.4
33author =Stephan M. <designer2k2@gmail.com>
44maintainer =Stephan M. <designer2k2@gmail.com>
55sentence =ECUMaster EMU CAN Stream Reader Arduino Library
Original file line number Diff line number Diff line change @@ -118,8 +118,8 @@ bool EMUcan::decodeEmuFrame(struct can_frame *msg) {
118118 emu_data.oilTemperature = msg->data [3 ];
119119 // 4 OILP BAR 0.0625
120120 emu_data.oilPressure = msg->data [4 ] * 0.0625 ;
121- // 5 FUELP BAR 0.03125
122- emu_data.fuelPressure = msg->data [5 ] * 0.03125 ;
121+ // 5 FUELP BAR 0.0625
122+ emu_data.fuelPressure = msg->data [5 ] * 0.0625 ;
123123 // 6-7 CLT 16bit Signed 0.016129ms
124124 emu_data.CLT = ((msg->data [7 ] << 8 ) + msg->data [6 ]);
125125 }
Original file line number Diff line number Diff line change 2626
2727#include < mcp2515.h>
2828
29- #define EMUCAN_LIB_VERSION (F(" 1.0.3 " ))
29+ #define EMUCAN_LIB_VERSION (F(" 1.0.4 " ))
3030
3131// Available data
3232struct emu_data_t {
You can’t perform that action at this time.
0 commit comments