The only way I know how to do this is to convert the file into a C source file with a single byte/char array containing the contents of the resource file in hex.
Is there a better or easier way to do this?
|
The only way I know how to do this is to convert the file into a C source file with a single byte/char array containing the contents of the resource file in hex. Is there a better or easier way to do this? |
|||||||||||||||
|
|
Here's a nice trick I use with a gcc-arm cross compiler; including a file through an assembly language file. In this example it's the contents of the file pubkey.s
corresponding pubkey.h
Now the C sources can include |
|||
|
|
|
The way you've described is the best/easiest/most portable. Just write a quick tool (or find an existing one) to generate the C files for you. And make sure you make correct use of the |
|||
|
|