Hi All,
I'm having a problem trying to run "eZ430-Chronos CC 1_1.tcl" (located in GUI sources folder) with the suggested tcl for windows application. It says it cant find the dll file, which is definitely in the same directory. The section of code from the tcl file that generates the error message is shown below and can be found near the beginning of the file. If I prevent the message coming through, the Command Center application loads but cant connect to the USB dongle... which I suppose is expected because the dll file handles the wireless communication.
Any help appreciated!
Colin.
# Load TCL packages and C library --------------------------------------------------------
package require Tk
package require Ttk
set exit_prog 0
catch { load [file join [pwd] "eZ430_Chronos_CC.dll"] } result
if { [string first "couldn't" $result] != -1 } {
tk_dialog .dialog1 "DLL not found" {Press OK to close application.} info 0 OK
set exit_prog 1
}