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