Home Forum Support Networking Issues Reply To: Networking Issues

#1101
uRADMonitor
Keymaster

hi Vinz!

Great to hear that. Let’s discuss the proper formatting and the JSON issue here if you wish.

You’ve indicated the minimum content for a valid HTML5 format:

<!doctype html><html lang=en>
<head><meta charset=utf-8><title>blah</title></head>
<body><p>I'm the content</p></body></html>

I agree, but we have a big problem: memory (RAM).
uRADMonitor model A uses the mega328p, which has a total of 2KB RAM. There is also 1KB of EEPROM (where HTML static text like the one you’ve indicated could be stored).

BUT,
To send data over Ethernet we need to maintain a buffer. This is already 400bytes long (consuming almost a quarter of all available memory). Adding the doctype, the head, any metas, the title, body or any other formatting would consume precious memory, a total of 125Bytes that we don’t have (hashing, RSA, etc will eat any free memory, and we need those to secure comm links)
So the best bet might be to go with absolute minimum, letting the browsers go for default.

What do you think?

Regarding the JSON:

Þ¿ýòü|ó¿s¿ ßó;÷ ö }‘° ß¿V{ï{ŽÿÝõ«þ‰~Ë~‘í Gó$c­Ÿ½—Ýÿ ;úÝ —ß ne¿ û ß+ÖÓÿžóÄf­Ûã^û çùú± ýÀ"type":"1","detector":"SBM-20","cpm":18,"temperature":0.31,"uptime": 2463}}

What browser did you use? Do you see it in all browsers you have at hand?
(I tried in two and didn’t see this issue, so we need to see where this is coming from).

Also with your spoofed DNS, I’m curious what do you see under Server IP in the embedded web-page?

  • This reply was modified 11 years, 5 months ago by uRADMonitor. Reason: html issues
  • This reply was modified 11 years, 5 months ago by uRADMonitor.
  • This reply was modified 11 years, 5 months ago by uRADMonitor.
  • This reply was modified 11 years, 5 months ago by uRADMonitor.
  • This reply was modified 11 years, 5 months ago by uRADMonitor.
  • This reply was modified 11 years, 5 months ago by uRADMonitor. Reason: html and json formatting issues