1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:12:57 +01:00

cpu/esp_common: Add missing includes and ISO-C++ compatibility

This commit is contained in:
Jens Wetterich 2021-01-10 13:23:46 +01:00
parent f1367818ca
commit 450ede0da0
3 changed files with 10 additions and 5 deletions

View File

@ -65,7 +65,7 @@
static esp_now_netdev_t _esp_now_dev = { 0 };
static const netdev_driver_t _esp_now_driver;
static bool _esp_now_add_peer(const uint8_t* bssid, uint8_t channel, uint8_t* key)
static bool _esp_now_add_peer(const uint8_t* bssid, uint8_t channel, const uint8_t* key)
{
if (esp_now_is_peer_exist(bssid)) {
return false;

View File

@ -21,6 +21,11 @@
#define ESP_NOW_NETDEV_H
#include "net/netdev.h"
#include "mutex.h"
#include "net/ethernet/hdr.h"
#ifdef MODULE_GNRC
#include "net/gnrc/nettype.h"
#endif
#ifdef __cplusplus
extern "C" {

View File

@ -103,10 +103,10 @@
*/
typedef struct
{
uint8_t* key; /**< key of type uint8_t [16] or NULL (no encryption) */
uint32_t scan_period; /**< Period at which the node scans for other nodes */
char* softap_pass; /**< Passphrase used for the SoftAP interface */
uint8_t channel; /**< Channel used for ESP-NOW nodes */
const uint8_t* key; /**< key of type uint8_t [16] or NULL (no encryption) */
uint32_t scan_period; /**< Period at which the node scans for other nodes */
const char* softap_pass; /**< Passphrase used for the SoftAP interface */
uint8_t channel; /**< Channel used for ESP-NOW nodes */
} esp_now_params_t;