I'm new at hardware programming: I work with the pic18F4550 with the C compiler from microchip version 8.63. My question is: has someone example code to write a .wav file (binary data) to the flash memory of the pic18F4550?

link|improve this question

17% accept rate
At runtime over some interface, or at build time? – Judge Maygarden May 26 '11 at 20:52
at build time I think. What's the difference? – projecten1 May 26 '11 at 20:55
OK, that's what I thought. See my answer below. – Judge Maygarden May 26 '11 at 20:55
feedback

1 Answer

Use a bin2c program to convert the WAV file to a C source file with the data contained in a const char array. Then compile and link this file with your source code. Your linker should place const variables in flash memory on the PIC.

link|improve this answer
OK, can I put this array, as a global variable in my own C program on my pic18F4550? – projecten1 May 26 '11 at 21:42
@projecten1 Yes. – Judge Maygarden May 27 '11 at 3:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.