Andreas Fritiofson <andreas.fritiofson@gmail.com> UTF8 fixes
[fw/openocd] / src / jtag / minidummy / jtag_minidriver.h
1 /***************************************************************************
2  *   Copyright (C) 2007-2008 by Ã˜yvind Harboe                              *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18  ***************************************************************************/
19
20
21
22
23 static __inline__ void interface_jtag_add_dr_out_core(jtag_tap_t *target_tap,
24                 int num_fields,
25                 const int *num_bits,
26                 const uint32_t *value,
27                 enum tap_state end_state)
28 {
29         /* synchronously do the operation here */
30 }
31
32 static __inline__ void interface_jtag_add_dr_out(jtag_tap_t *target_tap,
33                 int num_fields,
34                 const int *num_bits,
35                 const uint32_t *value,
36                 enum tap_state end_state)
37 {
38         /* synchronously do the operation here */
39 }
40
41 #define interface_jtag_add_callback(callback, in) callback(in)
42
43 #define interface_jtag_add_callback4(callback, in, data1, data2, data3) jtag_set_error(callback(in, data1, data2, data3))