summaryrefslogtreecommitdiff
path: root/wilink_6_1/utils/CmdInterfaceCodes.h
blob: e549fb18eea983ccab293610bb55240341ab74a6 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
/*
 * CmdInterfaceCodes.h
 *
 * Copyright(c) 1998 - 2009 Texas Instruments. All rights reserved.      
 * All rights reserved.                                                  
 *                                                                       
 * Redistribution and use in source and binary forms, with or without    
 * modification, are permitted provided that the following conditions    
 * are met:                                                              
 *                                                                       
 *  * Redistributions of source code must retain the above copyright     
 *    notice, this list of conditions and the following disclaimer.      
 *  * 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.                                                      
 *  * Neither the name Texas Instruments 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  
 * OWNER 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.
 */


/****************************************************************************/
/*																			*/
/*    MODULE:   CmdInterfaceCodes.h											*/
/*    PURPOSE:																*/
/*																			*/
/****************************************************************************/
#ifndef _CMD_INTERFACE_CODES_H_
#define _CMD_INTERFACE_CODES_H_

/** \file  CmdInterfaceCodes.h 
 * \brief Command Interface Codes 
 * \n\n
 * This file contains the definitions for the parameters that can be Set/Get from outside user.
 * \n\n
 */

#include "TWDriver.h"

/* defines */
/***********/

/* types */
/*********/


/* This file contains the definitions for the parameters that can be Set/Get from outside.
    The parmeters that can be Set/Get from inside the driver only are defined in the file paramIn.h */

/****************************************************************************
                                PARAMETERS ISSUE
    Each parameter in the system is defined as UINT32. The parameter
    structue is as following:

 bit   31   30 - 24     23    22 - 16    15 - 8       7 - 0
    +-----+----------+-----+----------+-----------+-----------+
    | Set | Reserved | Get | Reserved | Module    | Parameter |
    | bit |          | bit |          | number    | number    |
    +-----+----------+-----+----------+-----------+-----------+

  The 'set' bit indicates whteher this parameter can be set from OS abstraction layer.
  The 'get' bit indicates whteher this parameter can be get from OS abstraction layer.
  (All the parameters can be Get/Set from insied the driver.)
  The module number indicated who is the oner of the parameter.
  The parameter number is the parameter unique number used to identify it.

****************************************************************************/

/** \def SET_BIT
 * \brief Bitmaks of bit which indicates if the Command is SET Command
 */
#define	SET_BIT         			0x08000000
/** \def GET_BIT
 * \brief Bitmaks of bit which indicates if the Command is GET Command
 */
#define	GET_BIT				        0x00800000
/** \def ASYNC_PARAM
 * \brief Bitmaks of bit which indicates if the access to the Command Parameter is Async
 */
#define ASYNC_PARAM					0x00010000
/** \def ALLOC_NEEDED_PARAM
 * \brief Bitmaks of bit which indicates if that the data is not allocated in the paramInfo structure
 */
#define ALLOC_NEEDED_PARAM			0x00020000


/** \def GET_PARAM_MODULE_NUMBER
 * \brief Macro which gets the Parameter's Module Number from the second byte of x \n
 * x should be taken from Module Parameters Enumeration
 * sa EModuleParam
 */
#define GET_PARAM_MODULE_NUMBER(x)  ((x & 0x0000FF00) >> 8)
/** \def IS_PARAM_ASYNC
 * \brief Macro which returns True if access to the Command Parameter is Async \n
 * Otherwise returns False
 */
#define IS_PARAM_ASYNC(x)			(x & ASYNC_PARAM)
/** \def IS_ALLOC_NEEDED_PARAM
 * \brief Macro which returns True if data is not allocated in the paramInfo structure \n
 * (there is a need to allocate memory for data). Otherwise returns False
 */
#define IS_ALLOC_NEEDED_PARAM(x)	(x & ALLOC_NEEDED_PARAM)	
/** \def IS_PARAM_FOR_MODULE
 * \brief Macro which returns True if input param is for input module. \n
 * Otherwise returns False
 */
#define IS_PARAM_FOR_MODULE(param, module)   ((param & 0x0000FF00) == module)

/** \enum EModuleParam
 * \brief Modules Parameters ID
 * 
 * \par Description
 * This Enumeration defines all available Modules numbers. \n
 * Note that the actual number is held in the second byte (E.g. 0x0000FF00). \n
 * According to these numbers it is decided to which Module the Command Parameter is destined
 * 
 * \sa
 */
/* NOTICE! whenever you add a module, you have to increment MAX_PARAM_MODULE_NUMBER as well!!! */
typedef enum
{
    DRIVER_MODULE_PARAM               	= 0x0000,	/**< Driver Module Number							*/
    AUTH_MODULE_PARAM               	= 0x0100,	/**< Authentication Module Number					*/
    ASSOC_MODULE_PARAM              	= 0x0200,	/**< Association Module Number	   					*/
    RX_DATA_MODULE_PARAM            	= 0x0300,	/**< RX Data Module Number							*/
    TX_CTRL_MODULE_PARAM            	= 0x0400,	/**< TX Control Module Number						*/
    CTRL_DATA_MODULE_PARAM          	= 0x0500,	/**< Control Data Module Number						*/
    SITE_MGR_MODULE_PARAM           	= 0x0600,	/**< Site Manager Module Number						*/
    CONN_MODULE_PARAM               	= 0x0700,	/**< Connection Module Number						*/
    RSN_MODULE_PARAM                	= 0x0800,	/**< Robust Security NW (RSN) Module Number			*/
    ADM_CTRL_MODULE_PARAM           	= 0x0900,	/**< ADM Control Module Number						*/
    TWD_MODULE_PARAM                	= 0x0A00,	/**< Report Module Number							*/
    REPORT_MODULE_PARAM             	= 0x0B00,	/**< Report Module Number							*/
    SME_MODULE_PARAM                    = 0x0C00,	/**< SME Module Number								*/
    MLME_SM_MODULE_PARAM            	= 0x0D00,	/**< 802.11 MLME State-Machine Module Number  		*/
    REGULATORY_DOMAIN_MODULE_PARAM  	= 0x0E00,	/**< Regulatory Domain Module Number 				*/
    MEASUREMENT_MODULE_PARAM        	= 0x0F00,	/**< Measurement Module Number						*/
    XCC_MANAGER_MODULE_PARAM        	= 0x1000,	/**< XCC Manager Module Number 						*/
    ROAMING_MANAGER_MODULE_PARAM    	= 0x1100,	/**< Roaming Manager Module Number					*/
    SOFT_GEMINI_PARAM               	= 0x1200,	/**< Soft Gemini Module Number						*/
    QOS_MANAGER_PARAM               	= 0x1300,	/**< Quality Of Service (QoS) Manager Module Number	*/
    POWER_MANAGER_PARAM             	= 0x1400,	/**< Power Manager Module Number					*/
    SCAN_CNCN_PARAM                 	= 0x1500,	/**< Scan Concentrator Module Number				*/
    SCAN_MNGR_PARAM                 	= 0x1600,	/**< Scan Manager Module Number						*/
    MISC_MODULE_PARAM					= 0x1700,	/**< Misc. Module Number							*/
    HEALTH_MONITOR_MODULE_PARAM         = 0x1800,	/**< Health Monitor Module Number					*/
    CURR_BSS_MODULE_PARAM               = 0x1900,   /**< Current Bss Module Number	     		        */
    /*
    Last module - DO NOT TOUCH!
    */
    MODULE_PARAM_LAST_MODULE						/**< LAst Module - Dummy, mast be last				*/

}   EModuleParam;

/** \def MAX_PARAM_MODULE_NUMBER
 * \brief Macro which returns the number of Parameters Modules
 */
#define MAX_PARAM_MODULE_NUMBER             (GET_PARAM_MODULE_NUMBER(MODULE_PARAM_LAST_MODULE))



/** \enum EExternalParam
 * \brief External Parameters
 * 
 * \par Description
 * This Enumeation includes all the eaxternal parameters numbers which are used for Get/Set Commands. 
 * Each module can have 256 parameters	\n
 * PARAMETERS ISSUE:	\n
 * Each parameter in the system is defined as UINT32. The parameter structue is as following:	\n
 * bit 0 - 7: 		Parameter Number - number of parameter inside Module\n
 * bit 8 - 15:		Module number - number of Module\n
 * bit 16:			Async Bit - indicates if command is Async (ON) or Sync (OFF)\n
 * bit 17:			Allocate Bit - indicates if allocation should be done for parameter (ON) or not (OFF)\n
 * bit 18 - 22:		Reserved			\n
 * bit 23:			Get Bit	- indicates if command is Get (ON) or not (OFF)	\n
 * bit 24 - 26:		Reserved	\n
 * bit 27:			Set Bit	- indicates if command is Set (ON) or not (OFF)	\n
 * bit 28 - 31:		Reserved	\n\n
 * The 'set' bit indicates whteher this parameter can be set from OS abstraction layer.
 * The 'get' bit indicates whteher this parameter can be get from OS abstraction layer.
 * (All the parameters can be Get/Set from insied the driver.)
 * The module number indicated who is the oner of the parameter.
 * The parameter number is the parameter unique number used to identify it.
 *
 * \sa
 */
 /* bit | 31 - 28  | 27  | 26 - 24  |  23 | 22 - 18  |    17    |  16   |  15 - 8   |   7 - 0   |
 *      +----------+-----+----------+-----+----------+----------+-------+-----------+-----------+
 *      | Reserved | Set | Reserved | Get | Reserved | Allocate | Async | Module    | Parameter |
 *      |          | bit |          | bit |          |    bit   |  bit  | number    | number    |
 *      +----------+-----+----------+-----+----------+----------+-------+-----------+-----------+
 */
