dcc.h 347 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2021, Xilinx Inc.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef DCC_H
  7. #define DCC_H
  8. #include <stdint.h>
  9. #include <drivers/console.h>
  10. /*
  11. * Initialize a new dcc console instance and register it with the console
  12. * framework.
  13. */
  14. int console_dcc_register(void);
  15. void console_dcc_unregister(void);
  16. #endif /* DCC */