1 #ifndef _IPXE_GDBSERIAL_H
2 #define _IPXE_GDBSERIAL_H
3 
4 /** @file
5  *
6  * GDB remote debugging over serial
7  *
8  */
9 
10 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11 
12 #include <stdint.h>
13 
14 struct gdb_transport;
15 
16 extern struct gdb_transport * gdbserial_configure ( unsigned int port,
17 						    unsigned int baud,
18 						    uint8_t lcr );
19 
20 #endif /* _IPXE_GDBSERIAL_H */
21