| 1234567891011121314151617 |
- /*
- * Copyright (c) 2025, sakumisu
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #ifndef EC_CMD_H
- #define EC_CMD_H
- typedef struct ec_master ec_master_t;
- void ec_master_cmd_init(ec_master_t *master);
- #ifdef CONFIG_EC_EOE
- void ec_master_cmd_eoe_init(ec_eoe_t *master);
- #endif
- int ethercat(int argc, const char **argv);
- #endif
|