F30POST
F30POST
2012-2015 BMW 3-Series and 4-Series Forum
BMW Garage BMW Meets Register Today's Posts
BMW 3-Series and 4-Series Forum (F30 / F32) | F30POST > Technical Forums > F30 DIYs and Coding Discussions > USB video
proTUNING Freaks
Post Reply
 
Thread Tools Search this Thread
      03-05-2017, 02:07 PM   #1
daveb666
Private
23
Rep
68
Posts

Drives: F31 Tourer
Join Date: Feb 2017
Location: UK

iTrader: (0)

USB video

Tried to code this on my 2017 f31 today.

Did everything as per the guides Inc DVD in motion too. I can choose the 'video' option from media. It it finds no files on the USB. (I have 6 files each of a diff format).

The files are just in the root of the USB, do they need to be in a directory or have I missed something with the coding?
Appreciate 0
      03-05-2017, 04:06 PM   #2
kapkanimd
First Lieutenant
United_States
58
Rep
376
Posts

Drives: 2020 M8 Competition Gran Coupe
Join Date: Sep 2013
Location: Tampa, FL

iTrader: (2)

daveb666: did you include the codec coding?(ENT CODEC XVID, etc,etc) as well as the API_USB_VIDEO -> both (mine came this way though)

I just coded DVD video which works until you go faster than 1mph, but I cant seem to get the speedlock off.. I have a 2016 NBT. I changed the video frontlocked and handbrake to nicht activ, and video speedlock to none

For the speeklock_x_kmh_max/min on my NBT it does not have the werte value option like the old CBT did so I just changed it to nicht active for both..

Can anyone help?
Appreciate 0
      03-05-2017, 07:22 PM   #3
insanecoder
Banned
1412
Rep
3,211
Posts

Drives: 340isDrive
Join Date: May 2016
Location: East Coast USA

iTrader: (0)

Um well because our newer cars have a diff module the speedlock kicks in and I cant override it beyond 40mph because of the bitmask.. (I cant remember the mph I wanna say its 40mph cause its useless and I never use it now.. who (passenger) wants watches a video which shuts off at 40mph???)

But here are my notes:
HU_ENTRY/HU_CIC / HU_NBT:
DVD-in-Motion activated:
3000 ? SPEEDLOCK_X_KMH_MAX werte = FF
3000 ? SPEEDLOCK_X_KMH_MIN werte = FF
3000 ? VIDEO_HANDBRAKE set to: nicht_aktiv
3000 ? VIDEO_FRONT_LOCKED set to: nicht_aktiv
3000 ? VIDEO_SPEEDLOCK_CONDITION set to: none=00
3000 SPEEDLOCK_X_KMH_MAX werte = FF
3000 SPEEDLOCK_X_KMH_MIN werte = FF
3000 VIDEO_HANDBRAKE set to: nicht_aktiv
3000 VIDEO_FRONT_LOCKED set to: nicht_aktiv
3000 VIDEO_SPEEDLOCK_CONDITION set to: none=00
SPEEDLOCK_SPEEDVALUE_MIN: Werte = 1F
UNBELEGT (below the above): Werte = 07
SPEEDLOCK_SPEEDVALUE_MAX: Werte = 3F (7th & 8th bits from end of line 6 CAFD_00001EF6_006_018_014
UNBELEGT (below the above): Werte = 03
Depending on your bitmask i copied this from another forum with the max. settings depending on the bitmask (thanks to dmnc02)
SPEEDLOCK_SPEEDVALUE_MIN: Werte = 1F (11111b)
UNBELEGT (below the above): Werte = 07 (111b)
SPEEDLOCK_SPEEDVALUE_MAX: Werte = 3F (111111b)
UNBELEGT (below the above): Werte = 03 (11b)
1F 31 3F 63 = 94 D3 211 add=305
1F 31 2F 47 = 78 E3 227 add=305
1F 31 1F 31 = 62 F3 243 add=305
0F 15 3F 63 = 78 E3 227 add=305 (speedlockmin + speedlockmax + last2bits = 305)
1F 31 FF 255 = 286 13 19
0F 15 2F 47 = 62 F3 243

To see your bitmask entrys in Esys
Select the checkbox for storage Info in fdl editor
Appreciate 0
      03-08-2017, 06:31 PM   #4
kapkanimd
First Lieutenant
United_States
58
Rep
376
Posts

Drives: 2020 M8 Competition Gran Coupe
Join Date: Sep 2013
Location: Tampa, FL

iTrader: (2)

wow... that seems pretty complicated. why is it so much harder than with the CIC? I just did the 3-5 codes in my 2013 and it worked flawless (DVD - never tried USB). Is this issue only with USB? I havent tried DVD yet.
Appreciate 0
      03-10-2017, 01:13 AM   #5
Almaretto
Major General
Almaretto's Avatar
2374
Rep
8,364
Posts

Drives: Test Vehicles
Join Date: Dec 2015
Location: Mountain View, CA

iTrader: (0)

Quote:
Originally Posted by kapkanimd View Post
wow... that seems pretty complicated. why is it so much harder than with the CIC? I just did the 3-5 codes in my 2013 and it worked flawless (DVD - never tried USB). Is this issue only with USB? I havent tried DVD yet.
Storage info dictates acceptable werte values.

HU_NBT
  • SPEEDLOCK_X_KMH_MAX: Bit Mask (Size equal to unit) = 11111111b
  • werte = FF Hexadecimal = 1111 1111 binary = accepted
    • FF = 255 Decimal --> VIM up to 255 kph
HU_NBT2 (AKA HU_NBT_EVO)
  • SPEEDLOCK_SPEEDVALUE_MAX: Bitmask (Size less than unit) = 01000000b
  • werte = 41 Hexadecimal = 0100 0001 Binary <--- Rejected
  • werte = 40 Hexadecimal = 01000000 Binary <-- Accepted
    • 40 = 64 (Decimal) --> VIM up to 64 kph
Appreciate 0
      03-10-2017, 08:09 PM   #6
kapkanimd
First Lieutenant
United_States
58
Rep
376
Posts

Drives: 2020 M8 Competition Gran Coupe
Join Date: Sep 2013
Location: Tampa, FL

iTrader: (2)

Ok, so I am starting to get it except for a few things, which I would like to learn.

I do see this as somewhat useful as you can still use if in heavy traffic.

So I definitely have the HU-NBT2. Do I need to read my bitmask or can I use the werte=40 as above by Almaretto? This is quite different than the 1F/3F as above.
Appreciate 0
      03-10-2017, 09:03 PM   #7
Almaretto
Major General
Almaretto's Avatar
2374
Rep
8,364
Posts

Drives: Test Vehicles
Join Date: Dec 2015
Location: Mountain View, CA

iTrader: (0)

Quote:
Originally Posted by kapkanimd View Post
Ok, so I am starting to get it except for a few things, which I would like to learn.

I do see this as somewhat useful as you can still use if in heavy traffic.

So I definitely have the HU-NBT2. Do I need to read my bitmask or can I use the werte=40 as above by Almaretto? This is quite different than the 1F/3F as above.
You are safe going with 1F/3F.
Sometimes storage info changes with firmware.
  • CAFD_00001EF6_006_018_016.ncd
    • SPEEDLOCK_SPEEDVALUE_MIN: 0001 1111 = 1F
    • SPEEDLOCK_SPEEDVALUE_MAX: 0011 1111 = 3F
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 10:34 AM.




f30post
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