Jump to content
AVIC411.com

question about using a wifi SD card WIFI-Manager


Recommended Posts

well I got the SD card that spectrec one 821. and I have avicnet 2.1 on my f90bt.  I have found some wince or win mobile drivers that seem to install correctly from a cab file, but when I insert the spectrec wifi sd card nothing happens, there is one thread I found about it, and its very old and the links to files don't work anymore.

 

I know I probably need some sort of wifi manager, but I cannot find a wince wifimanager anywhere online.

 

any help would be great.

 

also trying to figure out the OBD II with hobdrive software.  I have the obd II cable reconised in 232 usb software that came with avicnet 2.1, but I cannot get any readings from my car, might be the string im using for elms.

Link to post
Share on other sites

http://www.ebay.com/itm/111093838818

 

the drivers found on that items description

 

I bought the wifi card from him for $10 and used the drivers of the first download link, it installs it so when you plug it in it automatically brings up the windows wifi manager.  then you can setup a network to automatically connect to when it sees that it is available, I did that for my iphone hotspot and it works good.

 

problem is it seems to want to install to the /windows directory, and that works fine for a while, but after a while it just wont detect it anymore then you have to re-install it and setup everything again.  I guess the key is to install to the /myflashdrive but when I do that it will not auto detect the card and will not work.  so my guess is you have to somehow manually edit the registry to make it link to the /myflashdrive, and install the stuff on the myflashdrive so it doesn't get corrupted, but then uses the registery to auto start it, I haven't put enough time into it to figure it all out though.

 

im also still trying to get my OBD elm327 device to work with my car.

Link to post
Share on other sites

 

 problem is it seems to want to install to the /windows directory, and that works fine for a while, but after a while it just wont detect it anymore then you have to re-install it and setup everything again.  I guess the key is to install to the /myflashdrive but when I do that it will not auto detect the card and will not work.  so my guess is you have to somehow manually edit the registry to make it link to the /myflashdrive, and install the stuff on the myflashdrive so it doesn't get corrupted, but then uses the registery to auto start it, I haven't put enough time into it to figure it all out though.

 

We had a long discussion thread going at one point.  In it, I pasted a portion of the MortScript I borrowed from MioPocket that modified a few registry entries I needed for the WiFi settings to pop up:

 

http://avic411.com/index.php?/topic/23534-wifi-internet-browsing-f500bt-success/page-6&do=findComment&comment=176858

 

My full setup process was in the Wiki at one point but the article doesn't appear to have been copied over when Jason made the backup to the forum, so I'd need to search my old notes for the full script.  Probably won't be able to do that for a week or so.  I came up with some of my settings after reading the GPSPassion thread on MioPocket (http://www.gpspassion.com/forumsen/topic.asp?TOPIC_ID=136798&whichpage=187).  It's a long read, but if you work backwards from the end it might go faster and get you results sooner.

Link to post
Share on other sites

good luck to you man,....

 

also let me know if you get anywhere with getting HOBDRIVE or another OBD program working

 

I have been digging through Ryar old Avic thread & on HOBDRIVE forums to figure out how to get OBD2 working, but no luck yet.

 

 

seems like the drivers need to be added to the unit, & you have to configure the registry & a few o0ther things, but im not 100%

Link to post
Share on other sites

OK, finally found my old notes from '09.  Here's a copy of the MortScript I used to set up the registry entries the driver needs, copy the driver DLL over to \Windows and hide the Taskbar so it didn't sit on top of av.exe.  Hope it helps.

 

#####
# [HKEY_LOCAL_MACHINE\Drivers\Builtin\Ethman\Popup]
# Popup=1
# Timeout=3600 (or 0xE10)
RegWriteDWord( "HKLM", "Drivers\Builtin\Ethman\Popup", "Popup", 1)
RegWriteDWord( "HKLM", "Drivers\Builtin\Ethman\Popup", "Timeout", 3600)

