forked from auracaster/openocd
To simplify the ipdbg start/stop command and be able to add additional commands in the future, we introduce the concept of a hub which has to be created before a ipdbg server can be started. The hub was created on the fly in previous versions. Change-Id: I55f317542d01a7324990b2cacd496a41fa5ff875 Signed-off-by: Daniel Anselmi <danselmi@gmx.ch> Reviewed-on: https://review.openocd.org/c/openocd/+/7979 Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com> Tested-by: jenkins
13 lines
327 B
C
13 lines
327 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/* Copyright (C) 2020 by Daniel Anselmi <danselmi@gmx.ch> */
|
|
|
|
#ifndef OPENOCD_IPDBG_IPDBG_H
|
|
#define OPENOCD_IPDBG_IPDBG_H
|
|
|
|
#include <helper/command.h>
|
|
|
|
int ipdbg_register_commands(struct command_context *cmd_ctx);
|
|
int ipdbg_server_free(void);
|
|
|
|
#endif /* OPENOCD_IPDBG_IPDBG_H */
|