@@ -565,53 +565,62 @@ extern "C" {
565
565
*/
566
566
int8_t max_tx_power ;
567
567
568
- /**
569
- * RX model configuration
570
- * - bit 0: 1: agc_rssi model improved vs RF blockers 0: Legacy agc_rssi model
571
- * - other bits: reserved ( shall be set to 0)
572
- */
568
+ /**
569
+ * RX model configuration
570
+ * - bit 0: 1: agc_rssi model improved vs RF blockers 0: Legacy agc_rssi model
571
+ * - other bits: reserved ( shall be set to 0)
572
+ */
573
573
uint8_t rx_model_config ;
574
574
575
- /* Maximum number of advertising sets.
576
- * Range: 1 .. 8 with limitation:
577
- * This parameter is linked to max_adv_data_len such as both compliant with allocated Total memory computed with BLE_EXT_ADV_BUFFER_SIZE based
578
- * on Max Extended advertising configuration supported.
579
- * This parameter is considered by the CPU2 when Options has SHCI_C2_BLE_INIT_OPTIONS_EXT_ADV flag set
580
- */
575
+ /** Maximum number of advertising sets.
576
+ * Range: 1 .. 8 with limitation:
577
+ * This parameter is linked to max_adv_data_len such as both compliant with allocated Total memory computed with BLE_EXT_ADV_BUFFER_SIZE based
578
+ * on Max Extended advertising configuration supported.
579
+ * This parameter is considered by the CPU2 when Options has SHCI_C2_BLE_INIT_OPTIONS_EXT_ADV flag set
580
+ */
581
581
uint8_t max_adv_set_nbr ;
582
582
583
- /* Maximum advertising data length (in bytes)
584
- * Range: 31 .. 1650 with limitation:
585
- * This parameter is linked to max_adv_set_nbr such as both compliant with allocated Total memory computed with BLE_EXT_ADV_BUFFER_SIZE based
586
- * on Max Extended advertising configuration supported.
587
- * This parameter is considered by the CPU2 when Options has SHCI_C2_BLE_INIT_OPTIONS_EXT_ADV flag set
588
- */
583
+ /** Maximum advertising data length (in bytes)
584
+ * Range: 31 .. 1650 with limitation:
585
+ * This parameter is linked to max_adv_set_nbr such as both compliant with allocated Total memory computed with BLE_EXT_ADV_BUFFER_SIZE based
586
+ * on Max Extended advertising configuration supported.
587
+ * This parameter is considered by the CPU2 when Options has SHCI_C2_BLE_INIT_OPTIONS_EXT_ADV flag set
588
+ */
589
589
uint16_t max_adv_data_len ;
590
590
591
- /* RF TX Path Compensation Value (16-bit signed integer). Units: 0.1 dB.
592
- * Range: -1280 .. 1280
593
- */
591
+ /** RF TX Path Compensation Value (16-bit signed integer). Units: 0.1 dB.
592
+ * Range: -1280 .. 1280
593
+ */
594
594
int16_t tx_path_compens ;
595
595
596
- /* RF RX Path Compensation Value (16-bit signed integer). Units: 0.1 dB.
597
- * Range: -1280 .. 1280
598
- */
596
+ /** RF RX Path Compensation Value (16-bit signed integer). Units: 0.1 dB.
597
+ * Range: -1280 .. 1280
598
+ */
599
599
int16_t rx_path_compens ;
600
600
601
- /* BLE core specification version (8-bit unsigned integer).
602
- * values as: 11(5.2), 12(5.3), 13(5.4)
603
- */
601
+ /** BLE core specification version (8-bit unsigned integer).
602
+ * values as: 11(5.2), 12(5.3), 13(5.4)
603
+ */
604
604
uint8_t ble_core_version ;
605
605
606
- /**
607
- * Options flags extension
608
- * - bit 0: 1: appearance Writable 0: appearance Read-Only
609
- * - bit 1: 1: Enhanced ATT supported 0: Enhanced ATT not supported
610
- * - other bits: reserved ( shall be set to 0)
611
- */
606
+ /**
607
+ * Options flags extension
608
+ * - bit 0: 1: appearance Writable 0: appearance Read-Only
609
+ * - bit 1: 1: Enhanced ATT supported 0: Enhanced ATT not supported
610
+ * - other bits: reserved ( shall be set to 0)
611
+ */
612
612
uint8_t Options_extension ;
613
613
614
- } SHCI_C2_Ble_Init_Cmd_Param_t ;
614
+ /**
615
+ * MaxAddEattBearers
616
+ *
617
+ * Maximum number of bearers that can be created for Enhanced ATT
618
+ * in addition to the number of links
619
+ * - Range: 0 .. 4
620
+ */
621
+ uint8_t MaxAddEattBearers ;
622
+
623
+ } SHCI_C2_Ble_Init_Cmd_Param_t ;
615
624
616
625
typedef PACKED_STRUCT {
617
626
SHCI_Header_t Header ; /** Does not need to be initialized by the user */
0 commit comments