-
-
Save gadget-man/ab96e9a45901080665cac137a8f2cff3 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