I created OpenOCD-GUI project in sourceforge.net

The OpenOCD-GUI project aims to reduce the needs and save the time for people who use OpenOCD for his/her embedded project.

We need help from OpenOCD users. please visit our page below.

Thank you.

http://openocd-gui.sourceforge.net/

TCL/TK or PYTHON ?

WHY ?

Regards,

Laurent

http://www.amontec.com

Why Tcl/Tk? Because I have no experience in Windows or GUI programming, I have to use a easy-to-learn, totally free and cross-platform language.

If I write a Tcl script, I can use a tool called freewrap to make a single windows exe file from it. I can even make this windows exe file under linux.

I also have the further plan to write a GUI, which can talk with OpenOCD’s TCP(telnet) port or tcl port.

If you have the better idea, please let me know. Thank you.

Hi all,

I have an idea,

In VC++ (visual studio 6), maybe we can execute the openOCD commands by using system() function.

For example:

#include

int main (void)

{

char *cmd = “ls -al”;

system(cmd);

return 0;

}

I’m not sure, is this ok ?

Best regards.