1 /* 2 * vim: filetype=c:tabstop=4:ai:expandtab 3 * SPDX-License-Identifier: ICU 4 * scspell-id: 4346714b-ebbf-11ed-9a36-80ee73e9b8e7 5 * 6 * --------------------------------------------------------------------------- 7 * 8 * Copyright (c) 2015-2016 Charles Anthony 9 * Copyright (c) 2026 Eric Swenson 10 * Copyright (c) 2026 Jeffrey H. Johnson 11 * Copyright (c) 2021-2026 The DPS8M Development Team 12 * 13 * This software is made available under the terms of the ICU License. 14 * See the LICENSE.md file at the top-level directory of this distribution. 15 * 16 * --------------------------------------------------------------------------- 17 */ 18 19 #if defined(WITH_NET_DEV) 20 extern DEVICE net_dev; 21 extern UNIT net_unit[N_NET_UNITS_MAX]; 22 void net_init(void); 23 void net_process_event(void); 24 iom_cmd_rc_t net_iom_cmd(uint iomUnitIdx, uint chan); 25 #endif /* if defined(WITH_NET_DEV) */