]> git.sur5r.net Git - openocd/blob - src/target/target_request.h
added yours sincerely for files where I feel that I've made non-trivial contributions.
[openocd] / src / target / target_request.h
1 /***************************************************************************
2  *   Copyright (C) 2007 by Dominic Rath                                    *
3  *   Dominic.Rath@gmx.de                                                   *
4  *                                                                         *
5  *   Copyright (C) 2007,2008 Ã˜yvind Harboe                                      *
6  *   oyvind.harboe@zylin.com                                               *
7  *                                                                         *
8  *   This program is free software; you can redistribute it and/or modify  *
9  *   it under the terms of the GNU General Public License as published by  *
10  *   the Free Software Foundation; either version 2 of the License, or     *
11  *   (at your option) any later version.                                   *
12  *                                                                         *
13  *   This program is distributed in the hope that it will be useful,       *
14  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
16  *   GNU General Public License for more details.                          *
17  *                                                                         *
18  *   You should have received a copy of the GNU General Public License     *
19  *   along with this program; if not, write to the                         *
20  *   Free Software Foundation, Inc.,                                       *
21  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
22  ***************************************************************************/
23 #ifndef TARGET_REQUEST_H
24 #define TARGET_REQUEST_H
25
26 #include "command.h"
27
28 typedef enum target_req_cmd
29 {
30         TARGET_REQ_TRACEMSG,
31         TARGET_REQ_DEBUGMSG,
32         TARGET_REQ_DEBUGCHAR,
33 /*      TARGET_REQ_SEMIHOSTING, */
34 } target_req_cmd_t;
35
36 typedef struct debug_msg_receiver_s
37 {
38         command_context_t *cmd_ctx;
39         struct debug_msg_receiver_s *next;
40 } debug_msg_receiver_t;
41
42 extern int target_request(target_t *target, u32 request);
43 extern int delete_debug_msg_receiver(struct command_context_s *cmd_ctx, target_t *target);
44 extern int target_request_register_commands(struct command_context_s *cmd_ctx);
45
46 #endif /* TARGET_REQUEST_H */