mirror of
https://git.code.sf.net/p/openocd/code
synced 2024-11-22 16:36:25 +00:00
a126229dff
Replace the GPLv2-or-later boilerplate with the SPDX tag. The SPDX tag on files *.c is incorrect, as it should use the C99 single line comment using '//'. But current checkpatch doesn't allow C99 comments, so keep using standard C comments, by now. Change-Id: I380d552940f1c405309a3346454251c0e80b5a45 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/7159 Tested-by: jenkins
19 lines
546 B
C
19 lines
546 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/***************************************************************************
|
|
* Copyright (C) 2007 by Pavel Chromy *
|
|
* chromy@asix.cz *
|
|
***************************************************************************/
|
|
#ifndef dccH
|
|
#define dccH
|
|
|
|
#include "platform.h"
|
|
|
|
/* debug channel read (debugger->MCU) */
|
|
uint32 dcc_rd(void);
|
|
|
|
/* debug channel write (MCU->debugger) */
|
|
int dcc_wr(uint32 data);
|
|
|
|
#endif
|