In OS main, the routine AUDIO_Welcome_Msg(); is called.
This is defined in audio_spe.c, and is:
const u8 welcome_16K_8 [] =
{
#include "welcome_16k_8.h"
};
NODEBUG void AUDIO_Welcome_Msg( void )
{
AUDIO_SetMode( AUDIO_MODE, LG_8_BITS, FRQ_16KHZ, MONO );
AUDIO_Play(( sound_type* )welcome_16K_8, sizeof welcome_16K_8 );
}
And the elecome_16K_8 message is a .h file.
Is there some ultility (similar to BMP to LCD) I can use to convert a sound format into .h format? Obviously the sound would be 8 bit, 16kHz.
Thanks
Andrew
Last edited by cowana (2011-03-08 10:17:29)