iPXE
gdbserial.h
Go to the documentation of this file.
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 */
u8 port
Port number.
Definition: CIB_PRM.h:31
unsigned char uint8_t
Definition: stdint.h:10
struct gdb_transport * gdbserial_configure(unsigned int port, unsigned int baud, uint8_t lcr)
Definition: gdbserial.c:108
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
A transport mechanism for the GDB protocol.
Definition: gdbstub.h:20