Problem after mbed lib update

27 Jan 2011

I'm running the HTTP Server while receiving data from the serial line. The serial data is written on interrupt to a sd-card. The web page data is on the local file system, because i'm working on the web page and it is faster to change. After updating the mbed lib the system get problems. It freeze by accesing the web page. Is it possible to switch back to a old mbed lib to check ?

Peter

27 Jan 2011

Hi Peter,

Sure. If you delete the mbed library (v27) from your program, then right click on the program and select import library, and use:

http://mbed.org/projects/libraries/svn/mbed/trunk@26

You'll pull in the library v26.

Simon

27 Jan 2011

Yes. 1) delete the new library 2) import a library using URL http://mbed.org/projects/libraries/svn/mbed/trunk@26 (the last number is the revision).

28 Jan 2011

Hello,

the mbed lib is ok.

I'm using the RPCFunction to transfer the data to my web page. Because of the delay by calling a rpc function for every variable i switch to a json list to get all . Inside the RPCFunction.h the length of the parameter strings is 64 by default. My json list get longer...

Peter