LPC1549 or similar XML Parser

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

LPC1549 or similar XML Parser

1,014 次查看
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by riscy00 on Sun Oct 11 21:56:21 MST 2015
Hi

I'm looking for XML Parser to read simple XML structure (mostly element). It derived from LIST<> with serialization in .net frameworks.

It may come from SDCard or EEPROM.

I would like to read and transfer into pre-configured array.

Can anybody suggest solution?

Has anyone done this before?, was is worth implementing XML parser or stick to XML to custom CVS style prior to SDCard or EEPROM. 

R.
0 项奖励
回复
2 回复数

979 次查看
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by Superfred on Mon Oct 12 08:05:05 MST 2015
I would write my own parser, maybe using strstr function.
0 项奖励
回复

979 次查看
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by vtw.433e on Mon Oct 12 02:47:00 MST 2015
There are several open source XML parsers: Expat and libxml being the most common. However, they are designed to run under an OS (not embedded) and so tend to use a lot of memory (code size and dynamic memory), and of course will make extensive use of C runtime.

This thread may provide some further information:
http://stackoverflow.com/questions/1131701/c-xml-library-for-embedded-systems
0 项奖励
回复