typedef enum
{
	/* Driver General section */
    DRIVER_INIT_PARAM                           =	SET_BIT |           DRIVER_MODULE_PARAM | 0x00,	/**< Driver Init Parameter (Driver General Set Command): \n
																									* Used for setting driver defaults. Done Sync with no memory allocation\n 
																									* Parameter Number:	0x00\n
																									* Module Number: Driver Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: OFF	\n
																									* SET Bit: ON	\n
																									*/
    DRIVER_START_PARAM                          =	SET_BIT |           DRIVER_MODULE_PARAM | 0x01, /**< Driver Start Parameter (Driver General Set Command): \n
																									* Used for Starting Driver. Done Sync with no memory allocation\n 
																									* Parameter Number:	0x01\n
																									* Module Number: Driver Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: OFF	\n
																									* SET Bit: ON	\n
																									*/
    DRIVER_STOP_PARAM                           =	SET_BIT |           DRIVER_MODULE_PARAM | 0x02, /**< Driver Stop Parameter (Driver General Set Command): \n
																									* Used for Stopping Driver. Done Sync with no memory allocation \n
																									* Parameter Number:	0x02\n
																									* Module Number: Driver Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: OFF	\n
																									* SET Bit: ON	\n
																									*/
    DRIVER_STATUS_PARAM                         =	          GET_BIT | DRIVER_MODULE_PARAM | 0x03, /**< Driver Status Parameter (Driver General Get Command): \n
																									* Used for Getting Driver's Status (if running). Done Sync with no memory allocation\n																														Done Sync with no memory allocation\n 
																									* Parameter Number:	0x03\n
																									* Module Number: Driver Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: ON	\n
																									* SET Bit: OFF	\n
																									*/
    DRIVER_THREADID_PARAM                       =	          GET_BIT | DRIVER_MODULE_PARAM | 0x04, /**< Driver Thread ID Parameter (Driver General Get Command): \n
																									* Used for Getting Driver's Thread ID. Done Sync with no memory allocation\n 
																									* Parameter Number:	0x04\n
																									* Module Number: Driver Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: ON	\n
																									* SET Bit: OFF	\n
																									*/

	/* Site manager section */	
	SITE_MGR_DESIRED_CHANNEL_PARAM				=	SET_BIT | GET_BIT | SITE_MGR_MODULE_PARAM | 0x01,	/**< Site Manager Desired Channel Parameter (Site Manager Module Set/Get Command):\n 
																										* Used for Setting/Getting desired Channel to/from OS abstraction layer\n 
																										* Done Sync with no memory allocation \n
																										* Parameter Number:	0x01\n
																										* Module Number: Site Manager Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: ON	\n
																										*/
	SITE_MGR_DESIRED_SUPPORTED_RATE_SET_PARAM	=	SET_BIT | GET_BIT | SITE_MGR_MODULE_PARAM | 0x05,	/**< Site Manager Desired Supported Rate Set Parameter (Site Manager Module Set/Get Command):\n 
																										* Used for Setting/Getting Desired Supported Rate to/from OS abstraction layer\n 
																										* Done Sync with no memory allocation \n
																										* Parameter Number:	0x05\n
																										* Module Number: Site Manager Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: ON	\n
																										*/
	SITE_MGR_DESIRED_PREAMBLE_TYPE_PARAM		= 	SET_BIT | GET_BIT | SITE_MGR_MODULE_PARAM | 0x0A,	/**< Site Manager Desired Preamble Type Parameter (Site Manager Module Set/Get Command): \n 
																										* Used for Setting/Getting Desired Preamble Type to/from OS abstraction layer\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x0A\	n
																										* Module Number: Site Manager Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: ON	\n
*/
    
    SITE_MGRT_SET_RATE_MANAGMENT             = SET_BIT | SITE_MGR_MODULE_PARAM | 0x06 ,                 /**< Site Manager Desired Preamble Type Parameter (Site Manager Module Set/Get Command): \n 
                                                                                                        * Used for Setting/Getting Desired Preamble Type to/from OS abstraction layer\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x06\	n
																										* Module Number: Site Manager Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: OF	\n
																										* SET Bit: ON	\n
*/
 

    SITE_MGRT_GET_RATE_MANAGMENT             = GET_BIT | SITE_MGR_MODULE_PARAM | 0x07| ASYNC_PARAM,     /**< Site Manager Desired Preamble Type Parameter (Site Manager Module Set/Get Command): \n 
                                                                                                        * Used for Setting/Getting Desired Preamble Type to/from OS abstraction layer\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x07\	n
																										* Module Number: Site Manager Module Number \n
																										* Async Bit: ON	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: OFF	\n
*/



	SITE_MGR_CURRENT_CHANNEL_PARAM              = 	SET_BIT | GET_BIT | SITE_MGR_MODULE_PARAM | 0x0E,	/**< Site Manager Current Channel Parameter (Site Manager Module Set/Get Command): \n 
																										* Used for Setting/Getting Current Channel to/from OS abstraction layer\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x0E	\n
																										* Module Number: Site Manager Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: ON	\n
																										*/
	SITE_MGR_TI_WLAN_COUNTERS_PARAM            	=			  GET_BIT | SITE_MGR_MODULE_PARAM | 0x14,	/**< Site Manager TI WLAN Counters Parameter (Site Manager Module Get Command): \n 
																										* Used for Getting TI WLAN Statistics Counters from OS abstraction layer\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x14	\n
																										* Module Number: Site Manager Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: OFF	\n
																										*/
	SITE_MGR_EEPROM_VERSION_PARAM				=			  GET_BIT | SITE_MGR_MODULE_PARAM | 0x16,  	/**< Site Manager EEPROM Version Parameter (Site Manager Module Get Command): \n 
																										* Used for Getting EEPROM Version from FW\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x16	\n
																										* Module Number: Site Manager Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: OFF	\n
																										*/ 
	SITE_MGR_FIRMWARE_VERSION_PARAM				=			  GET_BIT | SITE_MGR_MODULE_PARAM | 0x17,	/**< Site Manager FW Version Parameter (Site Manager Module Get Command): \n 
																										* Used for Getting FW Version from FW\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x17	\n
																										* Module Number: Site Manager Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: OFF	\n
																										*/ 
	SITE_MGR_DESIRED_SLOT_TIME_PARAM			=	SET_BIT | GET_BIT | SITE_MGR_MODULE_PARAM | 0x1B,	/**< Site Manager Desired Slot Time Parameter (Site Manager Module Set/Get Command): \n 
																										* Used for Getting Desired Slot Time from OS abstraction layer and Setting Desired Slot Time to FW\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x1B	\n
																										* Module Number: Site Manager Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: ON	\n
																										*/
	SITE_MGR_GET_AP_QOS_CAPABILITIES            =             GET_BIT | SITE_MGR_MODULE_PARAM | 0x2E,	/**< Site Manager Get AP QoS Cpabilities Parameter (Site Manager Module Get Command): \n  
																										* Used for Getting AP QoS Cpabilities from OS abstraction layer\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x2E	\n
																										* Module Number: Site Manager Module Number \n 
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: OFF	\n
																										*/
	SITE_MGR_CURRENT_TX_RATE_PARAM				=             GET_BIT | SITE_MGR_MODULE_PARAM | 0x32,	/**< Site Manager Current TX Rate Parameter (Site Manager Module Get Command): \n  
																										* Used for Getting Current TX Rate from OS abstraction layer\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x32	\n
																										* Module Number: Site Manager Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: OFF	\n
																										*/
	SITE_MGR_BSSID_FULL_LIST_PARAM				=			  GET_BIT | SITE_MGR_MODULE_PARAM | 0x34,	/**< Site Manager BSSID Full List Parameter (Site Manager Module Get Command): \n  
																										* Used for Getting BSSID Full List from OS abstraction layer\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x34	\n
																										* Module Number: Site Manager Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: OFF	\n
																										*/
	SITE_MGR_BEACON_FILTER_DESIRED_STATE_PARAM = 	SET_BIT | GET_BIT | SITE_MGR_MODULE_PARAM | 0x35,	/**< Site Manager Beacon Filter Desired State Parameter (Site Manager Module Set/Get Command): \n  
																										* Used for Getting Beacon Filter Desired State from OS abstraction layer or Setting Beacon Filter Desired State to FW\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x35	\n
																										* Module Number: Site Manager Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: ON	\n
																										*/
    SITE_MGR_NETWORK_TYPE_IN_USE				=             GET_BIT | SITE_MGR_MODULE_PARAM | 0x36,	/**< Site Manager NW Type in Use Parameter (Site Manager Module Get Command): \n  
																										* Used for Getting NW Type in Use from OS abstraction layer\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x36	\n
																										* Module Number: Site Manager Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: OFF	\n
																										*/

	/* Simple Config module */
	SITE_MGR_SIMPLE_CONFIG_MODE					= 	SET_BIT | GET_BIT | SITE_MGR_MODULE_PARAM | 0x38,	/**< Site Manager Simple Configuration Mode Parameter (Simple Configuration Module Set/Get Command): \n  
																										* Used for Setting/Getting WiFi Simple Configuration Mode\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x38	\n
																										* Module Number: Site Manager Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: ON	\n
																										*/
    SITE_MGR_GET_PRIMARY_SITE					= 	          GET_BIT | SITE_MGR_MODULE_PARAM | 0x40,	/**< Site Manager Get Primary Site Parameter (Simple Configuration Module Get Command): \n  
																										* Used for Getting Primary Site from OS abstraction layer\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x40	\n
																										* Module Number: Site Manager Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: OFF	\n
																										*/

    SITE_MGR_PRIMARY_SITE_HT_SUPPORT			= 	          GET_BIT | SITE_MGR_MODULE_PARAM | 0x41,	/**< Site Manager check if the Primary Site support HT: \n  
                                                                                                        * Used for check if the Primary Site support HT \n
                                                                                                        * Done Sync with no memory allocation\n 
                                                                                                        * Parameter Number:	0x41	\n
                                                                                                        * Module Number: Site Manager Module Number \n
                                                                                                        * Async Bit: OFF	\n
                                                                                                        * Allocate Bit: OFF	\n
                                                                                                        * GET Bit: ON	\n
                                                                                                        * SET Bit: OFF	\n
                                                                                                        */
	SITE_MGR_CURRENT_RX_RATE_PARAM				=             GET_BIT | SITE_MGR_MODULE_PARAM | 0x42,	/**< Site Manager Current RX Rate Parameter (Site Manager Module Get Command): \n  
																										* Used for Getting Current RX Rate from OS abstraction layer\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x33	\n
																										* Module Number: Site Manager Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: OFF	\n
																										*/
	/* CTRL data section */
	CTRL_DATA_CURRENT_BSS_TYPE_PARAM			=	SET_BIT | GET_BIT | CTRL_DATA_MODULE_PARAM | 0x04,	/**< Control Data Primary BSS Type Parameter (Control Data Module Set/Get Command): \n  
																										* Used for Setting/Getting Primary BSS Type to/form Control Data Parameters\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x04	\n
																										* Module Number: Control Data Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: ON	\n
																										*/
    CTRL_DATA_MAC_ADDRESS						= 	          GET_BIT | CTRL_DATA_MODULE_PARAM | 0x08,	/**< Control Data MAC Address Parameter (Control Data Module Get Command): \n  
																										* Used for Getting MAC Address form FW\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x08	\n
																										* Module Number: Control Data Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: OFF	\n
																										*/
    CTRL_DATA_CLSFR_TYPE                        =			  GET_BIT | CTRL_DATA_MODULE_PARAM | 0x0D,	/**< Control Data Classifier Type Parameter (Control Data Module Set/Get Command): \n  
																										* Used for Setting/Getting Classifier Type to/form Control Data (TX Data Queue) Parameters\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x0D	\n
																										* Module Number: Control Data Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: OFF	\n
																										*/
    CTRL_DATA_CLSFR_CONFIG                      =	SET_BIT           | CTRL_DATA_MODULE_PARAM | 0x0E,	/**< Control Data Classifier Configure Parameter (Control Data Module Set Command): \n  
																										* Used for adding Classifier entry to Control Data (TX Data Queue) Parameters\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x0E	\n
																										* Module Number: Control Data Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: OFF	\n
																										* SET Bit: ON	\n
																										*/
    CTRL_DATA_CLSFR_REMOVE_ENTRY                =	SET_BIT           | CTRL_DATA_MODULE_PARAM | 0x0F,	/**< Control Data Classifier Configure Parameter (Control Data Module Set Command): \n  
																										* Used for removing Classifier entry from Control Data (TX Data Queue) Parameters\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x0F	\n
																										* Module Number: Control Data Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: OFF	\n
																										* SET Bit: ON	\n
																										*/
    CTRL_DATA_TRAFFIC_INTENSITY_THRESHOLD		=	SET_BIT | GET_BIT | CTRL_DATA_MODULE_PARAM | 0x15,	/**< Control Data Traffic Intensity Threshold Parameter (Control Data Module Set/Get Command): \n  
																										* Used for Setting/Getting Traffic Intensity Threshold to/from Control Data (Traffic Intensity Threshold) Parameters\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x15	\n
																										* Module Number: Control Data Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: ON	\n
																										*/
    CTRL_DATA_TOGGLE_TRAFFIC_INTENSITY_EVENTS	=	SET_BIT           | CTRL_DATA_MODULE_PARAM | 0x16,	/**< Control Data Toggle Traffic Intensity Events Parameter (Control Data Module Set Command): \n  
																										* Used for Toggle Traffic Intensity Events (turns ON/OFF traffic intensity notification events)	\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x16	\n
																										* Module Number: Control Data Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: OFF	\n
																										* SET Bit: ON	\n
																										*/

	/* SME SM section */    
    SME_DESIRED_SSID_ACT_PARAM                  = SET_BIT | GET_BIT | SME_MODULE_PARAM	 | 0x01,		/**< SME Set SSID and start connection process (SME Module Set/Get Command): \n  
																										* Used for set SSID and start connection or get current SSID \n 
																										* Parameter Number:	0x01 \n
																										* Module Number: SME Module Number \n
																										* Async Bit: OFF \n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: ON	\n
																										*/

    SME_RADIO_ON_PARAM                          = SET_BIT | GET_BIT | SME_MODULE_PARAM	 | 0x03,		/**< SME State-Machine Radio ON Parameter (SME Module Set/Get Command): \n  
																										* Used for Setting new and generating State-Machine Event, or Getting current Radio ON\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x03	\n
																										* Module Number: SME Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: ON	\n
																										*/
    SME_CONNECTION_MODE_PARAM                   = SET_BIT | GET_BIT | SME_MODULE_PARAM   | 0x04,		/**< SME State-Machine Connection Mode Parameter (SME Module Set/Get Command): \n  
																										* Used for Setting new Connection Mode (and generating disconnect State-Machine event) or Getting current Connection Mode\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x04	\n
																										* Module Number: SME Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: ON	\n
																										* SET Bit: ON	\n
																										*/
    SME_WSC_PB_MODE_PARAM                       = SET_BIT           | SME_MODULE_PARAM   | 0x07,		/**< SME State-Machine SME on the WPS Mode Parameter (SME Module Set Command): \n  
																										* Used for updating the SME on the WPS mode\n
																										* Done Sync with no memory allocation\n 
																										* Parameter Number:	0x07	\n
																										* Module Number: SME Module Number \n
																										* Async Bit: OFF	\n
																										* Allocate Bit: OFF	\n
																										* GET Bit: OFF	\n
																										* SET Bit: ON	\n
																										*/

    SME_DESIRED_SSID_PARAM                      = SET_BIT           | SME_MODULE_PARAM	 | 0x08,		/**< SME Set SSID without start connection process (SME Module Set Command): \n  
                                                                                                        * Used for set SSID without connection \n 
                                                                                                        * Parameter Number:	0x08 \n
                                                                                                        * Module Number: SME Module Number \n
                                                                                                        * Async Bit: OFF \n
                                                                                                        * Allocate Bit: OFF	\n
                                                                                                        * GET Bit: OFF	\n
                                                                                                        * SET Bit: ON	\n
                                                                                                        */

	/* Scan Concentrator section */
    SCAN_CNCN_START_APP_SCAN					= 	SET_BIT | 			SCAN_CNCN_PARAM | 0x01 | ALLOC_NEEDED_PARAM,	/**< Scan Concentrator Start Application Scan Parameter (Scan Concentrator Module Set Command): \n  
																														* Used for start one-shot scan as running application scan client\n
																														* Done Sync with memory allocation\n 
																														* Parameter Number:	0x01	\n
																														* Module Number: Scan Concentrator Module Number \n
																														* Async Bit: OFF	\n
																														* Allocate Bit: ON	\n
																														* GET Bit: OFF	\n
																														* SET Bit: ON	\n
																														*/
    SCAN_CNCN_STOP_APP_SCAN                     =   SET_BIT |           SCAN_CNCN_PARAM | 0x02,							/**< Scan Concentrator Stop Application Scan Parameter (Scan Concentrator Module Set Command): \n  
																														* Used for stop one-shot scan as running application scan client\n
																														* Done Sync with no memory allocation\n 
																														* Parameter Number:	0x02	\n
																														* Module Number: Scan Concentrator Module Number \n
																														* Async Bit: OFF	\n
																														* Allocate Bit: OFF	\n
																														* GET Bit: OFF	\n
																														* SET Bit: ON	\n
																														*/
    SCAN_CNCN_START_PERIODIC_SCAN               =   SET_BIT |           SCAN_CNCN_PARAM | 0x03 | ALLOC_NEEDED_PARAM,	/**< Scan Concentrator Start Periodic Scan Parameter (Scan Concentrator Module Set Command): \n  
																														* Used for start periodic scan as running application scan client\n
																														* Done Sync with memory allocation\n 
																														* Parameter Number:	0x03	\n
																														* Module Number: Scan Concentrator Module Number \n
																														* Async Bit: OFF	\n
																														* Allocate Bit: ON	\n
																														* GET Bit: OFF	\n
																														* SET Bit: ON	\n
																														*/
    SCAN_CNCN_STOP_PERIODIC_SCAN                =   SET_BIT |           SCAN_CNCN_PARAM | 0x04,							/**< Scan Concentrator Stop Periodic Scan Parameter (Scan Concentrator Module Set Command): \n  
																														* Used for stop periodic scan as running application scan client\n
																														* Done Sync with no memory allocation\n 
																														* Parameter Number:	0x04	\n
																														* Module Number: Scan Concentrator Module Number \n
																														* Async Bit: OFF	\n
																														* Allocate Bit: OFF	\n
																														* GET Bit: OFF	\n
																														* SET Bit: ON	\n
																														*/
    SCAN_CNCN_BSSID_LIST_SCAN_PARAM             =   SET_BIT |           SCAN_CNCN_PARAM | 0x05,							/**< Scan Concentrator BSSID List Scon Parameter (Scan Concentrator Module Set Command): \n  
																														* Used for start one-shot scan as running application scan client\n
																														* Done Sync with no memory allocation\n 
																														* Parameter Number:	0x05	\n
																														* Module Number: Scan Concentrator Module Number \n
																														* Async Bit: OFF	\n
																														* Allocate Bit: OFF	\n
																														* GET Bit: OFF	\n
																														* SET Bit: ON	\n
																														*/
    SCAN_CNCN_BSSID_LIST_SIZE_PARAM             =   GET_BIT |           SCAN_CNCN_PARAM | 0x06,							/**< Scan Concentrator BSSID List Size Parameter (Scan Concentrator Module Get Command): \n  
																														* Used for retrieving the size to allocate for the application scan result list\n
																														* Done Sync with no memory allocation\n 
																														* Parameter Number:	0x06	\n
																														* Module Number: Scan Concentrator Module Number \n
																														* Async Bit: OFF	\n
																														* Allocate Bit: OFF	\n
																														* GET Bit: ON	\n
																														* SET Bit: OFF	\n
																														*/
    SCAN_CNCN_BSSID_LIST_PARAM                  =   GET_BIT |           SCAN_CNCN_PARAM | 0x07,							/**< Scan Concentrator BSSID List Parameter (Scan Concentrator Module Get Command): \n  
																														* Used for retrieving the application scan result table\n
																														* Done Sync with no memory allocation\n 
																														* Parameter Number:	0x07	\n
																														* Module Number: Scan Concentrator Module Number \n
																														* Async Bit: OFF	\n
																														* Allocate Bit: OFF	\n
																														* GET Bit: ON	\n
																														* SET Bit: OFF	\n
																														*/

	/* Scan Manager module */
    SCAN_MNGR_SET_CONFIGURATION                 =	SET_BIT |           SCAN_MNGR_PARAM | 0x01 | ALLOC_NEEDED_PARAM,	/**< Scan Manager Set Configuration Parameter (Scan Manager Module Set Command): \n  
																														* Used for setting the Scan Policy\n
																														* Done Sync with memory allocation\n 
																														* Parameter Number:	0x01	\n
																														* Module Number: Scan Manager Module Number \n
																														* Async Bit: OFF	\n
																														* Allocate Bit: ON	\n
																														* GET Bit: OFF	\n
																														* SET Bit: ON	\n
																														*/
    SCAN_MNGR_BSS_LIST_GET						=			  GET_BIT | SCAN_MNGR_PARAM | 0x02 | ALLOC_NEEDED_PARAM,	/**< Scan Manager Get BSS List Parameter (Scan Manager Module Get Command): \n  
																														* Used for getting the currently available BSS list\n
																														* Done Sync with memory allocation\n 
																														* Parameter Number:	0x02	\n
																														* Module Number: Scan Manager Module Number \n
																														* Async Bit: OFF	\n
																														* Allocate Bit: ON	\n
																														* GET Bit: ON	\n
																														* SET Bit: OFF	\n
																														*/

	/* regulatory domain section */
	REGULATORY_DOMAIN_MANAGEMENT_CAPABILITY_ENABLED_PARAM	=			  GET_BIT | REGULATORY_DOMAIN_MODULE_PARAM | 0x02,					   	/**< Regulatory Domain Management Capability Enabled Parameter (Regulatory Domain Module Get Command): \n  
																																				* Used for getting indication if Spectrum Management is enabled\n
																																				* Done Sync with no memory allocation\n 
																																				* Parameter Number:	0x02	\n
																																				* Module Number: Regulatory Domain Module Number \n
																																				* Async Bit: OFF	\n
																																				* Allocate Bit: OFF	\n
																																				* GET Bit: ON	\n
																																				* SET Bit: OFF	\n
																																				*/
	REGULATORY_DOMAIN_ENABLED_PARAM							=			  GET_BIT | REGULATORY_DOMAIN_MODULE_PARAM | 0x03,						/**< Regulatory Domain Enabled Parameter (Regulatory Domain Module Get Command): \n  
																																				* Used for getting indication if regulatory domain if 802.11d is in use\n
																																				* Done Sync with no memory allocation\n 
																																				* Parameter Number:	0x03	\n
																																				* Module Number: Regulatory Domain Module Number \n
																																				* Async Bit: OFF	\n
																																				* Allocate Bit: OFF	\n
																																				* GET Bit: ON	\n
																																				* SET Bit: OFF	\n
																																				*/ 		
    REGULATORY_DOMAIN_CURRENT_TX_POWER_LEVEL_PARAM      	= 	SET_BIT | GET_BIT | REGULATORY_DOMAIN_MODULE_PARAM | 0x06,						/**< Regulatory Domain Current TX Power Level Parameter (Regulatory Domain Module Set/Get Command): \n  
																																				* Used for setting/getting current TZ Power Level\n
																																				* Done Sync with no memory allocation\n 
																																				* Parameter Number:	0x06	\n
																																				* Module Number: Regulatory Domain Module Number \n
																																				* Async Bit: OFF	\n
																																				* Allocate Bit: OFF	\n
																																				* GET Bit: ON	\n
																																				* SET Bit: ON	\n
																																				*/ 
    REGULATORY_DOMAIN_CURRENT_TX_POWER_IN_DBM_PARAM			= 	SET_BIT | GET_BIT | REGULATORY_DOMAIN_MODULE_PARAM | 0x08,						/**< Regulatory Domain Current TX Power in DBM Parameter (Regulatory Domain Module Set/Get Command): \n  
																																				* Used for setting/getting current TX Power Level in DBM\n
																																				* Done Sync with no memory allocation\n 
																																				* Parameter Number:	0x08	\n
																																				* Module Number: Regulatory Domain Module Number \n
																																				* Async Bit: OFF	\n
																																				* Allocate Bit: OFF	\n
																																				* GET Bit: ON	\n
																																				* SET Bit: ON	\n
																																				*/
    REGULATORY_DOMAIN_ENABLE_DISABLE_802_11D				=	SET_BIT |           REGULATORY_DOMAIN_MODULE_PARAM | 0x0C,					 	/**< Regulatory Domain Enable/Disable 802.11d Parameter (Regulatory Domain Module Set Command): \n  
																																				* Used for enabling/disabling 802.11d.\n
																																				* Done Sync with no memory allocation\n 
																																				* Parameter Number:	0x0C	\n
																																				* Module Number: Regulatory Domain Module Number \n
																																				* Async Bit: OFF	\n
																																				* Allocate Bit: OFF	\n
																																				* GET Bit: OFF	\n
																																				* SET Bit: ON	\n
																																				*/   	
    REGULATORY_DOMAIN_ENABLE_DISABLE_802_11H				=	SET_BIT |           REGULATORY_DOMAIN_MODULE_PARAM | 0x0D,						/**< Regulatory Domain Enable/Disable 802.11h Parameter (Regulatory Domain Module Set Command): \n  
																																				* Used for enabling/disabling 802.11h (If 802_11h is enabled, enable 802_11d as well)\n
																																				* Done Sync with no memory allocation\n 
																																				* Parameter Number:	0x0D	\n
																																				* Module Number: Regulatory Domain Module Number \n
																																				* Async Bit: OFF	\n
																																				* Allocate Bit: OFF	\n
																																				* GET Bit: OFF	\n
																																				* SET Bit: ON	\n
																																				*/ 
    REGULATORY_DOMAIN_COUNTRY_2_4_PARAM						=	SET_BIT | GET_BIT | REGULATORY_DOMAIN_MODULE_PARAM | 0x0E | ALLOC_NEEDED_PARAM,	/**< Regulatory Domain Country 2-4 Parameter (Regulatory Domain Module Set/Get Command): \n  
																																				* Used for getting Country String or setting the local country IE per band with the Country IE that was detected in the last passive scan\n
																																				* Done Sync with memory allocation\n 
																																				* Parameter Number:	0x0E	\n
																																				* Module Number: Regulatory Domain Module Number \n
																																				* Async Bit: OFF	\n
																																				* Allocate Bit: ON	\n
																																				* GET Bit: ON	\n
																																				* SET Bit: ON	\n
																																				*/		
    REGULATORY_DOMAIN_COUNTRY_5_PARAM						=	SET_BIT | GET_BIT | REGULATORY_DOMAIN_MODULE_PARAM | 0x0F | ALLOC_NEEDED_PARAM,	/**< Regulatory Domain Country 5 Parameter (Regulatory Domain Module Set/Get Command): \n  
																																				* Used for getting Country String or setting the local country IE per band with the Country IE that was detected in the last passive scan\n
																																				* Done Sync with memory allocation\n 
																																				* Parameter Number:	0x0F	\n
																																				* Module Number: Regulatory Domain Module Number \n
																																				* Async Bit: OFF	\n
																																				* Allocate Bit: ON	\n
																																				* GET Bit: ON	\n
																																				* SET Bit: ON	\n
																																				*/	
    REGULATORY_DOMAIN_DFS_CHANNELS_RANGE					=	SET_BIT | GET_BIT | REGULATORY_DOMAIN_MODULE_PARAM | 0x10,						/**< Regulatory Domain DFS Channels Parameter (Regulatory Domain Module Set/Get Command): \n  
																																				* Used for config manager in order to set/get a parameter received from the OS abstraction layer\n
																																				* Done Sync with no memory allocation\n 
																																				* Parameter Number:	0x10	\n
																																				* Module Number: Regulatory Domain Module Number \n
																																				* Async Bit: OFF	\n
																																				* Allocate Bit: OFF	\n
																																				* GET Bit: ON	\n
																																				* SET Bit: ON	\n
																																				*/	
	REGULATORY_DOMAIN_TX_POWER_LEVEL_TABLE_PARAM			=   		  GET_BIT | REGULATORY_DOMAIN_MODULE_PARAM | 0x12,						/**< Regulatory Domain TX Power Level Table Parameter (Regulatory Domain Module Get Command): \n  
																																				* Used for getting TX Power Level Table from FW\n
																																				* Done Sync with no memory allocation\n 
																																				* Parameter Number:	0x12	\n
																																				* Module Number: Regulatory Domain Module Number \n
																																				* Async Bit: OFF	\n
																																				* Allocate Bit: OFF	\n
																																				* GET Bit: ON	\n
																																				* SET Bit: OFF	\n
																																				*/		

	/* Power Manager params */
    POWER_MGR_POWER_MODE							= 	SET_BIT | GET_BIT | POWER_MANAGER_PARAM | 0x01,							/**< Power Manager Power Mode Parameter (Power Manager Module Set/Get Command): \n  
																																* Used for setting/getting the Power Mode to/from Power Manager Module\n
																																* Done Sync with no memory allocation\n 
																																* Parameter Number:	0x01	\n
																																* Module Number: Power Manager Module Number \n
																																* Async Bit: OFF	\n
																																* Allocate Bit: OFF	\n
																																* GET Bit: ON	\n
																																* SET Bit: ON	\n
																																*/
    POWER_MGR_POWER_LEVEL_PS                        =   SET_BIT | GET_BIT | POWER_MANAGER_PARAM | 0x02,							/**< Power Manager Power Level Power-Save Parameter (Power Manager Module Set/Get Command): \n  
																																* Used for getting the Power Level Power-Save from Power Manager Module or setting the Power Level Power-Save to Power Manager Module (and to FW if Power-Save is Enabled)\n
																																* Done Sync with no memory allocation\n 
																																* Parameter Number:	0x02	\n
																																* Module Number: Power Manager Module Number \n
																																* Async Bit: OFF	\n
																																* Allocate Bit: OFF	\n
																																* GET Bit: ON	\n
																																* SET Bit: ON	\n
																																*/
    POWER_MGR_POWER_LEVEL_DEFAULT                   =   SET_BIT | GET_BIT | POWER_MANAGER_PARAM | 0x03,							/**< Power Manager Power Level Default Parameter (Power Manager Module Set/Get Command): \n  
																																* Used for getting the Power Level Default from Power Manager Module or setting the Power Level Default to Power Manager Module (and to FW if Power-Save is Enabled)\n
																																* Done Sync with no memory allocation\n 
																																* Parameter Number:	0x03	\n
																																* Module Number: Power Manager Module Number \n
																																* Async Bit: OFF	\n
																																* Allocate Bit: OFF	\n
																																* GET Bit: ON	\n
																																* SET Bit: ON	\n
																																*/
    POWER_MGR_POWER_LEVEL_DOZE_MODE                 =   SET_BIT | GET_BIT | POWER_MANAGER_PARAM | 0x04,							/**< Power Manager Power Level Doze Mode (short-doze / long-doze) Parameter (Power Manager Module Set/Get Command): \n  
																																* Used for getting the Power Level Doze Mode from Power Manager Module or setting the Power Level Doze Mode to Power Manager Module (and to FW if Power-Save is Enabled)\n
																																* Done Sync with no memory allocation\n 
																																* Parameter Number:	0x04	\n
																																* Module Number: Power Manager Module Number \n
																																* Async Bit: OFF	\n
																																* Allocate Bit: OFF	\n
																																* GET Bit: ON	\n
																																* SET Bit: ON	\n
																																*/
    POWER_MGR_KEEP_ALIVE_ENA_DIS                    =   SET_BIT |           POWER_MANAGER_PARAM | 0x05,							/**< Power Manager Keep Alive Enable/Disable Parameter (Power Manager Module Set Command): \n  
																																* Used for setting the Keep Alive Enable/Disable to Power Manager and FW\n
																																* Done Sync with no memory allocation\n 
																																* Parameter Number:	0x05	\n
																																* Module Number: Power Manager Module Number \n
																																* Async Bit: OFF	\n
																																* Allocate Bit: OFF	\n
																																* GET Bit: OFF	\n
																																* SET Bit: ON	\n
																																*/
    POWER_MGR_KEEP_ALIVE_ADD_REM                    =   SET_BIT |           POWER_MANAGER_PARAM | 0x06 | ALLOC_NEEDED_PARAM,	/**< Power Manager Keep Alive add REM Parameter (Power Manager Module Set Command): \n  
																																* Used for setting addition/removal of a template and global enable/disable flag to Power Manager and FW\n
																																* Done Sync with memory allocation\n 
																																* Parameter Number:	0x06	\n
																																* Module Number: Power Manager Module Number \n
																																* Async Bit: OFF	\n
																																* Allocate Bit: ON	\n
																																* GET Bit: OFF	\n
																																* SET Bit: ON	\n
																																*/
    POWER_MGR_KEEP_ALIVE_GET_CONFIG                 =             GET_BIT | POWER_MANAGER_PARAM | 0x07 | ALLOC_NEEDED_PARAM,	/**< Power Manager Keep Alive Get Configuration Parameter (Power Manager Module Get Command): \n  
																																* Used for getting the Keep Alive current Configuration\n
																																* Done Sync with memory allocation\n 
																																* Parameter Number:	0x07	\n
																																* Module Number: Power Manager Module Number \n
																																* Async Bit: OFF	\n
																																* Allocate Bit: ON	\n
																																* GET Bit: ON	\n
																																* SET Bit: OFF	\n
																																*/


    POWER_MGR_GET_POWER_CONSUMPTION_STATISTICS       =            GET_BIT | POWER_MANAGER_PARAM | 0x09| ASYNC_PARAM,             /**< Power Manager  Get power consumption parmeter (Power Manager Module Get Command): \n  
                                                                                                                                * Used for getting the Keep Alive current Configuration\n
																																* Done Sync with no memory allocation\n 
																																* Parameter Number:	0x08	\n
																																* Module Number: Power Manager Module Number \n
																																* Async Bit: ON	\n
																																* Allocate Bit: ON	\n
																																* GET Bit: ON	\n
																																* SET Bit: OFF	\n
																																*/




	/* Robust Security NW (RSN) section */
	RSN_ENCRYPTION_STATUS_PARAM						=	SET_BIT | GET_BIT | RSN_MODULE_PARAM | 0x04,							/**< Robust Security NW (RSN) Encryption Status Parameter (RSN Module Set/Get Command): \n  
																																* Used for setting/getting Encryption Status to/from RSN Module\n
																																* Done Sync with no memory allocation\n 
																																* Parameter Number:	0x04	\n
																																* Module Number: RSN Module Number \n
																																* Async Bit: OFF	\n
																																* Allocate Bit: OFF	\n
																																* GET Bit: ON	\n
																																* SET Bit: ON	\n
																																*/
	RSN_ADD_KEY_PARAM								=	SET_BIT | 			RSN_MODULE_PARAM | 0x05,							/**< Robust Security NW (RSN) Add Key Parameter (RSN Module Set Command): \n  
																																* Used for adding RSN Key to FW\n
																																* Done Sync with no memory allocation\n 
																																* Parameter Number:	0x05	\n
																																* Module Number: RSN Module Number \n
																																* Async Bit: OFF	\n
																																* Allocate Bit: OFF	\n
																																* GET Bit: OFF	\n
																																* SET Bit: ON	\n
																																*/
	RSN_REMOVE_KEY_PARAM							=	SET_BIT           | RSN_MODULE_PARAM | 0x06,							/**< Robust Security NW (RSN) Remove Key Parameter (RSN Module Set Command): \n  
																																* Used for removing RSN Key from FW\n
																																* Done Sync with no memory allocation\n 
																																* Parameter Number:	0x06	\n
																																* Module Number: RSN Module Number \n
																																* Async Bit: OFF	\n
																																* Allocate Bit: OFF	\n
																																* GET Bit: OFF	\n
																																* SET Bit: ON	\n
																																*/
    RSN_EXT_AUTHENTICATION_MODE                 	= 	SET_BIT | GET_BIT | RSN_MODULE_PARAM | 0x07,							/**< Robust Security NW (RSN) External Authentication Mode Parameter (RSN Module Set/Get Command): \n  
																																* Used for getting RSN External Authentication Mode from RSN Module or setting RSN External Authentication Mode to FW and RSN Module\n
																																* Done Sync with no memory allocation\n 
																																* Parameter Number:	0x07	\n
																																* Module Number: RSN Module Number \n
																																* Async Bit: OFF	\n
																																* Allocate Bit: OFF	\n
																																* GET Bit: ON	\n
																																* SET Bit: ON	\n
																																*/
	RSN_MIXED_MODE									=	SET_BIT | GET_BIT | RSN_MODULE_PARAM | 0x08,							/**< Robust Security NW (RSN) Mixed Mode Parameter (RSN Module Set/Get Command): \n  
																																* Used for setting/getting RSN Mixed Mode to/from RSN Module\n
																																* Done Sync with no memory allocation\n 
																																* Parameter Number:	0x08	\n
																																* Module Number: RSN Module Number \n
																																* Async Bit: OFF	\n
																																* Allocate Bit: OFF	\n
																																* GET Bit: ON	\n
																																* SET Bit: ON	\n
																																*/
    RSN_DEFAULT_KEY_ID								=	SET_BIT | GET_BIT | RSN_MODULE_PARAM | 0x09,							/**< Robust Security NW (RSN) Defualt Key ID Parameter (RSN Module Set/Get Command): \n  
																																* Used for getting RSN defualt Key ID from RSN Module or setting RSN defualt Key ID to FW and RSN Module\n
																																* Done Sync with no memory allocation\n 
																																* Parameter Number:	0x09	\n
																																* Module Number: RSN Module Number \n
																																* Async Bit: OFF	\n
																																* Allocate Bit: OFF	\n
																																* GET Bit: ON	\n
																																* SET Bit: ON	\n
																																*/
	RSN_XCC_NETWORK_EAP								=	SET_BIT | GET_BIT | RSN_MODULE_PARAM | 0x0A,							/**< Robust Security NW (RSN) XCC NW EAP Parameter (RSN Module Set/Get Command): \n  
                                                                                                                                * Used for setting/getting RSN XCC NW EAP to/from RSN Module\n
                                                                                                                                * Done Sync with no memory allocation\n 
                                                                                                                                * Parameter Number:	0x0B	\n
                                                                                                                                * Module Number: RSN Module Number \n
                                                                                                                                * Async Bit: OFF	\n
                                                                                                                                * Allocate Bit: OFF	\n
                                                                                                                                * GET Bit: ON	\n
                                                                                                                                * SET Bit: ON	\n
                                                                                                                                */

    RSN_SET_KEY_PARAM								=	SET_BIT | RSN_MODULE_PARAM | 0x0B,							            /**< Robust Security NW (RSN) Set Key Parameter (RSN Module Set/Get Command): \n  
                                                                                                                                * Used for setting Keys during external RSN mode to RSN Module\n
                                                                                                                                * Done Sync with no memory allocation\n 
                                                                                                                                * Parameter Number:	0x0B	\n
                                                                                                                                * Module Number: RSN Module Number \n
                                                                                                                                * Async Bit: OFF	\n
                                                                                                                                * Allocate Bit: OFF	\n
                                                                                                                                * GET Bit: ON	\n
                                                                                                                                * SET Bit: ON	\n
                                                                                                                                */


	/* TWD Control section */
    TWD_RTS_THRESHOLD_PARAM                			=   SET_BIT | GET_BIT | TWD_MODULE_PARAM | TWD_RTS_THRESHOLD_PARAM_ID,		/**< TWD Control RTS Threshold Parameter (TWD Control Module Set/Get Command): \n  
																																* Used for getting RTS Threshold from TWD Control Module or setting RTS Threshold to FW and TWD Control Module\n
																																* Done Sync with no memory allocation\n 
																																* Parameter Number:	TWD_RTS_THRESHOLD_PARAM_ID	\n
																																* Module Number: TWD Control Module Number \n
																																* Async Bit: OFF	\n
																																* Allocate Bit: OFF	\n
																																* GET Bit: ON	\n
																																* SET Bit: ON	\n
																																*/
    TWD_FRAG_THRESHOLD_PARAM               			=   SET_BIT | GET_BIT | TWD_MODULE_PARAM | TWD_FRAG_THRESHOLD_PARAM_ID,		/**< TWD Control Fragmentation Threshold Parameter (TWD Control Module Set/Get Command): \n  
																																* Used for getting Fragmentation Threshold from TWD Control Module or setting Fragmentation Threshold to FW and TWD Control Module\n
																																* Done Sync with no memory allocation\n 
																																* Parameter Number:	TWD_FRAG_THRESHOLD_PARAM_ID	\n
																																* Module Number: TWD Control Module Number \n
																																* Async Bit: OFF	\n
																																* Allocate Bit: OFF	\n
																																* GET Bit: ON	\n
																																* SET Bit: ON	\n
																																*/
    TWD_RSSI_LEVEL_PARAM							=			  GET_BIT | TWD_MODULE_PARAM | TWD_RSSI_LEVEL_PARAM_ID 			| ASYNC_PARAM,	/**< TWD Control RSSI Level Parameter (TWD Control Module Get Command): \n  
																																				* Used for getting RSSI Level From FW\n
																																				* Done Async with no memory allocation\n 
																																				* Parameter Number:	TWD_RSSI_LEVEL_PARAM_ID	\n
																																				* Module Number: TWD Control Module Number \n
																																				* Async Bit: ON	\n
																																				* Allocate Bit: OFF	\n
																																				* GET Bit: ON	\n
																																				* SET Bit: OFF	\n
																																				*/
    TWD_SNR_RATIO_PARAM                    			=			  GET_BIT | TWD_MODULE_PARAM | TWD_SNR_RATIO_PARAM_ID			| ASYNC_PARAM,	/**< TWD Control SNR Radio Parameter (TWD Control Module Get Command): \n  
																																				* Used for getting SNR Radio From FW (same outcome as TWD_RSSI_LEVEL_PARAM)\n
																																				* Done Async with no memory allocation\n 
																																				* Parameter Number:	TWD_SNR_RATIO_PARAM_ID	\n
																																				* Module Number: TWD Control Module Number \n
																																				* Async Bit: ON	\n
																																				* Allocate Bit: OFF	\n
																																				* GET Bit: ON	\n
																																				* SET Bit: OFF	\n
																																				*/

	/*for BIP/PLT/Radio Debug Tests --> supports Set + GET*/
	TWD_RADIO_TEST_PARAM               						=   SET_BIT | GET_BIT | TWD_MODULE_PARAM | TWD_RADIO_TEST_PARAM_ID 	| ASYNC_PARAM,	/**< TWD Control SNR Radio Parameter (TWD Control Module Set/Get Command): \n  
																																				* Used for performing BIP/PLT/Radio Debug Tests\n
																																				* Done Async with no memory allocation\n 
																																				* Parameter Number:	TWD_RADIO_TEST_PARAM_ID	\n
																																				* Module Number: TWD Control Module Number \n
																																				* Async Bit: ON	\n
																																				* Allocate Bit: OFF	\n
																																				* GET Bit: ON	\n
																																				* SET Bit: ON	\n
																																				*/

	TWD_FM_COEX_PARAM               						=   SET_BIT |    TWD_MODULE_PARAM | TWD_FM_COEX_PARAM_ID,	                        /**< TWD Control FM-Coexistence Parameters (TWD Control Module Set/Get Command): \n  
																																				* Used for setting the FM-Coexistence Parameters\n
																																				* Done Async with no memory allocation\n 
																																				* Parameter Number:	TWD_FM_COEX_PARAM_ID	\n
																																				* Module Number: TWD Control Module Number \n
																																				* Async Bit: ON	\n
																																				* Allocate Bit: OFF	\n
																																				* GET Bit: OFF	\n
																																				* SET Bit: ON	\n
																																				*/

	/* Roaming manager */
    ROAMING_MNGR_APPLICATION_CONFIGURATION		= 	SET_BIT | GET_BIT | ROAMING_MANAGER_MODULE_PARAM | 0x01,	/**< Roaming Manager Application Configuration Parameter (Roaming Manager Module Set/Get Command): \n  
																												* Used for setting/getting Roaming Manager Application Configuration to/from Roaming Manager Module and State-Machine\n
																												* Done Sync with no memory allocation\n 
																												* Parameter Number:	0x01	\n
																												* Module Number: Roaming Manager Module Number \n
																												* Async Bit: OFF	\n
																												* Allocate Bit: OFF	\n
																												* GET Bit: ON	\n
																												* SET Bit: ON	\n
																												*/
    ROAMING_MNGR_USER_DEFINED_TRIGGER     		= 	SET_BIT |           ROAMING_MANAGER_MODULE_PARAM | 0x02,	/**< Roaming Manager User Defined Trigger Parameter (Roaming Manager Module Set Command): \n  
																												* Used for setting user-defined trigger to FW\n
																												* Done Sync with no memory allocation\n 
																												* Parameter Number:	0x02	\n
																												* Module Number: Roaming Manager Module Number \n
																												* Async Bit: OFF	\n
																												* Allocate Bit: OFF	\n
																												* GET Bit: OFF	\n
																												* SET Bit: ON	\n
																												*/

	/* QOS manager params */
    QOS_MNGR_SET_OS_PARAMS						=	SET_BIT |           QOS_MANAGER_PARAM | 0x10,	/**< QoS Manager Set OS Parameter (QoS Module Set Command): \n  
																									* Used for setting Quality Of Service Manager's Parameters\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x10	\n
																									* Module Number: QoS Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: OFF	\n
																									* SET Bit: ON	\n
																									*/
    QOS_MNGR_AP_QOS_PARAMETERS					=			  GET_BIT | QOS_MANAGER_PARAM | 0x11,	/**< QoS Manager AP QoS Parameter (QoS Module Get Command): \n  
																									* Used for getting current AP QoS Parameters from QoS Module\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x11	\n
																									* Module Number: QoS Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: ON	\n
																									* SET Bit: OFF	\n
																									*/
    QOS_MNGR_OS_TSPEC_PARAMS					=             GET_BIT | QOS_MANAGER_PARAM | 0x12,	/**< QoS Manager OS TSPEC Parameter (QoS Module Get Command): \n  
																									* Used for getting current OS 802.11 QoS TSPEC Parameters from QoS Module\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x12	\n
																									* Module Number: QoS Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: ON	\n
																									* SET Bit: OFF	\n
																									*/
    QOS_MNGR_AC_STATUS							=	SET_BIT | GET_BIT | QOS_MANAGER_PARAM | 0x13,	/**< QoS Manager AC Status Parameter (QoS Module Set/Get Command): \n  
																									* Used for setting/getting SC Status\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x13	\n
																									* Module Number: QoS Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: ON	\n
																									* SET Bit: ON	\n
																									*/
    QOS_MNGR_ADD_TSPEC_REQUEST					=	SET_BIT | 			QOS_MANAGER_PARAM | 0x14,	/**< QoS Manager Add TSPEC Request Parameter (QoS Module Set Command): \n  
																									* Used for setting TSPEC Parameters to QoS Module\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x14	\n
																									* Module Number: QoS Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: OFF	\n
																									* SET Bit: ON	\n
																									*/
	QOS_MNGR_DEL_TSPEC_REQUEST					=	SET_BIT           | QOS_MANAGER_PARAM | 0x15,	/**< QoS Manager Delete TSPEC Request Parameter (QoS Module Set Command): \n  
																									* Used for deleting TSPEC Parameters from QoS Module\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x15	\n
																									* Module Number: QoS Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: OFF	\n
																									* SET Bit: ON	\n
																									*/
	QOS_MNGR_GET_DESIRED_PS_MODE				=             GET_BIT | QOS_MANAGER_PARAM | 0x17,	/**< QoS Manager Get Desired Power-Save Mode Parameter (QoS Module Get Command): \n  
																									* Used for getting the current desired Power-Save Mode from QoS Module\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x17	\n
																									* Module Number: QoS Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: ON	\n
																									* SET Bit: OFF	\n
																									*/
    QOS_SET_RX_TIME_OUT							=	SET_BIT |			QOS_MANAGER_PARAM | 0x18, 	/**< QoS Manager Get Desired Power-Save Mode Parameter (QoS Module Set Command): \n  
																									* Used for setting RX Time Out (PS poll and UPSD) to FW and in QoS Module\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x18	\n
																									* Module Number: QoS Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: OFF	\n
																									* SET Bit: ON	\n
																									*/
    QOS_MNGR_PS_RX_STREAMING					=	SET_BIT | GET_BIT | QOS_MANAGER_PARAM | 0x19,	/**< QoS Manager Set Power-Save RX Streaming Parameter (QoS Module Set/Get Command): \n  
																									* Used for getting Power-Save RX Streaming or setting Power-Save RX Streaming to FW and in QoS Module\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x19	\n
																									* Module Number: QoS Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: ON	\n
																									* SET Bit: ON	\n
																									*/

    /* Soft Gemini params */
	SOFT_GEMINI_SET_ENABLE						=	SET_BIT |           SOFT_GEMINI_PARAM	| 0x01,	/**< Soft Gimini Parameters Set Enable Parameter (Soft Gimini Parameters Module Set Command): \n  
																									* Used for configuring Soft Gimini enable Mode (Enable|Disable|Auto) in FW\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x01	\n
																									* Module Number: Soft Gimini Parameters Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: OFF	\n
																									* SET Bit: ON	\n
																									*/
    SOFT_GEMINI_SET_CONFIG						=	SET_BIT |           SOFT_GEMINI_PARAM   | 0x03,	/**< Soft Gimini Parameters Set Configuration Parameter (Soft Gimini Parameters Module Set Command): \n  
																									* Used for setting Soft Gimini Configuration to FW\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x03	\n
																									* Module Number: Soft Gimini Parameters Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: OFF	\n
																									* SET Bit: ON	\n
																									*/
    SOFT_GEMINI_GET_CONFIG                      =	GET_BIT |           SOFT_GEMINI_PARAM   | 0x04,	/**< Soft Gimini Parameters Get Configuration Parameter (Soft Gimini Parameters Module Get Command): \n  
																									* Used for getting Soft Gimini Configuration\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x04	\n
																									* Module Number: Soft Gimini Parameters Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: ON	\n
																									* SET Bit: OFF	\n
																									*/

	/* REPORT section */
	REPORT_MODULE_TABLE_PARAM                   =	SET_BIT | GET_BIT | REPORT_MODULE_PARAM | 0x01,	/**< Report Module Table Parameter (Report Module Set/Get Command): \n  
																									* Used for setting/getting Report Module Table (Tble of all Logged Modules)\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x01	\n
																									* Module Number: Report Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: ON	\n
																									* SET Bit: ON	\n
																									*/
	REPORT_SEVERITY_TABLE_PARAM                 =	SET_BIT | GET_BIT | REPORT_MODULE_PARAM | 0x02,	/**< Report Severity Table Parameter (Report Module Set/Get Command): \n  
																									* Used for setting/getting the Severity Table (holds availble severity Levels of the event which is reported to user)\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x02	\n
																									* Module Number: Report Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: ON	\n
																									* SET Bit: ON	\n
																									*/
    REPORT_MODULE_ON_PARAM                      =   SET_BIT | GET_BIT | REPORT_MODULE_PARAM | 0x03,	/**< Report Module ON Parameter (Report Module Set/Get Command): \n  
																									* Used for setting (Enable) ceratin Logged Module in Report Modules Table or getting the Reported Module Status from Table (Enabled/Disabled)\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x03	\n
																									* Module Number: Report Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: ON	\n
																									* SET Bit: ON	\n
																									*/
    REPORT_MODULE_OFF_PARAM                     =   SET_BIT | GET_BIT | REPORT_MODULE_PARAM | 0x04,	/**< Report Module OFF Parameter (Report Module Set/Get Command): \n  
																									* Used for setting (Disable) ceratin Logged Module in Report Modules Table or getting the Reported Module Status from Table (Enabled/Disabled)\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x04	\n
																									* Module Number: Report Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: ON	\n
																									* SET Bit: ON	\n
																									*/
    REPORT_PPMODE_VALUE_PARAM                   =   SET_BIT | GET_BIT | REPORT_MODULE_PARAM | 0x05,	/**< Report PP MODE Value Parameter (Report Module Set/Get Command): \n  
																									* Used for setting (Enable/Disable) or Getting the Debug Mode flag, which indicates whether debug module should be used or not\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x05	\n
																									* Module Number: Report Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: ON	\n
																									* SET Bit: ON	\n
																									*/
	REPORT_OUTPUT_TO_LOGGER_ON                  =   SET_BIT | GET_BIT | REPORT_MODULE_PARAM | 0x06,	/**< Report output ON Parameter (Report Module Set/Get Command): \n  
																									* Used for setting the output of logs to the logger application\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x04	\n
																									* Module Number: Report Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: ON	\n
																									* SET Bit: ON	\n
																									*/

	REPORT_OUTPUT_TO_LOGGER_OFF                  =   SET_BIT | GET_BIT | REPORT_MODULE_PARAM | 0x07,/**< Report output OFF Parameter (Report Module Set/Get Command): \n  
																									* Used for setting OFF the output of logs to the logger application\n
																									* Done Sync with no memory allocation\n 
																									* Parameter Number:	0x04	\n
																									* Module Number: Report Module Number \n
																									* Async Bit: OFF	\n
																									* Allocate Bit: OFF	\n
																									* GET Bit: ON	\n
																									* SET Bit: ON	\n
																									*/


	/* TX data section */
    TX_CTRL_COUNTERS_PARAM						=			  GET_BIT | TX_CTRL_MODULE_PARAM | 0x01 | ALLOC_NEEDED_PARAM,	/**< TX Control Counters Parameter (TX Control Module Get Command): \n  
																															* Used for getting TX statistics per Tx-queue\n
																															* Done Sync with memory allocation\n 
																															* Parameter Number:	0x01	\n
																															* Module Number: TX Control Module Number \n
																															* Async Bit: OFF	\n
																															* Allocate Bit: ON	\n
																															* GET Bit: ON	\n
																															* SET Bit: OFF	\n
																															*/
    TX_CTRL_RESET_COUNTERS_PARAM                =	SET_BIT 		  | TX_CTRL_MODULE_PARAM | 0x02,						/**< TX Control Reset Counters Parameter (TX Control Module Set Command): \n  
																															* Used for Reset all TX statistics per Tx-queue\n
																															* Done Sync with no memory allocation\n 
																															* Parameter Number:	0x02	\n
																															* Module Number: TX Control Module Number \n
																															* Async Bit: OFF	\n
																															* Allocate Bit: OFF	\n
																															* GET Bit: OFF	\n
																															* SET Bit: ON	\n
																															*/
    TX_CTRL_SET_MEDIUM_USAGE_THRESHOLD			=	SET_BIT           | TX_CTRL_MODULE_PARAM | 0x03,						/**< TX Control Set Medum Usage Threshold Parameter (TX Control Module Set Command): \n  
																															* Used for setting Medum Usage Threshold of AC\n
																															* Done Sync with no memory allocation\n 
																															* Parameter Number:	0x03	\n
																															* Module Number: TX Control Module Number \n
																															* Async Bit: OFF	\n
																															* Allocate Bit: OFF	\n
																															* GET Bit: OFF	\n
																															* SET Bit: ON	\n
																															*/

    /* RX data section */
    RX_DATA_ENABLE_DISABLE_RX_DATA_FILTERS     	=   SET_BIT | GET_BIT | RX_DATA_MODULE_PARAM | 0x04,						/**< RX Data Enable/Disable Filters Parameter (RX Data Module Set/Get Command): \n  
																															* Used for Enabling/Disabling Filters in FW or getting the  Filters Enabling/Disabling current Status\n
																															* Done Sync with no memory allocation\n 
																															* Parameter Number:	0x04	\n
																															* Module Number: RX Data Module Number \n
																															* Async Bit: OFF	\n
																															* Allocate Bit: OFF	\n
																															* GET Bit: ON	\n
																															* SET Bit: ON	\n
																															*/
    RX_DATA_ADD_RX_DATA_FILTER                 	=   SET_BIT           | RX_DATA_MODULE_PARAM | 0x05,						/**< RX Data Add Filter Parameter (RX Data Module Set Command): \n  
																															* Used for adding RX Data Filter to FW\n
																															* Done Sync with no memory allocation\n 
																															* Parameter Number:	0x05	\n
																															* Module Number: RX Data Module Number \n
																															* Async Bit: OFF	\n
																															* Allocate Bit: OFF	\n
																															* GET Bit: OFF	\n
																															* SET Bit: ON	\n
																															*/
    RX_DATA_REMOVE_RX_DATA_FILTER              	=   SET_BIT           | RX_DATA_MODULE_PARAM | 0x06,						/**< RX Data Remove Filter Parameter (RX Data Module Set Command): \n  
																															* Used for removing RX Data Filter from FW\n
																															* Done Sync with no memory allocation\n 
																															* Parameter Number:	0x06	\n
																															* Module Number: RX Data Module Number \n
																															* Async Bit: OFF	\n
																															* Allocate Bit: OFF	\n
																															* GET Bit: OFF	\n
																															* SET Bit: ON	\n
																															*/
    RX_DATA_GET_RX_DATA_FILTERS_STATISTICS     	=             GET_BIT | RX_DATA_MODULE_PARAM | 0x07 | ASYNC_PARAM,			/**< RX Data Get RX Data Filter Statistics Parameter (RX Data Module Get Command): \n  
																															* Used for getting RX Data Filter Statistics from FW\n
																															* Done Async with no memory allocation\n 
																															* Parameter Number:	0x07	\n
																															* Module Number: RX Data Module Number \n
																															* Async Bit: ON	\n
																															* Allocate Bit: OFF	\n
																															* GET Bit: ON	\n
																															* SET Bit: OFF	\n
																															*/
    

	/* measurement section */
    MEASUREMENT_ENABLE_DISABLE_PARAM			=	SET_BIT |           MEASUREMENT_MODULE_PARAM | 0x01,	/**< Measurement Enable/Disable Parameter (Measurement Module Set Command): \n  
																											* Used for Enabling/Disabling Measurement Management Module\n
																											* Done Sync with no memory allocation\n 
																											* Parameter Number:	0x01	\n
																											* Module Number: Measurement Module Number \n
																											* Async Bit: OFF	\n
																											* Allocate Bit: OFF	\n
																											* GET Bit: OFF	\n
																											* SET Bit: ON	\n
																											*/
	MEASUREMENT_MAX_DURATION_PARAM				=	SET_BIT |           MEASUREMENT_MODULE_PARAM | 0x02,	/**< Measurement Maximum Duration Parameter (Measurement Module Set Command): \n  
																											* Used for updating the Maximum Duration on non serving channel\n
																											* Done Sync with no memory allocation\n 
																											* Parameter Number:	0x02	\n
																											* Module Number: Measurement Module Number \n
																											* Async Bit: OFF	\n
																											* Allocate Bit: OFF	\n
																											* GET Bit: OFF	\n
																											* SET Bit: ON	\n
																											*/

	/* XCC */    
    XCC_CONFIGURATION							=	SET_BIT | GET_BIT | XCC_MANAGER_MODULE_PARAM | 0x01,	/**< XCC Manager Configuration Parameter (XCC Manager Module Set/Get Command): \n  
																											* Used for setting or getting XCC configuration (RogueAP, CCKM, CKIP, All)\n
																											* Done Sync with no memory allocation\n 
																											* Parameter Number:	0x01	\n
																											* Module Number: XCC Manager Module Number \n
																											* Async Bit: OFF	\n
																											* Allocate Bit: OFF	\n
																											* GET Bit: ON	\n
																											* SET Bit: ON	\n
																											*/

	/* MISC section */
	DEBUG_ACTIVATE_FUNCTION						=	SET_BIT | 			MISC_MODULE_PARAM | 0x03,		 	/**< Debug Activate Function Parameter (MISC Module Set Command): \n  
																											* Used for performing debug function\n
																											* Done Sync with no memory allocation\n 
																											* Parameter Number:	0x03	\n
																											* Module Number: MISC Module Number \n
																											* Async Bit: OFF	\n
																											* Allocate Bit: OFF	\n
																											* GET Bit: OFF	\n
																											* SET Bit: ON	\n
																											*/ 

	/* Health Monitoring section */
    HEALTH_MONITOR_CHECK_DEVICE                 =   SET_BIT |           HEALTH_MONITOR_MODULE_PARAM | 0x01,	/**< Health Monitoring Check Device Parameter (Health Monitoring Module Set Command): \n  
																											* Used for sending health check command to FW\n
																											* Done Sync with no memory allocation\n 
																											* Parameter Number:	0x01	\n
																											* Module Number: Health Monitoring Module Number \n
																											* Async Bit: OFF	\n
																											* Allocate Bit: OFF	\n
																											* GET Bit: OFF	\n
																											* SET Bit: ON	\n
																											*/

	/* TWD CoexActivity table */
    TWD_COEX_ACTIVITY_PARAM                			=   SET_BIT | TWD_MODULE_PARAM | TWD_COEX_ACTIVITY_PARAM_ID,		/**< TWD Control CoexActivity Parameter (TWD Control Module Set/Get Command): \n  
																																* Used for getting RTS Threshold from TWD Control Module or setting RTS Threshold to FW and TWD Control Module\n
																																* Done Sync with no memory allocation\n 
																																* Parameter Number:	TWD_COEX_ACTIVITY_PARAM_ID	\n
																																* Module Number: TWD Control Module Number \n
																																* Async Bit: OFF	\n
																																* Allocate Bit: OFF	\n
																																* GET Bit: OFF	\n
																																* SET Bit: ON	\n
																																*/

    /* CurrBss Section */
    CURR_BSS_REGISTER_LINK_QUALITY_EVENT_PARAM     =   SET_BIT | CURR_BSS_MODULE_PARAM | 0x01,	 /**< CurrBss User Defined Trigger Parameter (Roaming Manager Module Set Command): \n  
                                                                                                    * Used for setting user-defined trigger to FW\n
                                                                                                    * Done Sync with no memory allocation\n 
                                                                                                    * Parameter Number:	0x01	\n
                                                                                                    * Module Number: Curr Bss Module Number \n
                                                                                                    * Async Bit: OFF	\n
                                                                                                    * Allocate Bit: OFF	\n
                                                                                                    * GET Bit: OFF	\n
                                                                                                    * SET Bit: ON	\n
                                                                                                    */

	LAST_CMD									=	0x00	/**< Last External Parameter - Dummy, Should always stay Last	*/													

}   EExternalParam;

/* functions */
/*************/

#endif  /* _CMD_INTERFACE_CODES_H_ */