Hallo,
vielleicht kann mir hier jemand helfen.
Ich habe ein WayteQ X960BT, darauf ist unter Anderen IGO und Navigon. Beim IGO funkt das TCM ganz gut, nur will es einfach nicht beim Navigon klappen.
Ich habe erst die "Navigon 7.7.5 Build 447 für WayteQ X960BT (800x480) mit TMC (!) – SD-ready" von "7132helmut"
danach habe ich noch eine 7.7.6 (SD-Ready) (keine Ahnung wo ich die her hab)
beide starten ohne Probleme aber es geht einfach kein TMC.
Beim 7.7.6 kommt immer die Meldung "Kein NAVIGON Live-Modul (0000) Stellen sie sicher..."
Gestartet wird die Software über "MixSer"
in der "MixSerNaviStarter.mscr" von der 7.7.6 steht folgender Code
in der "MixSerNaviStarter.mscr" von der 7.7.5 steht folgender Code
Wie finde ich denn heraus welchen COM Port mein TMC-Empfänger (Pearl-Umbaute) belegt?
Welche Versuche könnte ich denn noch unternehmen damit es klappen könnte??
Hoffe ich habe alle wichtigen Details angegeben.
***lg Pielo***
vielleicht kann mir hier jemand helfen.
Ich habe ein WayteQ X960BT, darauf ist unter Anderen IGO und Navigon. Beim IGO funkt das TCM ganz gut, nur will es einfach nicht beim Navigon klappen.
Ich habe erst die "Navigon 7.7.5 Build 447 für WayteQ X960BT (800x480) mit TMC (!) – SD-ready" von "7132helmut"
danach habe ich noch eine 7.7.6 (SD-Ready) (keine Ahnung wo ich die her hab)
beide starten ohne Probleme aber es geht einfach kein TMC.
Beim 7.7.6 kommt immer die Meldung "Kein NAVIGON Live-Modul (0000) Stellen sie sicher..."
Gestartet wird die Software über "MixSer"
in der "MixSerNaviStarter.mscr" von der 7.7.6 steht folgender Code
Code:
# Enable all script error messages
ErrorLevel ( "warn" )
# -----------------------------------------
# Adjust following variables to your system:
NAVI_SW_WINDOW_TITLE = "Mobile Navigator"
NAVI_SW_PROCESS_NAME = "navigon.exe"
# If Navi SW already running, then bring Navi SW into foreground and exit this script
If ( ProcExists( NAVI_SW_PROCESS_NAME ) = TRUE )
Show( NAVI_SW_WINDOW_TITLE )
Exit
EndIf
# INSTALLDIR must contain: MixSerDrv.dll , mixser_tmc.bin, activatedevice.exe
INSTALLDIR = "\SDMMC\MixSer"
# MIXSER_PORT must be a free COM port number in your system
# Set the TMC port of your navigation software to this port!
MIXSER_PORT = 6
# COM port name and baudrate of the TMC chip
TMC_PORT = "COM4:"
TMC_BAUD = 38400
# Optional: Your favorite FM frequency. MixSerDrv will tune to this frequency when MixSerDrv is activated
# Examples: 10520 means 105.2 Mhz; 9440 means 94.4 MHz, etc.
TMC_START_FREQ = 9140
# Optional: In case MixSerDrv does not work properly, try with following lines set to 1
# e.g. Wistron chips need them to be 1
# Skip sending initialisation commands to TMC chip
TMC_SKIP_INIT = 0
# MixSerDrv should not wait for responses from TMC chip after sending commands
TMC_NOWAIT_FOR_RESPONSE = 0
# Optional: GNS TMC chip only: Scan for next FM station if no TMC data received for x milliseconds
# value of 0 deactivates this function
GNS_TMC_DATA_TIMEOUT = 10000
# Navigation software executable
NAVI_SW_PATH = "\SDMMC\NAVIGON\navigon.exe"
# If DEBUG is 1 then a log file is written into INSTALLDIR every time when MixSerDrv is installed
DEBUG = 0
# -- Install MixSerDrv: Start ----------------------------------------
# MixSerDrv used as a Serial Port Sniffer (deactivates all TMC functionality!)
# GPS_PORT <==> MixSerDrv <==> MIXSER_PORT
# GPS_PORT = "COM2:"
# GPS_BAUD = 9600
# GPS_SNIFF_MODE = 1
# copy MixSerDrv driver DLL to Windows directory, if not already exists
If ( FileExists("\Windows\MixSerDrv.dll") = FALSE )
Copy( INSTALLDIR & "\MixSerDrv.dll", "\Windows\MixSerDrv.dll", TRUE )
EndIf
# write settings for MixSerDrv to registry
RegWriteString( "HKLM", "\Drivers\MixSer", "FriendlyName", "MixSerDrv" )
RegWriteString( "HKLM", "\Drivers\MixSer", "Dll", "MixSerDrv.dll" )
RegWriteString( "HKLM", "\Drivers\MixSer", "Prefix", "COM" )
RegWriteDWord ( "HKLM", "\Drivers\MixSer", "Index", MIXSER_PORT )
RegWriteString( "HKLM", "\Drivers\MixSer", "InstallPath", INSTALLDIR )
RegWriteString( "HKLM", "\Drivers\MixSer", "TmcPortName", TMC_PORT )
RegWriteDWord ( "HKLM", "\Drivers\MixSer", "TmcBaudRate", TMC_BAUD )
RegWriteDWord ( "HKLM", "\Drivers\MixSer", "TmcStartFreq", TMC_START_FREQ )
RegWriteDWord ( "HKLM", "\Drivers\MixSer", "TmcSkipInit", TMC_SKIP_INIT )
RegWriteDWord ( "HKLM", "\Drivers\MixSer", "TmcNoWaitForResponse", TMC_NOWAIT_FOR_RESPONSE )
RegWriteDWord ( "HKLM", "\Drivers\MixSer", "GnsTmcDataTimeout", GNS_TMC_DATA_TIMEOUT )
RegWriteDWord ( "HKLM", "\Drivers\MixSer", "DebugMode", DEBUG )
RegWriteDWord ( "HKLM", "\Drivers\MixSer", "GpsSniffMode", GPS_SNIFF_MODE )
# activate the new COM port
RunWait ( INSTALLDIR & "\activatedevice.exe", "\Drivers\MixSer" )
# -- Install MixSerDrv: End ----------------------------------------
# start the navigation software
Run ( NAVI_SW_PATH )
# wait for Navigon to start up until the STVO disclaimer is shown
# you can lower the timeout if your Navigon boots up faster than 30sec
Sleep( 30000 )
# press the "OK" button of Navigon STVO disclaimer (un-comment the line for your screen resolution)
# 800x480 screen
MouseClick(NAVI_SW_WINDOW_TITLE, 610, 430 )
# 480x272 screen
# MouseClick(NAVI_SW_WINDOW_TITLE, 337, 231 )
# 320x240 screen
# MouseClick(NAVI_SW_WINDOW_TITLE, 235, 212 )
in der "MixSerNaviStarter.mscr" von der 7.7.5 steht folgender Code
Code:
# Enable all script error messages
ErrorLevel ( "warn" )
# -----------------------------------------
# Adjust following variables to your system:
NAVI_SW_WINDOW_TITLE = "Mobile Navigator"
NAVI_SW_PROCESS_NAME = "navigon.exe"
If ( ProcExists( NAVI_SW_PROCESS_NAME ) = TRUE )
Show( NAVI_SW_WINDOW_TITLE )
Exit
EndIf
# INSTALLDIR must contain: MixSerDrv.dll , mixser_tmc.bin, activatedevice.exe
INSTALLDIR = "\SDMMC\MixSer"
# MIXSER_PORT must be a free COM port number in your system
# Set the TMC port of your navigation software to this port!
MIXSER_PORT = 6
# COM port name and baudrate of the TMC chip
TMC_PORT = "COM4:"
TMC_BAUD = 38400
# Optional: Your favorite FM frequency. MixSerDrv will tune to this frequency when MixSerDrv is activated
# Examples: 10520 means 105.2 Mhz; 9440 means 94.4 MHz, etc.
TMC_START_FREQ = 9140
# Optional: In case MixSerDrv does not work properly, try with following lines set to 1
TMC_SKIP_INIT = 0
TMC_NOWAIT_FOR_RESPONSE = 0
# Navigation software executable
NAVI_SW_PATH = "\SDMMC\NAVIGON\navigon.exe"
# If DEBUG is 1 then a log file is written into INSTALLDIR every time when MixSerDrv is activated
DEBUG = 1
# -----------------------------------------
# you should know what you do from here on !!
# MixSerDrv used as a Serial Port Sniffer (deactivates all TMC functionality!)
# GPS_PORT <==> MixSerDrv <==> MIXSER_PORT
# GPS_PORT = "COM2:"
# GPS_BAUD = 9600
# GPS_SNIFF_MODE = 1
# copy MixSerDrv driver DLL to Windows directory, if not already exists
If ( FileExists("\Windows\MixSerDrv.dll") = FALSE )
Copy( INSTALLDIR & "\MixSerDrv.dll", "\Windows\MixSerDrv.dll", TRUE )
EndIf
# write settings for MixSerDrv to registry
RegWriteString( "HKLM", "\Drivers\MixSer", "FriendlyName", "MixSerDrv" )
RegWriteString( "HKLM", "\Drivers\MixSer", "Dll", "MixSerDrv.dll" )
RegWriteString( "HKLM", "\Drivers\MixSer", "Prefix", "COM" )
RegWriteDWord ( "HKLM", "\Drivers\MixSer", "Index", MIXSER_PORT )
RegWriteString( "HKLM", "\Drivers\MixSer", "InstallPath", INSTALLDIR )
RegWriteString( "HKLM", "\Drivers\MixSer", "TmcPortName", TMC_PORT )
RegWriteDWord ( "HKLM", "\Drivers\MixSer", "TmcBaudRate", TMC_BAUD )
RegWriteDWord ( "HKLM", "\Drivers\MixSer", "TmcStartFreq", TMC_START_FREQ )
RegWriteDWord ( "HKLM", "\Drivers\MixSer", "TmcSkipInit", TMC_SKIP_INIT )
RegWriteDWord ( "HKLM", "\Drivers\MixSer", "TmcNoWaitForResponse", TMC_NOWAIT_FOR_RESPONSE )
RegWriteDWord ( "HKLM", "\Drivers\MixSer", "DebugMode", DEBUG )
RegWriteDWord ( "HKLM", "\Drivers\MixSer", "GpsSniffMode", GPS_SNIFF_MODE )
# activate the new COM port
RunWait ( INSTALLDIR & "\activatedevice.exe", "\Drivers\MixSer" )
# start the navigation software
Run ( NAVI_SW_PATH )
# wait for Navigon to start up until the STVO disclaimer is shown
# you can lower the timeout if your Navigon boots up faster than 30sec
Sleep( 30000 )
# press the "OK" button of Navigon STVO disclaimer on a 800x480 screen
MouseClick( 610, 430 )
Wie finde ich denn heraus welchen COM Port mein TMC-Empfänger (Pearl-Umbaute) belegt?
Welche Versuche könnte ich denn noch unternehmen damit es klappen könnte??
Hoffe ich habe alle wichtigen Details angegeben.
***lg Pielo***