#####
# [HKEY_LOCAL_MACHINE\Drivers\SDCARD\ClientDrivers\Custom\MANF-037A-CARDID-5911-FUNC-1]
# "Dll"="WLAN11g.dll"
# "Prefix"="NDL"
# "Instance0"="WLAN11g:WLAN11g1"
# "Instance1"="WLAN11g:WLAN11g2"
RegWriteString( "HKLM", "Drivers\SDCARD\ClientDrivers\Custom\MANF-037A-CARDID-5911-FUNC-1", "Dll", "WLAN11g.dll")
RegWriteString( "HKLM", "Drivers\SDCARD\ClientDrivers\Custom\MANF-037A-CARDID-5911-FUNC-1", "Prefix", "NDL")
RegWriteString( "HKLM", "Drivers\SDCARD\ClientDrivers\Custom\MANF-037A-CARDID-5911-FUNC-1", "Instance0", "WLAN11g:WLAN11g1")
RegWriteString( "HKLM", "Drivers\SDCARD\ClientDrivers\Custom\MANF-037A-CARDID-5911-FUNC-1", "Instance1", "WLAN11g:WLAN11g1")

#####
# [HKEY_LOCAL_MACHINE\Comm\WLAN11g]
# "DisplayName"="WLAN-11g ADAPTER"
# "Group"="NDIS"
# "ImagePath"="WLAN11g.dll"
RegWriteString( "HKLM", "Comm\WLAN11g", "DisplayName", "WLAN-11g ADAPTER")
RegWriteString( "HKLM", "Comm\WLAN11g", "Group", "NDIS")
RegWriteString( "HKLM", "Comm\WLAN11g", "ImagePath", "WLAN11g.dll")

#####
# [HKEY_LOCAL_MACHINE\Comm\WLAN11g\Linkage]
# "Route"=hex(7):57,4c,41,4e,31,31,67,31,00,00
RegWriteBinary( "HKLM", "Comm\WLAN11g\Linkage", "Route", "574c414e313167310000")

#####
# [HKEY_LOCAL_MACHINE\Comm\WLAN11g1]
# "DisplayName"="WLAN-11g ADAPTER"
# "Group"="NDIS"
# "ImagePath"="WLAN11g.dll"
RegWriteString( "HKLM", "Comm\WLAN11g", "DisplayName", "WLAN-11g ADAPTER")
RegWriteString( "HKLM", "Comm\WLAN11g", "Group", "NDIS")
RegWriteString( "HKLM", "Comm\WLAN11g1", "ImagePath", "WLAN11g.dll")

#####
# [HKEY_LOCAL_MACHINE\Comm\WLAN11g1\Parms]
# "BusNumber"=dword:00000000
# "BusType"=dword:00000000
# "PowerMode"=dword:00000002
# "SDBlockSize"="64"
# "Domain"="0"
# "Angle"="0"

RegWriteDWord( "HKLM", "Comm\WLAN11g1\Parms", "BusNumber", 0)
RegWriteDWord( "HKLM", "Comm\WLAN11g1\Parms", "BusType", 0)
RegWriteDWord( "HKLM", "Comm\WLAN11g1\Parms", "PowerMode", 2)
RegWriteString( "HKLM", "Comm\WLAN11g1\Parms", "SDBlockSize", "64")
RegWriteString( "HKLM", "Comm\WLAN11g1\Parms", "Domain", "0")
RegWriteString( "HKLM", "Comm\WLAN11g1\Parms", "Angle", "0")

#####
# [HKEY_LOCAL_MACHINE\Comm\WLAN11g1\Parms\TcpIp]
# "EnableDHCP"=dword:00000001
# "DefaultGateway"="0.0.0.0"
# "UseZeroBroadcast"=dword:00000000
# "IpAddress"="0.0.0.0"
# "Subnetmask"="0.0.0.0"

RegWriteDWord( "HKLM", "Comm\WLAN11g1\Parms\TcpIp", "EnableDHCP", 1)
RegWriteString( "HKLM", "Comm\WLAN11g1\Parms\TcpIp", "DefaultGateway", "0.0.0.0")
RegWriteDWord( "HKLM", "Comm\WLAN11g1\Parms\TcpIp", "UseZeroBroadcast", 0)
RegWriteString( "HKLM", "Comm\WLAN11g1\Parms\TcpIp", "IpAddress", "0.0.0.0")
RegWriteString( "HKLM", "Comm\WLAN11g1\Parms\TcpIp", "Subnetmask", "0.0.0.0")

