Skip to content

Commit 43260d4

Browse files
authored
add world wide country code for mxchip (#379)
Signed-off-by: Ryan Winter <[email protected]>
1 parent 1dc7f70 commit 43260d4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

MXChip/AZ3166/app/wwd_networking.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#define DHCP_WAIT_TIME_TICKS (30 * TX_TIMER_TICKS_PER_SECOND)
2828

29-
#define WIFI_COUNTRY WICED_COUNTRY_UNITED_STATES
29+
#define WIFI_COUNTRY WICED_COUNTRY_WORLD_WIDE_XX
3030

3131
static UCHAR netx_ip_stack[NETX_IP_STACK_SIZE];
3232
static UCHAR netx_tx_pool_stack[NETX_TX_POOL_SIZE];

MXChip/AZ3166/lib/wiced_sdk/inc/wiced_sdk.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ typedef enum
8282

8383
typedef enum
8484
{
85-
WICED_COUNTRY_UNITED_STATES = MK_CNTRY('U', 'S', 0)
85+
WICED_COUNTRY_UNITED_STATES = MK_CNTRY('U', 'S', 0),
86+
WICED_COUNTRY_WORLD_WIDE_XX = MK_CNTRY('X', 'X', 0)
8687
} wiced_country_code_t;
8788

8889
#define WEP_ENABLED 0x0001

0 commit comments

Comments
 (0)