From 5013a318621237218daa504e41e2a790d632b9e4 Mon Sep 17 00:00:00 2001 From: francois <francois@clever.amilab.irit.fr> Date: Tue, 10 Jan 2023 10:29:16 +0100 Subject: [PATCH] update --- .gitignore | 2 ++ neosensor/debug.cfg | 14 -------------- neosensor/debug_custom.json | 19 ------------------- 3 files changed, 2 insertions(+), 33 deletions(-) delete mode 100644 neosensor/debug.cfg delete mode 100644 neosensor/debug_custom.json diff --git a/.gitignore b/.gitignore index fda5f3cd..7463d5f7 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,8 @@ # others .vscode *.svd +debug.cfg +debug_custom.json # KiCad .bck diff --git a/neosensor/debug.cfg b/neosensor/debug.cfg deleted file mode 100644 index aa99b3e5..00000000 --- a/neosensor/debug.cfg +++ /dev/null @@ -1,14 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0-or-later -# -# Example OpenOCD configuration file for ESP32-WROVER-KIT board. -# -# For example, OpenOCD can be started for ESP32 debugging on -# -# openocd -f board/esp32-wrover-kit-3.3v.cfg -# - -# Source the JTAG interface configuration file -source [find interface/ftdi/esp32_devkitj_v1.cfg] -set ESP32_FLASH_VOLTAGE 3.3 -# Source the ESP32 configuration file -source [find target/esp32.cfg] diff --git a/neosensor/debug_custom.json b/neosensor/debug_custom.json deleted file mode 100644 index b890268e..00000000 --- a/neosensor/debug_custom.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name":"Arduino on ESP32", - "toolchainPrefix":"xtensa-esp32-elf", - "svdFile":"esp32.svd", - "request":"attach", - "postAttachCommands":[ - "set remote hardware-watchpoint-limit 2", - "monitor reset halt", - "monitor gdb_sync", - "thb setup", - "c" - ], - "overrideRestartCommands":[ - "monitor reset halt", - "monitor gdb_sync", - "thb setup", - "c" - ] -} \ No newline at end of file -- GitLab