-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrf_ble_cmd.h
2396 lines (2257 loc) · 179 KB
/
rf_ble_cmd.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/******************************************************************************
* Filename: rf_ble_cmd.h
* Revised: 2017-11-10 10:42:47 +0100 (Fri, 10 Nov 2017)
* Revision: 18052
*
* Description: CC2640R2F API for Bluetooth Low Energy commands
*
* Copyright (c) 2015 - 2017, Texas Instruments Incorporated
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1) Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2) Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3) Neither the name of the ORGANIZATION nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
******************************************************************************/
#ifndef __BLE_CMD_H
#define __BLE_CMD_H
#ifndef __RFC_STRUCT
#define __RFC_STRUCT
#endif
#ifndef __RFC_STRUCT_ATTR
#if defined(__GNUC__)
#define __RFC_STRUCT_ATTR __attribute__ ((aligned (4)))
#elif defined(__TI_ARM__)
#define __RFC_STRUCT_ATTR __attribute__ ((__packed__,aligned (4)))
#else
#define __RFC_STRUCT_ATTR
#endif
#endif
//! \addtogroup rfc
//! @{
//! \addtogroup ble_cmd
//! @{
#include <stdint.h>
#include "rf_mailbox.h"
#include "rf_common_cmd.h"
typedef struct __RFC_STRUCT rfc_bleRadioOp_s rfc_bleRadioOp_t;
typedef struct __RFC_STRUCT rfc_ble5RadioOp_s rfc_ble5RadioOp_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE_SLAVE_s rfc_CMD_BLE_SLAVE_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE_MASTER_s rfc_CMD_BLE_MASTER_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE_ADV_s rfc_CMD_BLE_ADV_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE_ADV_DIR_s rfc_CMD_BLE_ADV_DIR_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE_ADV_NC_s rfc_CMD_BLE_ADV_NC_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE_ADV_SCAN_s rfc_CMD_BLE_ADV_SCAN_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE_SCANNER_s rfc_CMD_BLE_SCANNER_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE_INITIATOR_s rfc_CMD_BLE_INITIATOR_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE_GENERIC_RX_s rfc_CMD_BLE_GENERIC_RX_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE_TX_TEST_s rfc_CMD_BLE_TX_TEST_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE_ADV_PAYLOAD_s rfc_CMD_BLE_ADV_PAYLOAD_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE5_RADIO_SETUP_s rfc_CMD_BLE5_RADIO_SETUP_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE5_SLAVE_s rfc_CMD_BLE5_SLAVE_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE5_MASTER_s rfc_CMD_BLE5_MASTER_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE5_ADV_EXT_s rfc_CMD_BLE5_ADV_EXT_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE5_ADV_AUX_s rfc_CMD_BLE5_ADV_AUX_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE5_SCANNER_s rfc_CMD_BLE5_SCANNER_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE5_INITIATOR_s rfc_CMD_BLE5_INITIATOR_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE5_GENERIC_RX_s rfc_CMD_BLE5_GENERIC_RX_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE5_TX_TEST_s rfc_CMD_BLE5_TX_TEST_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE5_ADV_s rfc_CMD_BLE5_ADV_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE5_ADV_DIR_s rfc_CMD_BLE5_ADV_DIR_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE5_ADV_NC_s rfc_CMD_BLE5_ADV_NC_t;
typedef struct __RFC_STRUCT rfc_CMD_BLE5_ADV_SCAN_s rfc_CMD_BLE5_ADV_SCAN_t;
typedef struct __RFC_STRUCT rfc_bleMasterSlavePar_s rfc_bleMasterSlavePar_t;
typedef struct __RFC_STRUCT rfc_bleSlavePar_s rfc_bleSlavePar_t;
typedef struct __RFC_STRUCT rfc_bleMasterPar_s rfc_bleMasterPar_t;
typedef struct __RFC_STRUCT rfc_bleAdvPar_s rfc_bleAdvPar_t;
typedef struct __RFC_STRUCT rfc_bleScannerPar_s rfc_bleScannerPar_t;
typedef struct __RFC_STRUCT rfc_bleInitiatorPar_s rfc_bleInitiatorPar_t;
typedef struct __RFC_STRUCT rfc_bleGenericRxPar_s rfc_bleGenericRxPar_t;
typedef struct __RFC_STRUCT rfc_bleTxTestPar_s rfc_bleTxTestPar_t;
typedef struct __RFC_STRUCT rfc_ble5SlavePar_s rfc_ble5SlavePar_t;
typedef struct __RFC_STRUCT rfc_ble5MasterPar_s rfc_ble5MasterPar_t;
typedef struct __RFC_STRUCT rfc_ble5AdvExtPar_s rfc_ble5AdvExtPar_t;
typedef struct __RFC_STRUCT rfc_ble5AdvAuxPar_s rfc_ble5AdvAuxPar_t;
typedef struct __RFC_STRUCT rfc_ble5AuxChRes_s rfc_ble5AuxChRes_t;
typedef struct __RFC_STRUCT rfc_ble5ScannerPar_s rfc_ble5ScannerPar_t;
typedef struct __RFC_STRUCT rfc_ble5InitiatorPar_s rfc_ble5InitiatorPar_t;
typedef struct __RFC_STRUCT rfc_bleMasterSlaveOutput_s rfc_bleMasterSlaveOutput_t;
typedef struct __RFC_STRUCT rfc_bleAdvOutput_s rfc_bleAdvOutput_t;
typedef struct __RFC_STRUCT rfc_bleScannerOutput_s rfc_bleScannerOutput_t;
typedef struct __RFC_STRUCT rfc_bleInitiatorOutput_s rfc_bleInitiatorOutput_t;
typedef struct __RFC_STRUCT rfc_ble5ScanInitOutput_s rfc_ble5ScanInitOutput_t;
typedef struct __RFC_STRUCT rfc_bleGenericRxOutput_s rfc_bleGenericRxOutput_t;
typedef struct __RFC_STRUCT rfc_bleTxTestOutput_s rfc_bleTxTestOutput_t;
typedef struct __RFC_STRUCT rfc_ble5ExtAdvEntry_s rfc_ble5ExtAdvEntry_t;
typedef struct __RFC_STRUCT rfc_bleWhiteListEntry_s rfc_bleWhiteListEntry_t;
typedef struct __RFC_STRUCT rfc_ble5AdiEntry_s rfc_ble5AdiEntry_t;
typedef struct __RFC_STRUCT rfc_bleRxStatus_s rfc_bleRxStatus_t;
typedef struct __RFC_STRUCT rfc_ble5RxStatus_s rfc_ble5RxStatus_t;
//! \addtogroup bleRadioOp
//! @{
struct __RFC_STRUCT rfc_bleRadioOp_s {
uint16_t commandNo; //!< The command ID number
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
uint8_t channel; //!< \brief Channel to use<br>
//!< 0--39: BLE advertising/data channel index<br>
//!< 60--207: Custom frequency; (2300 + <code>channel</code>) MHz<br>
//!< 255: Use existing frequency<br>
//!< Others: <i>Reserved</i>
struct {
uint8_t init:7; //!< \brief If <code>bOverride</code> = 1 or custom frequency is used:<br>
//!< 0: Do not use whitening<br>
//!< Other value: Initialization for 7-bit LFSR whitener
uint8_t bOverride:1; //!< \brief 0: Use default whitening for BLE advertising/data channels<br>
//!< 1: Override whitening initialization with value of init
} whitening;
uint8_t* pParams; //!< Pointer to command specific parameter structure
uint8_t* pOutput; //!< Pointer to command specific output structure
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup ble5RadioOp
//! @{
struct __RFC_STRUCT rfc_ble5RadioOp_s {
uint16_t commandNo; //!< The command ID number
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
uint8_t channel; //!< \brief Channel to use<br>
//!< 0--39: BLE advertising/data channel index<br>
//!< 60--207: Custom frequency; (2300 + <code>channel</code>) MHz<br>
//!< 255: Use existing frequency<br>
//!< Others: <i>Reserved</i>
struct {
uint8_t init:7; //!< \brief If <code>bOverride</code> = 1 or custom frequency is used:<br>
//!< 0: Do not use whitening<br>
//!< Other value: Initialization for 7-bit LFSR whitener
uint8_t bOverride:1; //!< \brief 0: Use default whitening for BLE advertising/data channels<br>
//!< 1: Override whitening initialization with value of init
} whitening;
struct {
uint8_t mainMode:2; //!< \brief PHY to use:<br>
//!< 0: 1 Mbps<br>
//!< 1: 2 Mbps<br>
//!< 2: Coded<br>
//!< 3: <i>Reserved</i>
uint8_t coding:6; //!< \brief Coding to use for TX if coded PHY is selected.
//!< See the Technical Reference Manual for details.
} phyMode;
uint8_t rangeDelay; //!< Number of RAT ticks to add to the listening time after T_IFS
uint16_t txPower; //!< \brief Transmit power to use (overrides the one given in radio setup).
//!< 0x0000: Use default TX power.
uint8_t* pParams; //!< Pointer to command specific parameter structure
uint8_t* pOutput; //!< Pointer to command specific output structure
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup CMD_BLE_SLAVE
//! @{
#define CMD_BLE_SLAVE 0x1801
//! BLE Slave Command
struct __RFC_STRUCT rfc_CMD_BLE_SLAVE_s {
uint16_t commandNo; //!< The command ID number 0x1801
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
uint8_t channel; //!< \brief Channel to use<br>
//!< 0--39: BLE advertising/data channel index<br>
//!< 60--207: Custom frequency; (2300 + <code>channel</code>) MHz<br>
//!< 255: Use existing frequency<br>
//!< Others: <i>Reserved</i>
struct {
uint8_t init:7; //!< \brief If <code>bOverride</code> = 1 or custom frequency is used:<br>
//!< 0: Do not use whitening<br>
//!< Other value: Initialization for 7-bit LFSR whitener
uint8_t bOverride:1; //!< \brief 0: Use default whitening for BLE advertising/data channels<br>
//!< 1: Override whitening initialization with value of init
} whitening;
rfc_bleSlavePar_t *pParams; //!< Pointer to command specific parameter structure
rfc_bleMasterSlaveOutput_t *pOutput; //!< Pointer to command specific output structure
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup CMD_BLE_MASTER
//! @{
#define CMD_BLE_MASTER 0x1802
//! BLE Master Command
struct __RFC_STRUCT rfc_CMD_BLE_MASTER_s {
uint16_t commandNo; //!< The command ID number 0x1802
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
uint8_t channel; //!< \brief Channel to use<br>
//!< 0--39: BLE advertising/data channel index<br>
//!< 60--207: Custom frequency; (2300 + <code>channel</code>) MHz<br>
//!< 255: Use existing frequency<br>
//!< Others: <i>Reserved</i>
struct {
uint8_t init:7; //!< \brief If <code>bOverride</code> = 1 or custom frequency is used:<br>
//!< 0: Do not use whitening<br>
//!< Other value: Initialization for 7-bit LFSR whitener
uint8_t bOverride:1; //!< \brief 0: Use default whitening for BLE advertising/data channels<br>
//!< 1: Override whitening initialization with value of init
} whitening;
rfc_bleMasterPar_t *pParams; //!< Pointer to command specific parameter structure
rfc_bleMasterSlaveOutput_t *pOutput; //!< Pointer to command specific output structure
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup CMD_BLE_ADV
//! @{
#define CMD_BLE_ADV 0x1803
//! BLE Connectable Undirected Advertiser Command
struct __RFC_STRUCT rfc_CMD_BLE_ADV_s {
uint16_t commandNo; //!< The command ID number 0x1803
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
uint8_t channel; //!< \brief Channel to use<br>
//!< 0--39: BLE advertising/data channel index<br>
//!< 60--207: Custom frequency; (2300 + <code>channel</code>) MHz<br>
//!< 255: Use existing frequency<br>
//!< Others: <i>Reserved</i>
struct {
uint8_t init:7; //!< \brief If <code>bOverride</code> = 1 or custom frequency is used:<br>
//!< 0: Do not use whitening<br>
//!< Other value: Initialization for 7-bit LFSR whitener
uint8_t bOverride:1; //!< \brief 0: Use default whitening for BLE advertising/data channels<br>
//!< 1: Override whitening initialization with value of init
} whitening;
rfc_bleAdvPar_t *pParams; //!< Pointer to command specific parameter structure
rfc_bleAdvOutput_t *pOutput; //!< Pointer to command specific output structure
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup CMD_BLE_ADV_DIR
//! @{
#define CMD_BLE_ADV_DIR 0x1804
//! BLE Connectable Directed Advertiser Command
struct __RFC_STRUCT rfc_CMD_BLE_ADV_DIR_s {
uint16_t commandNo; //!< The command ID number 0x1804
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
uint8_t channel; //!< \brief Channel to use<br>
//!< 0--39: BLE advertising/data channel index<br>
//!< 60--207: Custom frequency; (2300 + <code>channel</code>) MHz<br>
//!< 255: Use existing frequency<br>
//!< Others: <i>Reserved</i>
struct {
uint8_t init:7; //!< \brief If <code>bOverride</code> = 1 or custom frequency is used:<br>
//!< 0: Do not use whitening<br>
//!< Other value: Initialization for 7-bit LFSR whitener
uint8_t bOverride:1; //!< \brief 0: Use default whitening for BLE advertising/data channels<br>
//!< 1: Override whitening initialization with value of init
} whitening;
rfc_bleAdvPar_t *pParams; //!< Pointer to command specific parameter structure
rfc_bleAdvOutput_t *pOutput; //!< Pointer to command specific output structure
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup CMD_BLE_ADV_NC
//! @{
#define CMD_BLE_ADV_NC 0x1805
//! BLE Non-Connectable Advertiser Command
struct __RFC_STRUCT rfc_CMD_BLE_ADV_NC_s {
uint16_t commandNo; //!< The command ID number 0x1805
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
uint8_t channel; //!< \brief Channel to use<br>
//!< 0--39: BLE advertising/data channel index<br>
//!< 60--207: Custom frequency; (2300 + <code>channel</code>) MHz<br>
//!< 255: Use existing frequency<br>
//!< Others: <i>Reserved</i>
struct {
uint8_t init:7; //!< \brief If <code>bOverride</code> = 1 or custom frequency is used:<br>
//!< 0: Do not use whitening<br>
//!< Other value: Initialization for 7-bit LFSR whitener
uint8_t bOverride:1; //!< \brief 0: Use default whitening for BLE advertising/data channels<br>
//!< 1: Override whitening initialization with value of init
} whitening;
rfc_bleAdvPar_t *pParams; //!< Pointer to command specific parameter structure
rfc_bleAdvOutput_t *pOutput; //!< Pointer to command specific output structure
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup CMD_BLE_ADV_SCAN
//! @{
#define CMD_BLE_ADV_SCAN 0x1806
//! BLE Scannable Undirected Advertiser Command
struct __RFC_STRUCT rfc_CMD_BLE_ADV_SCAN_s {
uint16_t commandNo; //!< The command ID number 0x1806
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
uint8_t channel; //!< \brief Channel to use<br>
//!< 0--39: BLE advertising/data channel index<br>
//!< 60--207: Custom frequency; (2300 + <code>channel</code>) MHz<br>
//!< 255: Use existing frequency<br>
//!< Others: <i>Reserved</i>
struct {
uint8_t init:7; //!< \brief If <code>bOverride</code> = 1 or custom frequency is used:<br>
//!< 0: Do not use whitening<br>
//!< Other value: Initialization for 7-bit LFSR whitener
uint8_t bOverride:1; //!< \brief 0: Use default whitening for BLE advertising/data channels<br>
//!< 1: Override whitening initialization with value of init
} whitening;
rfc_bleAdvPar_t *pParams; //!< Pointer to command specific parameter structure
rfc_bleAdvOutput_t *pOutput; //!< Pointer to command specific output structure
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup CMD_BLE_SCANNER
//! @{
#define CMD_BLE_SCANNER 0x1807
//! BLE Scanner Command
struct __RFC_STRUCT rfc_CMD_BLE_SCANNER_s {
uint16_t commandNo; //!< The command ID number 0x1807
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
uint8_t channel; //!< \brief Channel to use<br>
//!< 0--39: BLE advertising/data channel index<br>
//!< 60--207: Custom frequency; (2300 + <code>channel</code>) MHz<br>
//!< 255: Use existing frequency<br>
//!< Others: <i>Reserved</i>
struct {
uint8_t init:7; //!< \brief If <code>bOverride</code> = 1 or custom frequency is used:<br>
//!< 0: Do not use whitening<br>
//!< Other value: Initialization for 7-bit LFSR whitener
uint8_t bOverride:1; //!< \brief 0: Use default whitening for BLE advertising/data channels<br>
//!< 1: Override whitening initialization with value of init
} whitening;
rfc_bleScannerPar_t *pParams; //!< Pointer to command specific parameter structure
rfc_bleScannerOutput_t *pOutput; //!< Pointer to command specific output structure
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup CMD_BLE_INITIATOR
//! @{
#define CMD_BLE_INITIATOR 0x1808
//! BLE Initiator Command
struct __RFC_STRUCT rfc_CMD_BLE_INITIATOR_s {
uint16_t commandNo; //!< The command ID number 0x1808
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
uint8_t channel; //!< \brief Channel to use<br>
//!< 0--39: BLE advertising/data channel index<br>
//!< 60--207: Custom frequency; (2300 + <code>channel</code>) MHz<br>
//!< 255: Use existing frequency<br>
//!< Others: <i>Reserved</i>
struct {
uint8_t init:7; //!< \brief If <code>bOverride</code> = 1 or custom frequency is used:<br>
//!< 0: Do not use whitening<br>
//!< Other value: Initialization for 7-bit LFSR whitener
uint8_t bOverride:1; //!< \brief 0: Use default whitening for BLE advertising/data channels<br>
//!< 1: Override whitening initialization with value of init
} whitening;
rfc_bleInitiatorPar_t *pParams; //!< Pointer to command specific parameter structure
rfc_bleInitiatorOutput_t *pOutput; //!< Pointer to command specific output structure
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup CMD_BLE_GENERIC_RX
//! @{
#define CMD_BLE_GENERIC_RX 0x1809
//! BLE Generic Receiver Command
struct __RFC_STRUCT rfc_CMD_BLE_GENERIC_RX_s {
uint16_t commandNo; //!< The command ID number 0x1809
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
uint8_t channel; //!< \brief Channel to use<br>
//!< 0--39: BLE advertising/data channel index<br>
//!< 60--207: Custom frequency; (2300 + <code>channel</code>) MHz<br>
//!< 255: Use existing frequency<br>
//!< Others: <i>Reserved</i>
struct {
uint8_t init:7; //!< \brief If <code>bOverride</code> = 1 or custom frequency is used:<br>
//!< 0: Do not use whitening<br>
//!< Other value: Initialization for 7-bit LFSR whitener
uint8_t bOverride:1; //!< \brief 0: Use default whitening for BLE advertising/data channels<br>
//!< 1: Override whitening initialization with value of init
} whitening;
rfc_bleGenericRxPar_t *pParams; //!< Pointer to command specific parameter structure
rfc_bleGenericRxOutput_t *pOutput; //!< Pointer to command specific output structure
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup CMD_BLE_TX_TEST
//! @{
#define CMD_BLE_TX_TEST 0x180A
//! BLE PHY Test Transmitter Command
struct __RFC_STRUCT rfc_CMD_BLE_TX_TEST_s {
uint16_t commandNo; //!< The command ID number 0x180A
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
uint8_t channel; //!< \brief Channel to use<br>
//!< 0--39: BLE advertising/data channel index<br>
//!< 60--207: Custom frequency; (2300 + <code>channel</code>) MHz<br>
//!< 255: Use existing frequency<br>
//!< Others: <i>Reserved</i>
struct {
uint8_t init:7; //!< \brief If <code>bOverride</code> = 1 or custom frequency is used:<br>
//!< 0: Do not use whitening<br>
//!< Other value: Initialization for 7-bit LFSR whitener
uint8_t bOverride:1; //!< \brief 0: Use default whitening for BLE advertising/data channels<br>
//!< 1: Override whitening initialization with value of init
} whitening;
rfc_bleTxTestPar_t *pParams; //!< Pointer to command specific parameter structure
rfc_bleTxTestOutput_t *pOutput; //!< Pointer to command specific output structure
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup CMD_BLE_ADV_PAYLOAD
//! @{
#define CMD_BLE_ADV_PAYLOAD 0x1001
//! BLE Update Advertising Payload Command
struct __RFC_STRUCT rfc_CMD_BLE_ADV_PAYLOAD_s {
uint16_t commandNo; //!< The command ID number 0x1001
uint8_t payloadType; //!< \brief 0: Advertising data<br>
//!< 1: Scan response data
uint8_t newLen; //!< Length of the new payload
uint8_t* pNewData; //!< Pointer to the buffer containing the new data
rfc_bleAdvPar_t *pParams; //!< Pointer to the parameter structure to update
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup CMD_BLE5_RADIO_SETUP
//! @{
#define CMD_BLE5_RADIO_SETUP 0x1820
//! Bluetooth 5 Radio Setup Command for all PHYs
struct __RFC_STRUCT rfc_CMD_BLE5_RADIO_SETUP_s {
uint16_t commandNo; //!< The command ID number 0x1820
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
struct {
uint8_t mainMode:2; //!< \brief PHY to use for non-BLE commands:<br>
//!< 0: 1 Mbps<br>
//!< 1: 2 Mbps<br>
//!< 2: Coded<br>
//!< 3: <i>Reserved</i>
uint8_t coding:1; //!< \brief Coding to use for TX if coded PHY is selected for non-BLE commands<br>
//!< 0: S = 8 (125 kbps)<br>
//!< 1: S = 2 (500 kbps)
} defaultPhy;
uint8_t __dummy0;
struct {
uint16_t frontEndMode:3; //!< \brief 0x00: Differential mode<br>
//!< 0x01: Single-ended mode RFP<br>
//!< 0x02: Single-ended mode RFN<br>
//!< 0x05 Single-ended mode RFP with external frontend control on RF pins (RFN and RXTX)<br>
//!< 0x06 Single-ended mode RFN with external frontend control on RF pins (RFP and RXTX)<br>
//!< Others: <i>Reserved</i>
uint16_t biasMode:1; //!< \brief 0: Internal bias<br>
//!< 1: External bias
uint16_t analogCfgMode:6; //!< \brief 0x00: Write analog configuration.<br>
//!< Required first time after boot and when changing frequency band
//!< or front-end configuration<br>
//!< 0x2D: Keep analog configuration.<br>
//!< May be used after standby or when changing mode with the same frequency
//!< band and front-end configuration<br>
//!< Others: <i>Reserved</i>
uint16_t bNoFsPowerUp:1; //!< \brief 0: Power up frequency synth<br>
//!< 1: Do not power up frequency synth
} config; //!< Configuration options
uint16_t txPower; //!< Default transmit power
uint32_t* pRegOverrideCommon; //!< \brief Pointer to a list of hardware and configuration registers to override during common
//!< initialization. If NULL, no override is used.
uint32_t* pRegOverride1Mbps; //!< \brief Pointer to a list of hardware and configuration registers to override when selecting
//!< 1 Mbps PHY mode. If NULL, no override is used.
uint32_t* pRegOverride2Mbps; //!< \brief Pointer to a list of hardware and configuration registers to override when selecting
//!< 2 Mbps PHY mode. If NULL, no override is used.
uint32_t* pRegOverrideCoded; //!< \brief Pointer to a list of hardware and configuration registers to override when selecting
//!< coded PHY mode. If NULL, no override is used.
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup CMD_BLE5_SLAVE
//! @{
#define CMD_BLE5_SLAVE 0x1821
//! Bluetooth 5 Slave Command
struct __RFC_STRUCT rfc_CMD_BLE5_SLAVE_s {
uint16_t commandNo; //!< The command ID number 0x1821
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
uint8_t channel; //!< \brief Channel to use<br>
//!< 0--39: BLE advertising/data channel index<br>
//!< 60--207: Custom frequency; (2300 + <code>channel</code>) MHz<br>
//!< 255: Use existing frequency<br>
//!< Others: <i>Reserved</i>
struct {
uint8_t init:7; //!< \brief If <code>bOverride</code> = 1 or custom frequency is used:<br>
//!< 0: Do not use whitening<br>
//!< Other value: Initialization for 7-bit LFSR whitener
uint8_t bOverride:1; //!< \brief 0: Use default whitening for BLE advertising/data channels<br>
//!< 1: Override whitening initialization with value of init
} whitening;
struct {
uint8_t mainMode:2; //!< \brief PHY to use:<br>
//!< 0: 1 Mbps<br>
//!< 1: 2 Mbps<br>
//!< 2: Coded<br>
//!< 3: <i>Reserved</i>
uint8_t coding:6; //!< \brief Coding to use for TX if coded PHY is selected.
//!< See the Technical Reference Manual for details.
} phyMode;
uint8_t rangeDelay; //!< Number of RAT ticks to add to the listening time after T_IFS
uint16_t txPower; //!< \brief Transmit power to use (overrides the one given in radio setup).
//!< 0x0000: Use default TX power.
rfc_ble5SlavePar_t *pParams; //!< Pointer to command specific parameter structure
rfc_bleMasterSlaveOutput_t *pOutput; //!< Pointer to command specific output structure
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup CMD_BLE5_MASTER
//! @{
#define CMD_BLE5_MASTER 0x1822
//! Bluetooth 5 Master Command
struct __RFC_STRUCT rfc_CMD_BLE5_MASTER_s {
uint16_t commandNo; //!< The command ID number 0x1822
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
uint8_t channel; //!< \brief Channel to use<br>
//!< 0--39: BLE advertising/data channel index<br>
//!< 60--207: Custom frequency; (2300 + <code>channel</code>) MHz<br>
//!< 255: Use existing frequency<br>
//!< Others: <i>Reserved</i>
struct {
uint8_t init:7; //!< \brief If <code>bOverride</code> = 1 or custom frequency is used:<br>
//!< 0: Do not use whitening<br>
//!< Other value: Initialization for 7-bit LFSR whitener
uint8_t bOverride:1; //!< \brief 0: Use default whitening for BLE advertising/data channels<br>
//!< 1: Override whitening initialization with value of init
} whitening;
struct {
uint8_t mainMode:2; //!< \brief PHY to use:<br>
//!< 0: 1 Mbps<br>
//!< 1: 2 Mbps<br>
//!< 2: Coded<br>
//!< 3: <i>Reserved</i>
uint8_t coding:6; //!< \brief Coding to use for TX if coded PHY is selected.
//!< See the Technical Reference Manual for details.
} phyMode;
uint8_t rangeDelay; //!< Number of RAT ticks to add to the listening time after T_IFS
uint16_t txPower; //!< \brief Transmit power to use (overrides the one given in radio setup).
//!< 0x0000: Use default TX power.
rfc_ble5MasterPar_t *pParams; //!< Pointer to command specific parameter structure
rfc_bleMasterSlaveOutput_t *pOutput; //!< Pointer to command specific output structure
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup CMD_BLE5_ADV_EXT
//! @{
#define CMD_BLE5_ADV_EXT 0x1823
//! Bluetooth 5 Extended Advertiser Command
struct __RFC_STRUCT rfc_CMD_BLE5_ADV_EXT_s {
uint16_t commandNo; //!< The command ID number 0x1823
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
uint8_t channel; //!< \brief Channel to use<br>
//!< 0--39: BLE advertising/data channel index<br>
//!< 60--207: Custom frequency; (2300 + <code>channel</code>) MHz<br>
//!< 255: Use existing frequency<br>
//!< Others: <i>Reserved</i>
struct {
uint8_t init:7; //!< \brief If <code>bOverride</code> = 1 or custom frequency is used:<br>
//!< 0: Do not use whitening<br>
//!< Other value: Initialization for 7-bit LFSR whitener
uint8_t bOverride:1; //!< \brief 0: Use default whitening for BLE advertising/data channels<br>
//!< 1: Override whitening initialization with value of init
} whitening;
struct {
uint8_t mainMode:2; //!< \brief PHY to use:<br>
//!< 0: 1 Mbps<br>
//!< 1: 2 Mbps<br>
//!< 2: Coded<br>
//!< 3: <i>Reserved</i>
uint8_t coding:6; //!< \brief Coding to use for TX if coded PHY is selected.
//!< See the Technical Reference Manual for details.
} phyMode;
uint8_t rangeDelay; //!< Number of RAT ticks to add to the listening time after T_IFS
uint16_t txPower; //!< \brief Transmit power to use (overrides the one given in radio setup).
//!< 0x0000: Use default TX power.
rfc_ble5AdvExtPar_t *pParams; //!< Pointer to command specific parameter structure
rfc_bleAdvOutput_t *pOutput; //!< Pointer to command specific output structure
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup CMD_BLE5_ADV_AUX
//! @{
#define CMD_BLE5_ADV_AUX 0x1824
//! Bluetooth 5 Secondary Channel Advertiser Command
struct __RFC_STRUCT rfc_CMD_BLE5_ADV_AUX_s {
uint16_t commandNo; //!< The command ID number 0x1824
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
uint8_t channel; //!< \brief Channel to use<br>
//!< 0--39: BLE advertising/data channel index<br>
//!< 60--207: Custom frequency; (2300 + <code>channel</code>) MHz<br>
//!< 255: Use existing frequency<br>
//!< Others: <i>Reserved</i>
struct {
uint8_t init:7; //!< \brief If <code>bOverride</code> = 1 or custom frequency is used:<br>
//!< 0: Do not use whitening<br>
//!< Other value: Initialization for 7-bit LFSR whitener
uint8_t bOverride:1; //!< \brief 0: Use default whitening for BLE advertising/data channels<br>
//!< 1: Override whitening initialization with value of init
} whitening;
struct {
uint8_t mainMode:2; //!< \brief PHY to use:<br>
//!< 0: 1 Mbps<br>
//!< 1: 2 Mbps<br>
//!< 2: Coded<br>
//!< 3: <i>Reserved</i>
uint8_t coding:6; //!< \brief Coding to use for TX if coded PHY is selected.
//!< See the Technical Reference Manual for details.
} phyMode;
uint8_t rangeDelay; //!< Number of RAT ticks to add to the listening time after T_IFS
uint16_t txPower; //!< \brief Transmit power to use (overrides the one given in radio setup).
//!< 0x0000: Use default TX power.
rfc_ble5AdvAuxPar_t *pParams; //!< Pointer to command specific parameter structure
rfc_bleAdvOutput_t *pOutput; //!< Pointer to command specific output structure
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup CMD_BLE5_SCANNER
//! @{
#define CMD_BLE5_SCANNER 0x1827
//! Bluetooth 5 Scanner Command
struct __RFC_STRUCT rfc_CMD_BLE5_SCANNER_s {
uint16_t commandNo; //!< The command ID number 0x1827
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
uint8_t channel; //!< \brief Channel to use<br>
//!< 0--39: BLE advertising/data channel index<br>
//!< 60--207: Custom frequency; (2300 + <code>channel</code>) MHz<br>
//!< 255: Use existing frequency<br>
//!< Others: <i>Reserved</i>
struct {
uint8_t init:7; //!< \brief If <code>bOverride</code> = 1 or custom frequency is used:<br>
//!< 0: Do not use whitening<br>
//!< Other value: Initialization for 7-bit LFSR whitener
uint8_t bOverride:1; //!< \brief 0: Use default whitening for BLE advertising/data channels<br>
//!< 1: Override whitening initialization with value of init
} whitening;
struct {
uint8_t mainMode:2; //!< \brief PHY to use:<br>
//!< 0: 1 Mbps<br>
//!< 1: 2 Mbps<br>
//!< 2: Coded<br>
//!< 3: <i>Reserved</i>
uint8_t coding:6; //!< \brief Coding to use for TX if coded PHY is selected.
//!< See the Technical Reference Manual for details.
} phyMode;
uint8_t rangeDelay; //!< Number of RAT ticks to add to the listening time after T_IFS
uint16_t txPower; //!< \brief Transmit power to use (overrides the one given in radio setup).
//!< 0x0000: Use default TX power.
rfc_ble5ScannerPar_t *pParams; //!< Pointer to command specific parameter structure
rfc_ble5ScanInitOutput_t *pOutput; //!< Pointer to command specific output structure
} __RFC_STRUCT_ATTR;
//! @}
//! \addtogroup CMD_BLE5_INITIATOR
//! @{
#define CMD_BLE5_INITIATOR 0x1828
//! Bluetooth 5 Initiator Command
struct __RFC_STRUCT rfc_CMD_BLE5_INITIATOR_s {
uint16_t commandNo; //!< The command ID number 0x1828
uint16_t status; //!< \brief An integer telling the status of the command. This value is
//!< updated by the radio CPU during operation and may be read by the
//!< system CPU at any time.
rfc_radioOp_t *pNextOp; //!< Pointer to the next operation to run after this operation is done
ratmr_t startTime; //!< Absolute or relative start time (depending on the value of <code>startTrigger</code>)
struct {
uint8_t triggerType:4; //!< The type of trigger
uint8_t bEnaCmd:1; //!< \brief 0: No alternative trigger command<br>
//!< 1: CMD_TRIGGER can be used as an alternative trigger
uint8_t triggerNo:2; //!< The trigger number of the CMD_TRIGGER command that triggers this action
uint8_t pastTrig:1; //!< \brief 0: A trigger in the past is never triggered, or for start of commands, give an error<br>
//!< 1: A trigger in the past is triggered as soon as possible
} startTrigger; //!< Identification of the trigger that starts the operation
struct {
uint8_t rule:4; //!< Condition for running next command: Rule for how to proceed
uint8_t nSkip:4; //!< Number of skips + 1 if the rule involves skipping. 0: same, 1: next, 2: skip next, ...
} condition;
uint8_t channel; //!< \brief Channel to use<br>
//!< 0--39: BLE advertising/data channel index<br>
//!< 60--207: Custom frequency; (2300 + <code>channel</code>) MHz<br>
//!< 255: Use existing frequency<br>
//!< Others: <i>Reserved</i>
struct {
uint8_t init:7; //!< \brief If <code>bOverride</code> = 1 or custom frequency is used:<br>
//!< 0: Do not use whitening<br>
//!< Other value: Initialization for 7-bit LFSR whitener
uint8_t bOverride:1; //!< \brief 0: Use default whitening for BLE advertising/data channels<br>
//!< 1: Override whitening initialization with value of init
} whitening;