BMW Garage BMW Meets Register Today's Posts

Go Back   BMW M3 and BMW M4 Forum > BMW F80 M3 / F82 M4 Technical Topics > DIY and Coding Discussions

Post Reply
 
Thread Tools Search this Thread
      03-08-2018, 10:21 AM   #1
bruswain
Private
10
Rep
82
Posts

Drives: f80 M3
Join Date: Oct 2017
Location: southern CA

iTrader: (0)

Read texts function

Hello, does any know if it's possible, and how, to code in read texts on screen? I don't have or need enhanced bluetooth, just the texts. I tried coding the long list I found online, but it did not work and had glitches (voice prompts and commands got turned off)

Car is 2018, with executive if that matters. I am coding this through expert mode in Bimmercode.


Thanks!
Appreciate 0
      03-10-2018, 10:31 PM   #2
audioMeth
BTC maxi
audioMeth's Avatar
United_States
222
Rep
1,124
Posts

Drives: F80
Join Date: Feb 2009
Location: Rehoboth, MA

iTrader: (8)

attached 6NS(left) vs 6NH(right). do not change MICROPHONE_NUMBER and WLAN_DIAGNOSE
Attached Images
 
Appreciate 0
      03-11-2018, 10:33 AM   #3
pmooiweer
Zymurgist
pmooiweer's Avatar
United_States
89
Rep
161
Posts

Drives: 2018 BMW M3 (F80)
Join Date: May 2012
Location: Philadelphia area

iTrader: (0)

Here’s how I’ve coded my HU_NBT2 ECU for “enhanced” bluetooth and Office functions. I have a MY18 F80 with all packages, but without the wireless charging option. It allows pairing of 2 phones (secondary phone is for calls only) and enables a select set of Office menus in ConnectedDrive. OFFICE_MENUS_ACTIVE, MACRO_PIM, SMS_EIN_AUS and PIM_NEW_ELEMENT_SMS are needed for text messages and PIM_DRIVING_TEXT_LENGTH controls how much of a text message can be read while driving.

You can cut and paste the XML below into a cheat code file or manually code the settings as shown.

<cafd id="00001EF6" name="HU_NBT2" author="pmooiweer" series="F080,F082">
<code description="Enable Enhanced Bluetooth, available Office functions and Contact Pics">
<group id="3000">
<function start="36" end="36" mask="00001000b" comment="OFFICE_MENUS_ACTIVE">aktiv</function>
</group>
<group id="3003">
<function start="3" end="3" mask="00010000b" comment="TWO_PHONES_PARALLEL">aktiv</function>
<function start="8" end="8" mask="00100000b" comment="CONTACT_BOOK_PICTURES">aktiv</function>
<function start="10" end="10" mask="00000001b" comment="BLUETOOTH_2ND_HFP">aktiv</function>
<function start="10" end="10" mask="00001000b" comment="MACRO_PIM">aktiv</function>
<function start="11" end="11" mask="00000111b" comment="PIM_DRIVING_TEXT_LENGTH">Whole_Text</function>
<function start="19" end="19" mask="00100000b" comment="PIM_BILDER_EIN_AUS">aktiv</function>
<function start="20" end="20" mask="00001000b" comment="AUDIO_NOTES_EIN_AUS">aktiv</function>
<function start="20" end="20" mask="00010000b" comment="SMS_EIN_AUS">aktiv</function>
<function start="31" end="31" mask="01000000b" comment="PIM_NEW_ELEMENT_SMS">aktiv</function>
<function start="32" end="32" mask="00000001b" comment="PIM_NEW_ELEMENT_AUDIO_NOTE">aktiv</function>
<function start="12" end="12" mask="00000001b" comment="PIM_NEW_ELEMENT_VOICE_EMAIL">aktiv</function>
</group>
</code>
</cafd>
Appreciate 0
      03-12-2018, 11:00 PM   #4
bruswain
Private
10
Rep
82
Posts

