SolarEnergy/esp32_device/main/ethernet.h

25 lines
284 B
C
Raw Normal View History

2024-08-17 15:19:47 +00:00
/**
* Unsecure API functions
*/
#pragma once
#ifdef __cplusplus
extern "C"
{
#endif
/**
* Initialize Ethernet connection
*/
void ethernet_init();
/**
* De-initialize Ethernet connection
*/
void ethernet_deinit();
#ifdef __cplusplus
}
#endif