Skip to content

Commit

Permalink
add world wide country code for mxchip (#379)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Winter <[email protected]>
  • Loading branch information
ryanwinter authored Mar 1, 2023
1 parent 1dc7f70 commit 43260d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MXChip/AZ3166/app/wwd_networking.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

#define DHCP_WAIT_TIME_TICKS (30 * TX_TIMER_TICKS_PER_SECOND)

#define WIFI_COUNTRY WICED_COUNTRY_UNITED_STATES
#define WIFI_COUNTRY WICED_COUNTRY_WORLD_WIDE_XX

static UCHAR netx_ip_stack[NETX_IP_STACK_SIZE];
static UCHAR netx_tx_pool_stack[NETX_TX_POOL_SIZE];
Expand Down
3 changes: 2 additions & 1 deletion MXChip/AZ3166/lib/wiced_sdk/inc/wiced_sdk.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ typedef enum

typedef enum
{
WICED_COUNTRY_UNITED_STATES = MK_CNTRY('U', 'S', 0)
WICED_COUNTRY_UNITED_STATES = MK_CNTRY('U', 'S', 0),
WICED_COUNTRY_WORLD_WIDE_XX = MK_CNTRY('X', 'X', 0)
} wiced_country_code_t;

#define WEP_ENABLED 0x0001
Expand Down

0 comments on commit 43260d4

Please sign in to comment.