[文章]OpenHarmony轻量系统开发【9】WiFi之STA模式连接热点

阅读量0
0
5


摘要:本文简单介绍Hi3861WiFi操作,怎么连接到热点,查看IP,ping服务器等
适合群体:适用于润和Hi3861开发板
文中所有代码仓库:https://gitee.com/qidiyun/hihope-3861-smart-home-kit

9.1AT指令操作WiFi

我们可以使用AT指令进行Hi3861 WiFi操作,连接热点、ping服务器等。

但是很多时候,我们需要实现开机后自动连接到某个热点,光靠AT指令不行。
Hi3861 为我们提供了WiFi操作的相关API,方便我们编写代码,实现热点连接。

9.2 代码实现

先直接上代码和操作演示。
跟我们最早的hello world代码一样,在app下新增业务demo_wifi_sta,其中demo_wifi_sta.c为业务代码,BUILD.gn为编译脚本,具体规划目录结构如下:

其中BUILD.gn文件内容如下:
  1. static_library("demo_wifi_sta") {
  2.     sources = [
  3.         "demo_wifi_sta.c"
  4.     ]

  5.     include_dirs = [
  6.         "//utils/native/lite/include",
  7.         "//kernel/liteos_m/components/cmsis/2.0",
  8.         "//base/iot_hardware/peripheral/interfaces/kits",
  9.         "//device/soc/hisilicon/hi3861v100/hi3861_adapter/hals/communication/wifi_lite/wifiservice",
  10.         "//device/soc/hisilicon/hi3861v100/hi3861_adapter/kal",
  11.         "//device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include",
  12.     ]
  13. }
复制代码



hi_wifi_start_sta函数:设置WiFi参数、扫描热点
  1. int hi_wifi_start_sta(void)
  2. {
  3.     int ret;
  4.     char ifname[WIFI_IFNAME_MAX_SIZE + 1] = {0};
  5.     int len = sizeof(ifname);
  6.     const unsigned char wifi_vap_res_num = APP_INIT_VAP_NUM;
  7.     const unsigned char wifi_user_res_num = APP_INIT_USR_NUM;
  8.     unsigned int  num = WIFI_SCAN_AP_LIMIT;

  9.     //这里不需要重复进行WiFi init,因为系统启动后就自己会做WiFi init
  10. #if 0
  11.     printf("_______>>>>>>>>>> %s %d rn", __FILE__, __LINE__);
  12.     ret = hi_wifi_init(wifi_vap_res_num, wifi_user_res_num);
  13.     if (ret != HISI_OK) {
  14.         return -1;
  15.     }
  16. #endif
  17.     ret = hi_wifi_sta_start(ifname, &len);
  18.     if (ret != HISI_OK) {
  19.         return -1;
  20.     }

  21.     /* register call back function to receive wifi event, etc scan results event,
  22.      * connected event, disconnected event.
  23.      */
  24.     ret = hi_wifi_register_event_callback(wifi_wpa_event_cb);
  25.     if (ret != HISI_OK) {
  26.         printf("register wifi event callback failedn");
  27.     }

  28.     /* acquire netif for IP operation */
  29.     g_lwip_netif = netifapi_netif_find(ifname);
  30.     if (g_lwip_netif == NULL) {
  31.         printf("%s: get netif failedn", __FUNCTION__);
  32.         return -1;
  33.     }

  34.     /* 开始扫描附件的WiFi热点 */
  35.     ret = hi_wifi_sta_scan();
  36.     if (ret != HISI_OK) {
  37.         return -1;
  38.     }

  39.     sleep(5);   /* sleep 5s, waiting for scan result. */

  40.     hi_wifi_ap_info *pst_results = malloc(sizeof(hi_wifi_ap_info) * WIFI_SCAN_AP_LIMIT);
  41.     if (pst_results == NULL) {
  42.         return -1;
  43.     }

  44.     //把扫描到的热点结果存储起来
  45.     ret = hi_wifi_sta_scan_results(pst_results, &num);
  46.     if (ret != HISI_OK) {
  47.         free(pst_results);
  48.         return -1;
  49.     }

  50.     //打印扫描到的所有热点
  51.     for (unsigned int loop = 0; (loop < num) && (loop < WIFI_SCAN_AP_LIMIT); loop++) {
  52.         printf("SSID: %sn", pst_results[loop].ssid);
  53.     }
  54.     free(pst_results);

  55.     /* 开始接入热点 */
  56.     ret = hi_wifi_start_connect();
  57.     if (ret != 0) {
  58.         return -1;
  59.     }
  60.     return 0;
  61. }
复制代码



