15 lines
298 B
C
15 lines
298 B
C
|
#ifndef __ESP_NETIF_NOW_H__
|
||
|
#define __ESP_NETIF_NOW_H__
|
||
|
|
||
|
#include "esp_netif.h"
|
||
|
#include "esp_now.h"
|
||
|
|
||
|
typedef struct esp_netif_now_config_t {
|
||
|
uint8_t mac[6];
|
||
|
esp_netif_ip_info_t ip_info;
|
||
|
} esp_netif_now_config_t;
|
||
|
|
||
|
esp_err_t esp_netif_now_init(esp_netif_now_config_t *netif_now_config);
|
||
|
|
||
|
#endif
|