wastegate Posted April 8, 2024 Report Posted April 8, 2024 Unless I'm missing it, I'd love to see a feature where you can use a table for anything you want. Personally I'd love to use one to convert an input to what Link is expecting. For example, my Transmission controller outputs the gear position as Neutral: 0x00 Forward ranges: 0x01 to 0x0F Reverse ranges: 0x11 to 0x1F Park: 0x10 However, G4/G5 expect gear position as 0 (no gear) 1 2 3 4 5 6 7 8 9 ·P (Park) 10 ·R (Reverse) 11 ·N (Neutral) 12 ·D (Drive) 13 ·H (High) 14 ·L (Low) 15 ·M (Manual mode) 16 ·M- (Manual mode shift down) 17 ·M+ (Manual mode shift up) Ideally, I'd like to have a CAN Input from the TCU on one axis and the Shifter Position on the other as a 2D table. Quote
Adamw Posted April 10, 2024 Report Posted April 10, 2024 I think you should be able to do that with the existing analog gear position table. An example, assuming you only have 1 reverse gear then your highest CAN value received would be 0x11 or 17 in decimal. We only have 5.00V input range for an analog gear pos sensor so divide the incoming CAN data by 4. 0x11 or "17" would be received as 4.25V. Assign this to R in the Gear pos table. N would be 0V, 1st would be 0.25V, etc. Electredge 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.