连接热点:
    1. int hi_wifi_start_connect(void)
    2. {
    3.     int ret;
    4.     errno_t rc;
    5.     hi_wifi_assoc_request assoc_req = {0};

    6.     /* copy SSID to assoc_req */
    7.     rc = memcpy_s(assoc_req.ssid, HI_WIFI_MAX_SSID_LEN + 1, "RedmiK40", 8); /* 9:ssid length */
    8.     if (rc != EOK) {
    9.         return -1;
    10.     }

    11.     //热点加密方式
    12.     assoc_req.auth = HI_WIFI_SECURITY_WPA2PSK;

    13.     /* 热点密码 */
    14.     memcpy(assoc_req.key, "07686582488", 11);

    15.     ret = hi_wifi_sta_connect(&assoc_req);
    16.     if (ret != HISI_OK) {
    17.         return -1;
    18.     }

    19.     return 0;
    20. }
    21. 热点连接结果回调函数

    22. void wifi_wpa_event_cb(const hi_wifi_event *hisi_event)
    23. {
    24.     if (hisi_event == NULL)
    25.         return;

    26.     switch (hisi_event->event) {
    27.         case HI_WIFI_EVT_SCAN_DONE:
    28.             printf("WiFi: Scan results availablen");
    29.             break;
    30.         case HI_WIFI_EVT_CONNECTED:
    31.             printf("WiFi: Connectedn");
    32.             netifapi_dhcp_start(g_lwip_netif);
    33.             break;
    34.         case HI_WIFI_EVT_DISCONNECTED:
    35.             printf("WiFi: Disconnectedn");
    36.             netifapi_dhcp_stop(g_lwip_netif);
    37.             hi_sta_reset_addr(g_lwip_netif);
    38.             break;
    39.         case HI_WIFI_EVT_WPS_TIMEOUT:
    40.             printf("WiFi: wps is timeoutn");
    41.             break;
    42.         default:
    43.             break;
    44.     }
    45. }
    复制代码


hi_sta_reset_addr:重新复位sta的地址、网关等参数。
  1. /* clear netif's ip, gateway and netmask */
  2. void hi_sta_reset_addr(struct netif *pst_lwip_netif)
  3. {
  4.     ip4_addr_t st_gw;
  5.     ip4_addr_t st_ipaddr;
  6.     ip4_addr_t st_netmask;

  7.     if (pst_lwip_netif == NULL) {
  8.         printf("hisi_reset_addr::Null param of netdevrn");
  9.         return;
  10.     }

  11.     IP4_ADDR(&st_gw, 0, 0, 0, 0);
  12.     IP4_ADDR(&st_ipaddr, 0, 0, 0, 0);
  13.     IP4_ADDR(&st_netmask, 0, 0, 0, 0);

  14.     netifapi_netif_set_addr(pst_lwip_netif, &st_ipaddr, &st_netmask, &st_gw);
  15. }
复制代码




9.3 WiFi相关API

Hi3861 提供了非常多的wifi相关API,主要文件是 hi_wifi_api.h
我们这里只列举最重要的几个API
(1)开启STAint hi_wifi_sta_start(char *ifname, int *len);
(2)停止STAint hi_wifi_sta_stop(void);
(3)扫描附件的热点int hi_wifi_sta_scan(void);
(4)连接热点int hi_wifi_sta_connect(hi_wifi_assoc_request *req);
其中hi_wifi_assoc_request *req 结构的定义如下:
  1. typedef struct {
  2.     char ssid[HI_WIFI_MAX_SSID_LEN + 1];    /**< SSID. CNcomment: SSID 只支持ASCII字符.CNend */
  3.     hi_wifi_auth_mode auth;                 /**< Authentication mode. CNcomment: 认证类型.CNend */
  4.     char key[HI_WIFI_MAX_KEY_LEN + 1];      /**< Secret key. CNcomment: 秘钥.CNend */
  5.     unsigned char bssid[HI_WIFI_MAC_LEN];   /**< BSSID. CNcomment: BSSID.CNend */
  6.     hi_wifi_pairwise pairwise;              /**< Encryption type. CNcomment: 加密方式,不需指定时置0.CNend */
  7. } hi_wifi_assoc_request;
复制代码


这里需要注意的是,通常加密方式是:HI_WIFI_SECURITY_WPA2PSK
例如我家的热点的连接方式的代码实现如下:
  1. int hi_wifi_start_connect(void)
  2. {
  3.     int ret;
  4.     errno_t rc;
  5.     hi_wifi_assoc_request assoc_req = {0};

  6.     /* copy SSID to assoc_req */
  7.     rc = memcpy_s(assoc_req.ssid, HI_WIFI_MAX_SSID_LEN + 1, "RedmiK40", 8); /* 9:ssid length */
  8.     if (rc != EOK) {
  9.         return -1;
  10.     }

  11.     //热点加密方式
  12.     assoc_req.auth = HI_WIFI_SECURITY_WPA2PSK;

  13.     /* 热点密码 */
  14.     memcpy(assoc_req.key, "07686582488", 11);

  15.     ret = hi_wifi_sta_connect(&assoc_req);
  16.     if (ret != HISI_OK) {
  17.         return -1;
  18.     }

  19.     return 0;
  20. }
复制代码




回帖

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容图片侵权或者其他问题,请联系本站作侵删。 侵权投诉
链接复制成功,分享给好友