Dennis
If you don't find a special tool to do it you can use uTaskerFileCreate from http://www.utasker.com/forum/index.php?topic=1445.0
Assuming you have a wave file (music.wav) that you want to convert to an array
uTaskerFileCreate music.wav music.h music
This will create a file called music.h, which you can link into a project, with an array - giving something like
unsigned char music[] = {
0xXX, 0xXX, 0xXX,...
....
};
By using
uTaskerFileCreate -fb my_music.txt music.h
you can also have a text file "my_music.txt" with a list of multiple input files that should be converted into arrays in the output header.
There are more details about using this on page 25 of http://www.utasker.com/docs/uTasker/uTaskerLCD.PDF since it is useful also for adding embedded images or web pages (with options to strip out white space for example) or embedding into an internal file system.
Regards
Mark
Kinetis for Professionals: http://www.utasker.com/kinetis.html