Created
February 16, 2020 16:40
-
-
Save nliviu/08a3c9bb47fdc4c79a19f2b94658aa5b to your computer and use it in GitHub Desktop.
wifi_common.h
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#ifdef __cplusplus | |
extern "C" { | |
#endif | |
struct wifi_info { | |
int8_t rssi; | |
uint8_t channel; | |
}; | |
const struct wifi_info *get_wifi_info(); | |
#ifdef __cplusplus | |
} | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment