Hi @EduardoZamora
I think i found the answer.
bleResult_t Gap_SetExtAdvertisingData
(
uint8_t handle,
gapAdvertisingData_t* pAdvertisingData,
gapScanResponseData_t* pScanResponseData
);
Either of the pAdvertisingData or pScanResponseData parameters can be NULL, but not both. For extended advertising (BIT4 = 0) only one must be different than NULL – the scannable advertising bit (BIT1) indicates whether pAdvertisingData (BIT1 = 0) or pScanResponseData (BIT1 = 1) is accepted. The total amount of Advertising Data shall not exceed 1650 bytes.
Application should wait for a gExtAdvertisingDataSetupComplete_c event in the Generic Callback.
So it is either connectable advertising or scannable advertising.
Also from BLE SIG V5.3 Doc i found this->

So What i understand is we can't use both connectable and scannable in BLE Extended advertising.
Could you please confirm this ?
Best Regards,
Nidhin