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.

how to assign the high duty cycle Directed Advertising on peripheral device?



Hi,

 

Can I know how to assign the high duty cycle Directed Advertising on peripheral device?

 

I tried to find out the related information on the Developer Guide and TI forum, but they are mentioning about High Duty Cycle Scanning on central device.

 

Thanks in advance,

Ji Won

  • You can change the advertising type from default GAP_ADTYPE_ADV_IND to GAP_ADTYPE_ADV_HDC_DIRECT_IND in the gapRole_init(void), which is in peripheral.c

    default :
    gapRole_AdvEventType = GAP_ADTYPE_ADV_IND;

    to
    gapRole_AdvEventType = GAP_ADTYPE_ADV_HDC_DIRECT_IND ;