You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
312 B
19 lines
312 B
/*
|
|
* Copyright (c) 2021, Xilinx Inc.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef DCC_H
|
|
#define DCC_H
|
|
|
|
#include <stdint.h>
|
|
#include <drivers/console.h>
|
|
|
|
/*
|
|
* Initialize a new dcc console instance and register it with the console
|
|
* framework.
|
|
*/
|
|
int console_dcc_register(void);
|
|
|
|
#endif /* DCC */
|
|
|