#####
# [HKEY_LOCAL_MACHINE\Comm\EAP\Extension\13]
# "Path"="eaptls.dll"
# "InteractiveUIPath"="netui.dll"
# "ConfigUIPath"="netui.dll"
# "InvokeUserNameDialog"=dword:00000001
# "FriendlyName"="TLS"

RegWriteString( "HKLM", "Comm\EAP\Extension\13", "Path", "eaptls.dll")
RegWriteString( "HKLM", "Comm\EAP\Extension\13", "InteractiveUIPath", "netui.dll")
RegWriteString( "HKLM", "Comm\EAP\Extension\13", "ConfigUIPath", "netui.dll")
RegWriteDWord( "HKLM", "Comm\EAP\Extension\13", "InvokeUserNameDialog", 1)
RegWriteString( "HKLM", "Comm\EAP\Extension\13", "FriendlyName", "TLS")

#####
# [HKEY_LOCAL_MACHINE\Drivers\BuiltIn\AFD]
# "Order"=dword:00000002

RegWriteDWord( "HKLM", "Drivers\BuiltIn\AFD", "Order", 2)

#####
# [HKEY_LOCAL_MACHINE\Drivers\BuiltIn\Ethman]
# "Order"=dword:00000005
# "Index"=dword:00000001
# "Dll"="ethman.dll"
# "Prefix"="ETM"

RegWriteDWord( "HKLM", "Drivers\BuiltIn\Ethman", "Order", 5)
RegWriteDWord( "HKLM", "Drivers\BuiltIn\Ethman", "Index", 1)
RegWriteString( "HKLM", "Drivers\BuiltIn\Ethman", "Dll", "ethman.dll")
RegWriteString( "HKLM", "Drivers\BuiltIn\Ethman", "Prefix", "ETM")

#####
# [HKEY_LOCAL_MACHINE\Drivers\BuiltIn\ZeroConfig]
# "Order"=dword:00000004
# "Index"=dword:00000001
# "Dll"="WZCSVC.dll"
# "Prefix"="ZCF"

RegWriteDWord( "HKLM", "Drivers\BuiltIn\ZeroConfig", "Order", 4)
RegWriteDWord( "HKLM", "Drivers\BuiltIn\ZeroConfig", "Index", 1)
RegWriteString( "HKLM", "Drivers\BuiltIn\ZeroConfig", "Dll", "WZCSVC.dll")
RegWriteString( "HKLM", "Drivers\BuiltIn\ZeroConfig", "Prefix", "ZCF")

#####
# [HKEY_LOCAL_MACHINE\Drivers\BuiltIn\NDISUIO]
# "Order"=dword:00000003
# "Index"=dword:00000001
# "Dll"="ndisuio.dll"
# "Prefix"="UIO"
RegWriteDWord( "HKLM", "Drivers\BuiltIn\NDISUIO", "Order", 3)
RegWriteDWord( "HKLM", "Drivers\BuiltIn\NDISUIO", "Index", 1)
RegWriteString( "HKLM", "Drivers\BuiltIn\NDISUIO", "Dll", "ndisuio.dll")
RegWriteString( "HKLM", "Drivers\BuiltIn\NDISUIO", "Prefix", "UIO")

#####
# Copy the file "WLAN11g.dll" to \Windows, overwriting if it exists
Copy( "\My Flash Disk\Utils\WLAN\WLAN11g.dll", "\Windows\WLAN11g.dll", TRUE )


#####
# Set the task bar to auto hide so it's not over the AVIC buttons
# [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shell\AutoHide]
# "Default"=dword:00000001
RegWriteDWord( "HKLM", "SOFTWARE\Microsoft\Shell\AutoHide", "Default", 1)

 

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...