1 /*
2  * Copyright (c) 2021 Intel Corporation.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <inttypes.h>
8 
9 #ifndef SOC_XTENSA_ESP32_GDBSTUB_H_
10 #define SOC_XTENSA_ESP32_GDBSTUB_H_
11 
12 #ifndef ZEPHYR_INCLUDE_ARCH_XTENSA_GDBSTUB_SYS_H_
13 #error "Must be included after arch/xtensa/gdbstub.h"
14 #endif /* ZEPHYR_INCLUDE_ARCH_XTENSA_GDBSTUB_SYS_H_ */
15 
16 #define SOC_GDB_GPKT_BIN_SIZE		420
17 #define SOC_GDB_GPKT_HEX_SIZE		(SOC_GDB_GPKT_BIN_SIZE * 2)
18 
19 #define SOC_GDB_REGNO_A1		0x0001
20 
21 #endif /* SOC_XTENSA_ESP32_GDBSTUB_H_ */
22