/** * 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