First Ethernet activation
This commit is contained in:
24
esp32_device/main/ethernet.h
Normal file
24
esp32_device/main/ethernet.h
Normal file
@ -0,0 +1,24 @@
|
||||
/**
|
||||
* 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
|
Reference in New Issue
Block a user