Hi all,
I have a text file and need to include it as a string in the firmware.
For example:
char textFile[] = "#include "file.txt"";
Where file.txt contains:
abc
The result I want to get is:
char textFile[] = "abc";
You guys know any tricks?
Thanks,
Anh
Thanks. Looks like i do need to write a utility to convert it.