The easyweb example updates the web browser with values from the ADC about every several seconds or so. Is there a way to speed up the updates by tweaking the code? I'm not sure what triggers the updates, if it is a timer interrupt or just a timing loop, something else. Can someone point me in the right direction to help me speed things up?
You mean this: http://www.keil.com/download/docs/295.asp ?
That's a server, so it doesn't update the browser at all!
The Browser is the client - so it requests the updates...
www.jmarshall.com/.../
Except that the server can inform the web browser to auto-reload the page after a specific time. And that can happen in a number of ways.
It can happen with javascript on the page, using a timer to control next reload.
It can happen with a meta-tag in the header of the html page, like:
<meta http-equiv="refresh" content="5" >
Thanks folks, that was it! The html page had the line <meta http-equiv="refresh" content="5">, which I assume means refresh every 5 sec. so I changed it to a 1 and it now updates every second. thanks, that's what I needed.