- I am able to upload the AMR file to SIM800C successfully.
- When I play the uploaded audio file during the call using the below command :
#if CALL_RECORDED_AUDIO
Serial1.print("AT+CMEDPLAY=1,C:\\REC\\");
// "Command Media PLAY" -> to play an audio if it is a recorded audio
#else
Serial1.print("AT+CMEDPLAY=1,C:\\User\\");
// "Command Media PLAY" -> to play an audio if it is a uploaded audio
#endif
Played audio always has noise, from C:\User\
.
- However if I record the audio during call and save it. Play the recorded audio during next call then there is no noise. ( By defining
CALL_RECORDED_AUDIO
in above code snippet)