blob: 50c2fce52ee1c8f90fd17e6459277ecea505df0a [file] [log] [blame]
/*
* Copyright (c) 2018 Texas Instruments, Incorporated
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file
* @brief General WiFi Definitions
*/
#ifndef __WIFI_H__
#define __WIFI_H__
enum wifi_security_type {
WIFI_SECURITY_TYPE_NONE = 0,
WIFI_SECURITY_TYPE_PSK,
};
#define WIFI_SSID_MAX_LEN 32
#define WIFI_PSK_MAX_LEN 64
#define WIFI_CHANNEL_MAX 14
#define WIFI_CHANNEL_ANY 255
#endif /* __WIFI_H__ */