~ubuntu-branches/ubuntu/quantal/avarice/quantal

« back to all changes in this revision

Viewing changes to src/jtag.h

  • Committer: Bazaar Package Importer
  • Author(s): Andres Rodriguez
  • Date: 2009-05-07 12:43:51 UTC
  • mfrom: (5.2.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090507124351-jnvbape2l4gmdl6g
Tags: 2.9-1.1ubuntu1
* Merge from debian unstable (LP: #372793), remaining changes:
  - debian/avarice.rules: Rename to debian/avarice.udev
  - debian/rules: Use dh_installudev to install udev rules
  - debian/install: Drop previous install rule
  - debian/links: Drop previous symlink
  - debian/preinst: Remove previous symlink and rules if unmodified, otherwise
    rename rules to new name
  - debian/control: Bump build-depend on debhelper to install udev rules into
    /lib/udev/rules.d, add Breaks on udev to get correct version
  - Newer bfd uses libz, so we need to link against that as well as bfd is linked
    statically. The static linking is done by simply changing src/Makefile.in

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 *
20
20
 * This file contains functions for interfacing with the GDB remote protocol.
21
21
 *
22
 
 * $Id: jtag.h,v 1.28 2008/06/12 20:21:44 joerg_wunsch Exp $
 
22
 * $Id: jtag.h,v 1.29 2008/09/29 20:52:20 joerg_wunsch Exp $
23
23
 */
24
24
 
25
25
#ifndef JTAG_H
155
155
 
156
156
    gdb_io_reg_def_type *io_reg_defs;
157
157
 
 
158
    bool is_xmega;                     // Device is an ATxmega part
 
159
 
158
160
    jtag1_device_desc_type dev_desc1;  // Device descriptor to download to
159
161
                                       // mkI device
160
162
    jtag2_device_desc_type dev_desc2;  // Device descriptor to download to
462
464
    EMULATOR_MODE_JTAG          = 0x01,
463
465
    EMULATOR_MODE_UNKNOWN       = 0x02,
464
466
    EMULATOR_MODE_SPI           = 0x03,
 
467
    EMULATOR_MODE_JTAG_XMEGA    = 0x05,
465
468
 
466
469
    PAR_IREG                    = 0x04,
467
470