mt_boot.h 371 B

123456789101112131415161718
  1. #ifndef __MT_BOOT_H__
  2. #define __MT_BOOT_H__
  3. #include <mt_boot_common.h>
  4. #include <mt_boot_reason.h>
  5. #include <mt_chip.h>
  6. /*META COM port type*/
  7. enum meta_com_type {
  8. META_UNKNOWN_COM = 0,
  9. META_UART_COM,
  10. META_USB_COM
  11. };
  12. extern enum meta_com_type get_meta_com_type(void);
  13. extern unsigned int get_meta_com_id(void);
  14. extern unsigned int get_meta_uart_port(void);
  15. #endif