This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Guidance required: How to varry CC2541 TX frequency & duty cycle in testing mode.

Other Parts Discussed in Thread: CC2541

Hello,

I am trying to use HCI test commands in testing mode to vary TX frequency & duty cycle. This is required for product certification (FCC, CE, IC )as informed by certification lab.

1. How to check if that command is working?

I used HCI transmit commands(HCI_LE_TransmitterTestCmd) but its not discovered in TI BLE app (Multitool & Sensor Tag) .

2. Is there any other method or proper documentation to vary CC2541 TX frequency with maximum duty cycle in Testing mode.

Looking forward for your support.

Thanks in Advance.

  • Hi Vighnesh,

    We've gathered the information needed here:

    http://processors.wiki.ti.com/index.php/How_to_Certify_your_Bluetooth_product

    With example code here:

    http://processors.wiki.ti.com/index.php/FCC_ETSI_Test

    Normally, you don't have to actually vary the duty cycle during testing. It's enough to perform a calculation of allowed emissions based on your application duty cycle.

    Peder

  • Hello Peder,

    Thanks for suggestion.

    We tried code suggested in those links but frequency is not stabilizing according to certification lab.

    Even though we used code for modulated frequency 2440 MHz, frequency is not fixed at  2440 MHz but hopping to 2402 MHz ,2426 MHz and 2480 MHz..

    I have attached code for reference.

    /**************************************************************************************************
      Filename:       keyfobdemo.c
      Revised:        $Date: 2013-05-01 13:58:23 -0700 (Wed, 01 May 2013) $
      Revision:       $Revision: 34101 $
    
      Description:    Key Fob Demo Application.
    
      Copyright 2009 - 2013 Texas Instruments Incorporated. All rights reserved.
    
      IMPORTANT: Your use of this Software is limited to those specific rights
      granted under the terms of a software license agreement between the user
      who downloaded the software, his/her employer (which must be your employer)
      and Texas Instruments Incorporated (the "License").  You may not use this
      Software unless you agree to abide by the terms of the License. The License
      limits your use, and you acknowledge, that the Software may not be modified,
      copied or distributed unless embedded on a Texas Instruments microcontroller
      or used solely and exclusively in conjunction with a Texas Instruments radio
      frequency transceiver, which is integrated into your product.  Other than for
      the foregoing purpose, you may not use, reproduce, copy, prepare derivative
      works of, modify, distribute, perform, display or sell this Software and/or
      its documentation for any purpose.
    
      YOU FURTHER ACKNOWLEDGE AND AGREE THAT THE SOFTWARE AND DOCUMENTATION ARE
      PROVIDED �AS IS� WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED,
      INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY, TITLE,
      NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL
      TEXAS INSTRUMENTS OR ITS LICENSORS BE LIABLE OR OBLIGATED UNDER CONTRACT,
      NEGLIGENCE, STRICT LIABILITY, CONTRIBUTION, BREACH OF WARRANTY, OR OTHER
      LEGAL EQUITABLE THEORY ANY DIRECT OR INDIRECT DAMAGES OR EXPENSES
      INCLUDING BUT NOT LIMITED TO ANY INCIDENTAL, SPECIAL, INDIRECT, PUNITIVE
      OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, COST OF PROCUREMENT
      OF SUBSTITUTE GOODS, TECHNOLOGY, SERVICES, OR ANY CLAIMS BY THIRD PARTIES
      (INCLUDING BUT NOT LIMITED TO ANY DEFENSE THEREOF), OR OTHER SIMILAR COSTS.
    
      Should you have any questions regarding your right to use this Software,
      contact Texas Instruments Incorporated at www.TI.com.
    **************************************************************************************************/
    
    /*********************************************************************
     * INCLUDES
     */
    
    #include "bcomdef.h"
    #include "OSAL.h"
    #include "OSAL_PwrMgr.h"
    
    #include "OnBoard.h"
    #include "hal_adc.h"
    
    #include "gatt.h"
    
    #include "hci.h"
    
    #include "gapgattserver.h"
    #include "gattservapp.h"
    
    #if defined ( PLUS_BROADCASTER )
      #include "peripheralBroadcaster.h"
    #else
      #include "peripheral.h"
    #endif
    
    #include "gapbondmgr.h"
    
    #include "devinfoservice.h"
    #include "proxreporter.h"
    #include "battservice.h"
    
    
    #include "keyfobdemo.h"
    
    #if defined FEATURE_OAD 
     #include "oad.h" 
     #include "oad_target.h" 
    #endif
    
    /*********************************************************************
     * MACROS
     */
    
    /*********************************************************************
     * CONSTANTS
     */
    
    // Delay between power-up and starting advertising (in ms)
    #define STARTDELAY                            500
    
    // How often to check battery voltage (in ms)
    #define BATTERY_CHECK_PERIOD                  10000
    
    #define  BUZZER_PERIOD                        100
    
    #define ADV_PERIOD                             500
    
    //GAP Peripheral Role desired connection parameters
    
    // Use limited discoverable mode to advertise for 30.72s, and then stop, or
    // use general discoverable mode to advertise indefinitely
    //#define DEFAULT_DISCOVERABLE_MODE             GAP_ADTYPE_FLAGS_LIMITED
    #define DEFAULT_DISCOVERABLE_MODE             GAP_ADTYPE_FLAGS_GENERAL
    
    // Minimum connection interval (units of 1.25ms, 80=100ms) if automatic parameter update request is enabled
    #define DEFAULT_DESIRED_MIN_CONN_INTERVAL     80
    
    // Maximum connection interval (units of 1.25ms, 800=1000ms) if automatic parameter update request is enabled
    #define DEFAULT_DESIRED_MAX_CONN_INTERVAL    1000
    
    // Slave latency to use if automatic parameter update request is enabled
    #define DEFAULT_DESIRED_SLAVE_LATENCY         0
    
    // Supervision timeout value (units of 10ms, 1000=10s) if automatic parameter update request is enabled
    #define DEFAULT_DESIRED_CONN_TIMEOUT          1000
    
    // Whether to enable automatic parameter update request when a connection is formed
    #define DEFAULT_ENABLE_UPDATE_REQUEST         TRUE
    
    // Connection Pause Peripheral time value (in seconds)
    #define DEFAULT_CONN_PAUSE_PERIPHERAL         5
    
    // keyfobProximityState values
    #define KEYFOB_PROXSTATE_INITIALIZED          0   // Advertising after initialization or due to terminated link
    #define KEYFOB_PROXSTATE_CONNECTED_IN_RANGE   1   // Connected and "within range" of the master, as defined by
                                                      // proximity profile
    #define KEYFOB_PROXSTATE_PATH_LOSS            2   // Connected and "out of range" of the master, as defined by
                                                      // proximity profile
    #define KEYFOB_PROXSTATE_LINK_LOSS            3   // Disconnected as a result of a supervision timeout
    
    // keyfobAlertState values
    #define ALERT_STATE_OFF                       0
    #define ALERT_STATE_LOW                       1
    #define ALERT_STATE_HIGH                      2
    
    // Company Identifier: Texas Instruments Inc. (13)
    #define TI_COMPANY_ID                         0x000D
    
    #define INVALID_CONNHANDLE                    0xFFFF
    
    #if defined ( PLUS_BROADCASTER )
      #define ADV_IN_CONN_WAIT                    500 // delay 500 ms
    #endif
    
    /*********************************************************************
     * TYPEDEFS
     */
    
    /*********************************************************************
     * GLOBAL VARIABLES
     */
    
    /*********************************************************************
     * EXTERNAL VARIABLES
     */
    
    /*********************************************************************
     * EXTERNAL FUNCTIONS
     */
    
    /*********************************************************************
     * LOCAL VARIABLES
     */
    static uint8 keyfobapp_TaskID;   // Task ID for internal task/event processing
    
    static gaprole_States_t gapProfileState = GAPROLE_INIT;
    
    // Proximity State Variables
    static uint8 keyfobProxLLAlertLevel = PP_ALERT_LEVEL_NO;     // Link Loss Alert
    static uint8 keyfobProxIMAlertLevel = PP_ALERT_LEVEL_NO;     // Link Loss Alert
    static int8  keyfobProxTxPwrLevel = 0;  // Tx Power Level (0dBm default)
    
    // keyfobProximityState is the current state of the device
    static uint8 keyfobProximityState;
    
    static uint8 keyfobAlertState;
    
    // GAP - SCAN RSP data (max size = 31 bytes)
    static uint8 deviceName[] =
    {
      // complete name
      0x0e,   // length of first data structure (11 bytes excluding length byte)
      0x09,   // AD Type = Complete local name
      0x53,   // 'S'
      0x65,   // 'e'
      0x6E,   // 'n'
      0x73,   // 's'
      0x65,   // 'e'
      0x47,   // 'G'
      0x69,   // 'i'
      0x7A,   // 'z'
      0x2D,   // '-'
      0x46,   // 'F'
      0x69,   // 'i'
      0x6E,   // 'n'
      0x64,   // 'd'
    };
    
    // GAP - Advertisement data (max size = 31 bytes, though this is
    // best kept short to conserve power while advertisting)
    static uint8 advertData[] =
    {
      0x02,   // length of first data structure (2 bytes excluding length byte)
      GAP_ADTYPE_FLAGS,   // AD Type = Flags
      DEFAULT_DISCOVERABLE_MODE | GAP_ADTYPE_FLAGS_BREDR_NOT_SUPPORTED,
    
      // service UUID, to notify central devices what services are included
      // in this peripheral
      0x07,   // length of second data structure (7 bytes excluding length byte)
      GAP_ADTYPE_16BIT_MORE,   // list of 16-bit UUID's available, but not complete list
      LO_UINT16( LINK_LOSS_SERVICE_UUID ),        // Link Loss Service (Proximity Profile)
      HI_UINT16( LINK_LOSS_SERVICE_UUID ),
      LO_UINT16( IMMEDIATE_ALERT_SERVICE_UUID ),  // Immediate Alert Service (Proximity / Find Me Profile)
      HI_UINT16( IMMEDIATE_ALERT_SERVICE_UUID ),
      LO_UINT16( TX_PWR_LEVEL_SERVICE_UUID ),     // Tx Power Level Service (Proximity Profile)
      HI_UINT16( TX_PWR_LEVEL_SERVICE_UUID )
    };
    
    // GAP GATT Attributes
    static uint8 attDeviceName[GAP_DEVICE_NAME_LEN] ="SenseGiz-FIND-A";
    static uint32 passkey=0;
    
    /*********************************************************************
     * LOCAL FUNCTIONS
     */
    static void keyfobapp_PerformAlert( void );
    static void keyfobapp_StopAlert( void );
    static void peripheralStateNotificationCB( gaprole_States_t newState );
    static void proximityAttrCB( uint8 attrParamID );
    
    
    /*********************************************************************
     * PROFILE CALLBACKS
     */
    
    // GAP Role Callbacks
    static gapRolesCBs_t keyFob_PeripheralCBs =
    {
      peripheralStateNotificationCB,  // Profile State Change Callbacks
      NULL                // When a valid RSSI is read from controller
    };
    
    
    // GAP Bond Manager Callbacks
    static gapBondCBs_t keyFob_BondMgrCBs =
    {
      NULL,                     // Passcode callback (not used by application)
      NULL                      // Pairing / Bonding state Callback (not used by application)
    };
    
    // Proximity Peripheral Profile Callbacks
    static proxReporterCBs_t keyFob_ProximityCBs =
    {
      proximityAttrCB,              // Whenever the Link Loss Alert attribute changes
    };
    
    
    /*********************************************************************
     * PUBLIC FUNCTIONS
     */ 
    
    /*********************************************************************
     * @fn      KeyFobApp_Init
     *
     * @brief   Initialization function for the Key Fob App Task.
     *          This is called during initialization and should contain
     *          any application specific initialization (ie. hardware
     *          initialization/setup, table initialization, power up
     *          notificaiton ... ).
     *
     * @param   task_id - the ID assigned by OSAL.  This ID should be
     *                    used to send messages and set timers.
     *
     * @return  none
     */
    void KeyFobApp_Init( uint8 task_id )
    {
      
      keyfobapp_TaskID = task_id;
        
      // Setup the GAP
      VOID GAP_SetParamValue( TGAP_CONN_PAUSE_PERIPHERAL, DEFAULT_CONN_PAUSE_PERIPHERAL );
      
      // Setup the GAP Peripheral Role Profile
      {
        // For the CC2540DK-MINI keyfob, device doesn't start advertising until button is pressed
        uint8 initial_advertising_enable = TRUE;
       
        
        // By setting this to zero, the device will go into the waiting state after
        // being discoverable for 30.72 second, and will not being advertising again
        // until the enabler is set back to TRUE
        uint16 gapRole_AdvertOffTime = 0;
      
        uint8 enable_update_request = DEFAULT_ENABLE_UPDATE_REQUEST;
        uint16 desired_min_interval = DEFAULT_DESIRED_MIN_CONN_INTERVAL;
        uint16 desired_max_interval = DEFAULT_DESIRED_MAX_CONN_INTERVAL;
        uint16 desired_slave_latency = DEFAULT_DESIRED_SLAVE_LATENCY;
        uint16 desired_conn_timeout = DEFAULT_DESIRED_CONN_TIMEOUT;
       
        // Set the GAP Role Parameters
        GAPRole_SetParameter( GAPROLE_ADVERT_ENABLED, sizeof( uint8 ), &initial_advertising_enable );
        GAPRole_SetParameter( GAPROLE_ADVERT_OFF_TIME, sizeof( uint16 ), &gapRole_AdvertOffTime );
      
        GAPRole_SetParameter( GAPROLE_SCAN_RSP_DATA, sizeof ( deviceName ), deviceName );
        GAPRole_SetParameter( GAPROLE_ADVERT_DATA, sizeof( advertData ), advertData );
      
        GAPRole_SetParameter( GAPROLE_PARAM_UPDATE_ENABLE, sizeof( uint8 ), &enable_update_request );
        GAPRole_SetParameter( GAPROLE_MIN_CONN_INTERVAL, sizeof( uint16 ), &desired_min_interval );
        GAPRole_SetParameter( GAPROLE_MAX_CONN_INTERVAL, sizeof( uint16 ), &desired_max_interval );
        GAPRole_SetParameter( GAPROLE_SLAVE_LATENCY, sizeof( uint16 ), &desired_slave_latency );
        GAPRole_SetParameter( GAPROLE_TIMEOUT_MULTIPLIER, sizeof( uint16 ), &desired_conn_timeout );
      }
      
      // Set the GAP Attributes
      GGS_SetParameter( GGS_DEVICE_NAME_ATT, GAP_DEVICE_NAME_LEN, attDeviceName );
    
      // Setup the GAP Bond Manager
      {
        passkey =0; // passkey "000000"
        uint8 pairMode =  GAPBOND_PAIRING_MODE_WAIT_FOR_REQ ;//GAPBOND_PAIRING_MODE_INITIATE ;
        uint8 mitm = TRUE;
        uint8 ioCap =GAPBOND_IO_CAP_DISPLAY_ONLY ;
        uint8 bonding = TRUE;
        
        GAPBondMgr_SetParameter( GAPBOND_DEFAULT_PASSCODE, sizeof ( uint32 ), &passkey );
        GAPBondMgr_SetParameter( GAPBOND_PAIRING_MODE, sizeof ( uint8 ), &pairMode );
        GAPBondMgr_SetParameter( GAPBOND_MITM_PROTECTION, sizeof ( uint8 ), &mitm );
        GAPBondMgr_SetParameter( GAPBOND_IO_CAPABILITIES, sizeof ( uint8 ), &ioCap );
        GAPBondMgr_SetParameter( GAPBOND_BONDING_ENABLED, sizeof ( uint8 ), &bonding );
      }
    
      // Initialize GATT attributes
      GGS_AddService( GATT_ALL_SERVICES );         // GAP
      GATTServApp_AddService( GATT_ALL_SERVICES ); // GATT attributes
      DevInfo_AddService();   // Device Information Service
      ProxReporter_AddService( GATT_ALL_SERVICES );  // Proximity Reporter Profile
      Batt_AddService( );     // Battery Service
      #if defined FEATURE_OAD 
     VOID OADTarget_AddService(); // OAD Profile 
    #endif 
    
      keyfobProximityState = KEYFOB_PROXSTATE_INITIALIZED;
    
      // Initialize Tx Power Level characteristic in Proximity Reporter
      {
        int8 initialTxPowerLevel = 0;
        
        ProxReporter_SetParameter( PP_TX_POWER_LEVEL, sizeof ( int8 ), &initialTxPowerLevel );
      }
    
      keyfobAlertState = ALERT_STATE_OFF;
    
      
      // initialize the ADC for battery reads
      HalAdcInit();
      
      
      // Setup a delayed profile startup
      osal_start_timerEx( keyfobapp_TaskID, KFD_START_DEVICE_EVT, STARTDELAY );
    }
    
    /*********************************************************************
     * @fn      KeyFobApp_ProcessEvent
     *
     * @brief   Key Fob Application Task event processor.  This function
     *          is called to process all events for the task.  Events
     *          include timers, messages and any other user defined events.
     *
     * @param   task_id  - The OSAL assigned task ID.
     * @param   events - events to process.  This is a bit map and can
     *                   contain more than one event.
     *
     * @return  none
     */
    uint16 KeyFobApp_ProcessEvent( uint8 task_id, uint16 events )
    {
      if ( events & SYS_EVENT_MSG )
      {
        uint8 *pMsg;
    
        if ( (pMsg = osal_msg_receive( keyfobapp_TaskID )) != NULL )
        {
         
    
          // Release the OSAL message
          VOID osal_msg_deallocate( pMsg );
        }
    
        // return unprocessed events
        return (events ^ SYS_EVENT_MSG);
      }
    
      if ( events & KFD_START_DEVICE_EVT )
      {
        // Start the Device
        VOID GAPRole_StartDevice( &keyFob_PeripheralCBs );
    
        // Start Bond Manager
        VOID GAPBondMgr_Register( &keyFob_BondMgrCBs );
    
        // Start the Proximity Profile
        VOID ProxReporter_RegisterAppCBs( &keyFob_ProximityCBs );
    
        // Set timer for first battery read event
        osal_start_timerEx( keyfobapp_TaskID, KFD_BATTERY_CHECK_EVT, BATTERY_CHECK_PERIOD );    
    
        //Set the proximity attribute values to default
        ProxReporter_SetParameter( PP_LINK_LOSS_ALERT_LEVEL,  sizeof ( uint8 ), &keyfobProxLLAlertLevel );
        ProxReporter_SetParameter( PP_IM_ALERT_LEVEL,  sizeof ( uint8 ), &keyfobProxIMAlertLevel );
        ProxReporter_SetParameter( PP_TX_POWER_LEVEL,  sizeof ( int8 ), &keyfobProxTxPwrLevel );
    
        osal_pwrmgr_device( PWRMGR_ALWAYS_ON ); // To keep the LED on continuously.
        
        return ( events ^ KFD_START_DEVICE_EVT );
      }
    
      
      if ( events & KFD_BATTERY_CHECK_EVT )
      {
        
         HCI_EXT_ModemTestTxCmd(HCI_EXT_TX_MODULATED_CARRIER,19);
         
        return (events ^ KFD_BATTERY_CHECK_EVT);
      }
    
      // Discard unknown events
      return 0;
    }
    
    
    /*********************************************************************
     * @fn      keyfobapp_PerformAlert
     *
     * @brief   Performs an alert
     *
     * @param   none
     *
     * @return  none
     */
    static void keyfobapp_PerformAlert( void )
    {
    
      if ( keyfobProximityState == KEYFOB_PROXSTATE_LINK_LOSS )
      {
       switch( keyfobProxLLAlertLevel )
        {
        case PP_ALERT_LEVEL_LOW:
    
          #if defined ( POWER_SAVING )
            osal_pwrmgr_device( PWRMGR_ALWAYS_ON );
          #endif
    
          keyfobAlertState = ALERT_STATE_LOW;
          break;
    
        case PP_ALERT_LEVEL_HIGH:
    
          #if defined ( POWER_SAVING )
            osal_pwrmgr_device( PWRMGR_ALWAYS_ON );
          #endif
    
          keyfobAlertState = ALERT_STATE_HIGH;
          break;
    
       case PP_ALERT_LEVEL_NO:
            // Fall through
        default:
          keyfobapp_StopAlert();
          break;
        }
      }
      else if ( keyfobProximityState == KEYFOB_PROXSTATE_PATH_LOSS )
      {
        switch( keyfobProxIMAlertLevel )
        {
          
        }
      }
    
    }
    
    /*********************************************************************
     * @fn      keyfobapp_StopAlert
     *
     * @brief   Stops an alert
     *
     * @param   none
     *
     * @return  none
     */
    void keyfobapp_StopAlert( void )
    {
    
      keyfobAlertState = ALERT_STATE_OFF;
    }
    
    /*********************************************************************
     * @fn      peripheralStateNotificationCB
     *
     * @brief   Notification from the profile of a state change.
     *
     * @param   newState - new state
     *
     * @return  none
     */
    static void peripheralStateNotificationCB( gaprole_States_t newState )
    {
      uint16 connHandle = INVALID_CONNHANDLE;
      uint8 valFalse = FALSE;
    
      if ( gapProfileState != newState )
      {
        switch( newState )
        {
        case GAPROLE_STARTED:
          {
            // Set the system ID from the bd addr
            uint8 systemId[DEVINFO_SYSTEM_ID_LEN];
            GAPRole_GetParameter(GAPROLE_BD_ADDR, systemId);
    
            // shift three bytes up
            systemId[7] = systemId[5];
            systemId[6] = systemId[4];
            systemId[5] = systemId[3];
    
            // set middle bytes to zero
            systemId[4] = 0;
            systemId[3] = 0;
    
            DevInfo_SetParameter(DEVINFO_SYSTEM_ID, DEVINFO_SYSTEM_ID_LEN, systemId);
          }
          break;
    
        //if the state changed to connected, initially assume that keyfob is in range
        case GAPROLE_ADVERTISING:
          {
             
          }
          break;
          
        //if the state changed to connected, initially assume that keyfob is in range      
        case GAPROLE_CONNECTED:
          {   
             
            // set the proximity state to either path loss alert or in range depending
            // on the value of keyfobProxIMAlertLevel (which was set by proximity monitor)
            if( keyfobProxIMAlertLevel != PP_ALERT_LEVEL_NO )
            {
              keyfobProximityState = KEYFOB_PROXSTATE_PATH_LOSS;
              // perform alert
              keyfobapp_PerformAlert();
            }
            else // if keyfobProxIMAlertLevel == PP_ALERT_LEVEL_NO
            {
              keyfobProximityState = KEYFOB_PROXSTATE_CONNECTED_IN_RANGE;
              keyfobapp_StopAlert();
            }
    
            GAPRole_GetParameter( GAPROLE_CONNHANDLE, &connHandle );
          }
          break;
    
        case GAPROLE_WAITING:
          {
            // then the link was terminated intentionally by the slave or master,
            // or advertising timed out
            keyfobProximityState = KEYFOB_PROXSTATE_INITIALIZED;
    
            // Turn off immediate alert
            ProxReporter_SetParameter(PP_IM_ALERT_LEVEL, sizeof(valFalse), &valFalse);
            keyfobProxIMAlertLevel = PP_ALERT_LEVEL_NO;
            
            // Stop alert if it was active
            if( keyfobAlertState != ALERT_STATE_OFF )
            {
              keyfobapp_StopAlert();
            }
          }
          break;
    
        case GAPROLE_WAITING_AFTER_TIMEOUT:
          {
            // the link was dropped due to supervision timeout
            keyfobProximityState = KEYFOB_PROXSTATE_LINK_LOSS;
    
            // Turn off immediate alert
            ProxReporter_SetParameter(PP_IM_ALERT_LEVEL, sizeof(valFalse), &valFalse);
            keyfobProxIMAlertLevel = PP_ALERT_LEVEL_NO;
            
            // Perform link loss alert if enabled
            if( keyfobProxLLAlertLevel != PP_ALERT_LEVEL_NO )
            {
              keyfobapp_PerformAlert();
            }
          }
          break;
    
        default:
          // do nothing
          break;
        }
      }
    
      gapProfileState = newState;
    }
    
    /*********************************************************************
     * @fn      proximityAttrCB
     *
     * @brief   Notification from the profile of an atrribute change by
     *          a connected device.
     *
     * @param   attrParamID - Profile's Attribute Parameter ID
     *            PP_LINK_LOSS_ALERT_LEVEL  - The link loss alert level value
     *            PP_IM_ALERT_LEVEL  - The immediate alert level value
     *
     * @return  none
     */
    static void proximityAttrCB( uint8 attrParamID )
    {
      switch( attrParamID )
      {
    
      case PP_LINK_LOSS_ALERT_LEVEL:
        ProxReporter_GetParameter( PP_LINK_LOSS_ALERT_LEVEL, &keyfobProxLLAlertLevel );
        break;
    
      case PP_IM_ALERT_LEVEL:
        {
          ProxReporter_GetParameter( PP_IM_ALERT_LEVEL, &keyfobProxIMAlertLevel );
    
          // if proximity monitor set the immediate alert level to low or high, then
          // the monitor calculated that the path loss to the keyfob (proximity observer)
          // has exceeded the threshold
          if( keyfobProxIMAlertLevel != PP_ALERT_LEVEL_NO )
          {
            keyfobProximityState = KEYFOB_PROXSTATE_PATH_LOSS;
            keyfobapp_PerformAlert();
          }
          else // proximity monitor turned off alert because the path loss is below threshold
          {
            keyfobProximityState = KEYFOB_PROXSTATE_CONNECTED_IN_RANGE;
            keyfobapp_StopAlert();
          }
        }
        break;
    
      default:
        // should not reach here!
        break;
      }
    
    }
    
    
    
    

  • Hi Vighnesh,

    What happens if you remove everything else from the Init() function (via a define perhaps) and directly call the modemtest function? That is, don't start GAP at all. I suspect you may inadvertently have started advertising.

    Best regards,
    Aslak