I have gotten a program written and tested on the RCM5700 (w/ Development boards) and was ready to deploy it but it won’t run without DC running and connected to it.
I HAVE “Compile to Flash” enabled in the project options menu. Is there a jumper or something that I have to put on the board to get the Flash write to take?
I am also powering the board with an external supply so it’s not removing power when I remove the USB cable.
The RCM5700 dev kit comes with the jumpers in the ‘program’ mode setting - your program will not start without DC there to bring it up.
What you have to do is remove the link from JP1 Pins 1 & 2 in order to enable run mode.
From the documentation:
"Pins 1–2 on header JP1 on the Interface Board must be jumpered to download and debug applications and sample programs with Dynamic C running. Pins 1–2 should be left unjumpered to run an program already loaded in flash memory. "
hello ia m also working in RCM 5700 module
i need to use HTTP server features of RCM 5700
this is the sample program given TCP/IP tutorial…i hav also made necessary network configurations. #define TCPCONFIG 1 #define _PRIMARY_STATIC_IP “192.168.1.9” #define _PRIMARY_NETMASK “255.255.255.0” #define MY_GATEWAY “192.168.1.1” #define MY_NAMESERVER “192.168.1.1.” #use “dcrtcp.lib” #use “http.lib” #ximport “hellowww.html” hellowww_html
SSPEC_MIMETABLE_START
SSPEC_MIME(“.html”, “text/html”)
SSPEC_MIMETABLE_END
SSPEC_RESOURCETABLE_START
SSPEC_RESOURCE_XMEMFILE(“/hellowww.html”, hellowww_html)
SSPEC_RESOURCETABLE_END
void main()
{
sock_init();
http_init();
for (;
http_handler();
}
192.168.1.9 is my ip address.
so anyone can help me how to display the output thro browser…what r the changes i hav to do??is there any jumper settings i need to do???please help me ASAP…
thanks in advance.