Hello,
I want to use the voice recorder but when I set AUDIO_RECORD and after AUDIO_ PLAY, it doesn't work, and I initialize the AUDIO_SetMode .
This is my code:
AUDIO_SetMode ( VOICE_CIRCULAR_MODE, LG_16_BITS, FRQ_16KHZ, MONO );
AUDIO_Record ( AudioBuffer, sizeof(AudioBuffer)/sizeof(s16) );
DRAW_Clear();
DRAW_DisplayString ( 8, 80, " ** RECORDING **", 17 );
if ( ( BufferStatus & LOW_EMPTY ) && ( BufferStatus & HIGH_EMPTY ) )
{
AUDIO_Playback_Stop();
AUDIO_Play(AudioBuffer,sizeof(AudioBuffer)/sizeof(s16));}
So If you can help me, that's be great !
Thank you !
Flod