RxQuality in iPhone

1.3k Views Asked by At

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;
}
2

There are 2 best solutions below

0
On

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).

0
On

for testing signal strength u can use this link signal test

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