can we access RxQuality in iPhone application when user make a call.I want to do it for JailBreak.

i am able to access signal strength though following code

int getSignalStrength()
{
    void *libHandle = dlopen("/System/Library/Frameworks/CoreTelephony.framework/CoreTelephony", RTLD_LAZY);
    int (*CTGetSignalStrength)();
    CTGetSignalStrength = dlsym(libHandle, "CTGetSignalStrength");
    if( CTGetSignalStrength == NULL) 
        NSLog(@"Could not find CTGetSignalStrength");   
    int result = CTGetSignalStrength();
    dlclose(libHandle); 
    return result;
}
link|improve this question

30% accept rate
feedback

2 Answers

Jan, did you already find a mapping between the integer value and the signal level in dBm?

Should be something between -113 and -51 dBm for 2G (GSM/EDGE) and -120..-25 dBm for 3G (UMTS/HSxPA).

link|improve this answer
feedback

for testing signal strength u can use this link signal test

It may work for both jailbroken and non-jail-broken.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.