View Single Post
      09-20-2017, 12:12 AM   #58
SalpacinoBMW
Private
SalpacinoBMW's Avatar
14
Rep
51
Posts

Drives: 2012 335i Sedan
Join Date: Jun 2015
Location: Tustin, CA

iTrader: (0)

Quote:
Originally Posted by SalpacinoBMW View Post
I have coded the below and works perfect when lights are off and DRL are on. Once i switch it to Automatic it does not work and turn signals dont turn on now (thats because i turned them off to only allow bar to blink). Can anyone give me any ideas of how to get them to work when switch to automatic would be great. thanks


MAPPING_TAGFAHRL_H2_L_OUTPUT > sl_2_l
MAPPING_TAGFAHRL_H2_L_FUNCTION > werte 06
MAPPING_TAGFAHRL_H2_R_OUTPUT > sl_2_r
MAPPING_TAGFAHRL_H2_R_FUNCTION > werte 07
MAPPING_TAGFAHRL_H_L_OUTPUT > sl_l
MAPPING_TAGFAHRL_H_L_FUNCTION > werte 06
MAPPING_TAGFAHRL_H_R_OUTPUT > sl-r
MAPPING_TAGFAHRL_H_R_FUNCTION > werte 07

MAPPING_BLINKER_H_L_PWM_LEVEL_1 > werte 00
MAPPING_BLINKER_H_R_PWM_LEVEL_1 > werte 00
So with some help from Mwahab (thank you) and some messing around with the settings, i finally figured out how to get this to work with the Automatic and all light settings (Automatic, Off, Parking Lights, Headlamps). Looks like i just needed to set the priority fields. Below is the complete coding needed to get the Rear Light Bars Remapped For Turn Signals and turn off the actual rear corner orange turn signals.


REAR LIGHT BARS REMAPPED FOR TURN SIGNALS

MAPPING_TAGFAHRL_H2_L_OUTPUT > sl_2_l
MAPPING_TAGFAHRL_H2_L_FUNCTION > werte 06
MAPPING_TAGFAHRL_H2_L_PRIORITY > Priority 1

MAPPING_TAGFAHRL_H2_R_OUTPUT > sl_2_r
MAPPING_TAGFAHRL_H2_R_FUNCTION > werte 07
MAPPING_TAGFAHRL_H2_R_PRIORITY > Priority 1
--
MAPPING_TAGFAHRL_H_L_OUTPUT > sl_l
MAPPING_TAGFAHRL_H_L_FUNCTION > werte 06
MAPPING_TAGFAHRL_H_L_PRIORITY > Priority 1

MAPPING_TAGFAHRL_H_R_OUTPUT > sl-r
MAPPING_TAGFAHRL_H_R_FUNCTION > werte 07
MAPPING_TAGFAHRL_H_R_PRIORITY > Priority 1
--
MAPPING_STANDL_H1_L_PRIORITY > Priority 3
MAPPING_STANDL_H1_R_PRIORITY > Priority 3
--
MAPPING_STANDL_H2_L_PRIORITY > Priority 4
MAPPING_STANDL_H2_R_PRIORITY > Priority 4
--
Turn off L/R Rear Orange Turn signal
MAPPING_BLINKER_H_L_PWM_LEVEL_1 > 00
MAPPING_BLINKER_H_L_PWM_LEVEL_r > 00
Appreciate 2