hi,
does anyone know of a decent XML parser to run on an 8052?
thanx guys
No, but isn't XML a bit verbose for an 8051?
You might want to look at:
http://expat.sourceforge.net/
It is a stream-oriented XML parser library written in C.
Reluctantly, I had to port it to a Dallas 80C400.
Be warned:
You will need plenty of RAM to parse anything other than small documents.
If you want decent parsing speed, you will need a high speed core.
Be prepared to apply quite a few changes to the code. It was obviously written for platforms more suited to this type of task.
Given David's warnings, and my earlier question, are you sure that XML is the right tool for the job if you have to use an 8051, or that the 8051 is the right tool for the job if you have to use XML?
thanks for the responses guys.
ill think about it.