Specifications

EAP TYPE
This is the EAP type setting. A selection can be made from Prohibited, PEAP, and TLS.
KEY (WEP KEY, PRE SHARED KEY)
The encryption key (WEP KEY or PRESHARE KEY) can be set.
[Ex.] Setting to enable WEP. Set the WEP KEY to "01234567890123456789ABCDEF" (128 bit).
DWORD dwVal = P_AUTH_OPEN;
BHT_RF_SetParamInt (P_INT_AUTHENTICATE, &dwVal, sizeof(dwVal));
DWORD dwVal = P_ENCRYPT_WEP;
BHT_RF_SetParamInt (P_INT_ENCRYPTION, &dwVal, sizeof(dwVal));
DWORD dwVal = P_8021X_DISABLE;
BHT_RF_SetParamInt (P_INT_8021X, &dwVal, sizeof(dwVal));
BHT_RF_SetParamStr (P_STR_WEPKEY1,
TEXT(“01234567890123456789ABCDEF”),26);
Parameter List
Parameter Type R/W Parameter value Default
Power mode DW R/W
P_PWRSAVE_CAM
: High power
consumption
P_PWRSAVE_PSP
: Low power
consumption
P_PWRSAVE_PSP
Radio mode DW R/W
P_RADIOMODE_11A : 802.11a
P_RADIOMODE_11B : 802.11b
P_RADIOMODE_11B |
P_RADIOMODE_11G : 802.11b/g
P_RADIOMODE_11B
Authentication
method
DW R/W
P_AUTH_OPEN : Open
P_AUTH_SHARED : Shared
P_AUTH_WPA : WPA
P_AUTH_WPAPSK : WPA PSK
P_AUTH_WPA2 : WPA2
P_AUTH_WPA2PSK : WPA2 PSK
P_AUTH_OPEN
Encryption DW R/W
P_ENCRYPT_DISABLE : Prohibited
P_ENCRYPT_WEP : WEP
P_ENCRYPT_TKIP : TKIP
P_ENCRYPT_AES : AES
P_ENCRYPT_DISABLE
802.1x
Encryption
(EAP type)
DW R/W
P_8021X_DISABLE : Prohibited
P_8021X_PEAP : PEAP
P_8021X_TLS : TLS
P_8021X_DISABLE
Profile priority DW R/W 1 (high) to 16 (low) 1
Index Key DW R/W 1 to 4 1
WEP Key 1 WCS W
26-character hexadecimal notation
character string (128 bit)
10-character hexadecimal notation
character string (40 bit)
TEXT(“”)
Pre Shared Key WCS W
8 to 63-character ASCII character string
64-character hexadecimal notation
character string
TEXT(“”)
Version WCS R -
MAC address WCS R - TEXT("00.00.00.00.00.00")
Note that if you use BHT_RF_GetParamInt function for getting a value, the value preset by the
BHT_RF_SetParamInt function will be obtained.
35