Drives: f80 M3
Join Date: Oct 2017
Location: southern CA

iTrader: (0)

Thanks, will give this a shot tomorrow!
Appreciate 0
      04-22-2018, 09:58 AM   #5
Encanto
Colonel
Encanto's Avatar
United_States
1164
Rep
2,180
Posts

Drives: 2021 X3 M40i
Join Date: Nov 2015
Location: Ohio

iTrader: (1)

Have you physically confirmed that the secondary phone cannot receive calls? I mean, that was a limitation with the Combox back in the day but that was improved with the TCB (which your MY2018 has).

Quote:
Originally Posted by pmooiweer View Post
Here’s how I’ve coded my HU_NBT2 ECU for “enhanced” bluetooth and Office functions. I have a MY18 F80 with all packages, but without the wireless charging option. It allows pairing of 2 phones (secondary phone is for calls only) and enables a select set of Office menus in ConnectedDrive. OFFICE_MENUS_ACTIVE, MACRO_PIM, SMS_EIN_AUS and PIM_NEW_ELEMENT_SMS are needed for text messages and PIM_DRIVING_TEXT_LENGTH controls how much of a text message can be read while driving.

You can cut and paste the XML below into a cheat code file or manually code the settings as shown.

<cafd id="00001EF6" name="HU_NBT2" author="pmooiweer" series="F080,F082">
<code description="Enable Enhanced Bluetooth, available Office functions and Contact Pics">
<group id="3000">
<function start="36" end="36" mask="00001000b" comment="OFFICE_MENUS_ACTIVE">aktiv</function>
</group>
<group id="3003">
<function start="3" end="3" mask="00010000b" comment="TWO_PHONES_PARALLEL">aktiv</function>
<function start="8" end="8" mask="00100000b" comment="CONTACT_BOOK_PICTURES">aktiv</function>
<function start="10" end="10" mask="00000001b" comment="BLUETOOTH_2ND_HFP">aktiv</function>
<function start="10" end="10" mask="00001000b" comment="MACRO_PIM">aktiv</function>
<function start="11" end="11" mask="00000111b" comment="PIM_DRIVING_TEXT_LENGTH">Whole_Text</function>
<function start="19" end="19" mask="00100000b" comment="PIM_BILDER_EIN_AUS">aktiv</function>
<function start="20" end="20" mask="00001000b" comment="AUDIO_NOTES_EIN_AUS">aktiv</function>
<function start="20" end="20" mask="00010000b" comment="SMS_EIN_AUS">aktiv</function>
<function start="31" end="31" mask="01000000b" comment="PIM_NEW_ELEMENT_SMS">aktiv</function>
<function start="32" end="32" mask="00000001b" comment="PIM_NEW_ELEMENT_AUDIO_NOTE">aktiv</function>
<function start="12" end="12" mask="00000001b" comment="PIM_NEW_ELEMENT_VOICE_EMAIL">aktiv</function>
</group>
</code>
</cafd>
Appreciate 0
      04-23-2018, 05:29 PM   #6
pmooiweer
Zymurgist
pmooiweer's Avatar
United_States
89
Rep
161
Posts

Drives: 2018 BMW M3 (F80)
Join Date: May 2012
Location: Philadelphia area

iTrader: (0)

Quote:
Originally Posted by Encanto View Post
Have you physically confirmed that the secondary phone cannot receive calls? I mean, that was a limitation with the Combox back in the day but that was improved with the TCB (which your MY2018 has).
Yes, I confirmed that both phones work via Bluetooth. My phone is primary and my wife’s is secondary. They work individually or when both are connected, i.e. each can receive or place calls.
Appreciate 0
Post Reply

Bookmarks


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



All times are GMT -5. The time now is 06:11 AM.




f80post
Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
1Addicts.com, BIMMERPOST.com, E90Post.com, F30Post.com, M3Post.com, ZPost.com, 5Post.com, 6Post.com, 7Post.com, XBimmers.com logo and trademark are properties of BIMMERPOST