Hello, everyone.
I have some sounds in my app. The thing is that when FM Radio is turned on and a sound (which has SOUND_TYPE_RINGTONE) is played with wav_player_start, the FM Radio turns off. I decided not to play sound at all if radio is turned on so radio won't be stopped by system.
I've tried to to track radio state with code below, but it actually creates another object "radio" which has state "READY".
radio_h radio; radio_state_e state; radio_create(&radio); radio_get_state(radio, &state); return state;
Could anyone help me to track system radio's state if it's possible?
Thanks.