 
	
You are here: Forum Home → ANT Developers Forums → ANT in Mobile Phones → Thread
is it possible to get the RSSI values from the ANT+ RSSI status register on the WiLink 6.0 chip that is currently used in Sony Ericsson Android phones?
public void ANT_LibConfig(byte libConfig) throws AntInterfaceException {
        byte[] enableExt = new byte[4];
        enableExt[0] = (byte) 2;
        enableExt[1] = (byte) 0x6e; // Lib Config
        enableExt[2] = (byte) 0; // filler
        enableExt[3] = (byte) libConfig; // 80 Channel ID;
                                            // 40 RSSI;
                                            // 20Timestamp
        antInterface.ANTTxMessage(enableExt); // enable extended format
    } 
blackramlabs.com