turn ftdi driver into echo server
[goodfet] / firmware / include / openocd.h
1 /*! \file openocd.h
2   \author Dave Huseby <dave at linuxprogrammer.org>
3   \brief OpenOCD firmware
4 */
5
6 #ifndef OPENOCD_H
7 #define OPENOCD_H
8
9 #include "app.h"
10
11 // OpenOCD app number
12 #define OPENOCD 0x18
13
14 // OpenOCD app verbs
15 #define OPENOCD_RESET   0x80
16 #define OPENOCD_READ    0x81
17 #define OPENOCD_WRITE   0x82
18 #define OPENOCD_LED             0x83
19
20 extern app_t const openocd_app;
21
22 #endif