wifi.h 469 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (c) 2018 Texas Instruments, Incorporated
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief General WiFi Definitions
  9. */
  10. #ifndef ZEPHYR_INCLUDE_NET_WIFI_H_
  11. #define ZEPHYR_INCLUDE_NET_WIFI_H_
  12. enum wifi_security_type {
  13. WIFI_SECURITY_TYPE_NONE = 0,
  14. WIFI_SECURITY_TYPE_PSK,
  15. };
  16. #define WIFI_SSID_MAX_LEN 32
  17. #define WIFI_PSK_MAX_LEN 64
  18. #define WIFI_CHANNEL_MAX 14
  19. #define WIFI_CHANNEL_ANY 255
  20. #endif /* ZEPHYR_INCLUDE_NET_WIFI_H_ */