ec_cmd.h 327 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) 2025, sakumisu
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef EC_CMD_H
  7. #define EC_CMD_H
  8. typedef struct ec_master ec_master_t;
  9. void ec_master_cmd_init(ec_master_t *master);
  10. #ifdef CONFIG_EC_EOE
  11. void ec_master_cmd_eoe_init(ec_eoe_t *master);
  12. #endif
  13. int ethercat(int argc, const char **argv);
  14. #endif