added filterForPacket method, as discussed with Hoder
[goodfet] / firmware / include / jtag430x2.h
1 /*! \file jtag430x2.h
2   \author Dave Huseby
3   \brief MSP430X2 JTAG (20-bit)
4 */
5
6 #ifndef JTAG430X2_H
7 #define JTAG430X2_H
8
9 #include "app.h"
10
11 #define JTAG430X2 0x11
12
13 extern app_t const jtag430x2_app;
14
15 //! Shift 20 bits of the DR.
16 uint32_t jtag430_dr_shift_20(uint32_t in);
17
18 #endif
19