#include <iostream>#include <assert.h>#include <stdio.h>#include <string.h>#include <errno.h>#include <unistd.h>#include <fcntl.h>#include <time.h>#include <signal.h>#include "avrmalloc.h"#include "avrerror.h"#include "types.h"#include "global.h"#include "breakpoint.h"#include "systemclock.h"#include "avrdevice.h"#include "avrdevice_impl.h"#include "gdb.h"#include "config.h"#include <sys/socket.h>#include <sys/types.h>#include <netinet/in.h>#include <netinet/tcp.h>#include <arpa/inet.h>#include <vector>#include "simulationmember.h"

Go to the source code of this file.
Enumerations | |
| enum | { MAX_READ_RETRY = 50, MEM_SPACE_MASK = 0x00ff0000, FLASH_OFFSET = 0x00000000, SRAM_OFFSET = 0x00800000, EEPROM_OFFSET = 0x00810000, SIGNATURE_OFFSET = 0x00840000, GDB_BLOCKING_OFF = 0, GDB_BLOCKING_ON = 1, GDB_RET_NOTHING_RECEIVED = -5, GDB_RET_SINGLE_STEP = -4, GDB_RET_CONTINUE = -3, GDB_RET_CTRL_C = -2, GDB_RET_KILL_REQUEST = -1, GDB_RET_OK = 0 } |
Variables | |
| static char | HEX_DIGIT [] = "0123456789abcdef" |
| anonymous enum |
Definition at line 57 of file gdbserver.cpp.
char HEX_DIGIT[] = "0123456789abcdef" [static] |
Definition at line 361 of file gdbserver.cpp.
1.6.3