25 lines
284 B
C
25 lines
284 B
C
|
/**
|
||
|
* 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
|