mirror of
https://github.com/espressif/esp-idf
synced 2025-03-24 16:39:12 -04:00
14 lines
164 B
C
14 lines
164 B
C
|
#pragma once
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
// Register WiFi functions
|
||
|
void register_wifi(void);
|
||
|
void initialise_wifi(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|