esp_netif_lora/include/esp_netif_lora.h

16 lines
330 B
C
Raw Normal View History

2023-12-30 01:17:56 -05:00
#ifndef __ESP_NETIF_LORA_H__
#define __ESP_NETIF_LORA_H__
2023-12-30 00:08:35 -05:00
#include "esp_netif.h"
#include "esp32-lora.h"
typedef struct esp_netif_lora_config_t {
uint8_t mac[6];
esp_netif_ip_info_t ip_info;
lora32_cfg_t *lora;
} esp_netif_lora_config_t;
esp_err_t esp_netif_lora_init(esp_netif_lora_config_t *netif_lora_config);
#endif