diff --git a/.gitignore b/.gitignore
index fda5f3cd754a1c18434032f321ac50e9d9905467..7463d5f7d7108b26725154dcf0d4c07615c38dae 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 aa99b3e5ea62cd8dc320e0a73d49bb7fc2c2ac9b..0000000000000000000000000000000000000000
--- 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 b890268e187a68585d8fb1ffde6dbc6e1a310cf6..0000000000000000000000000000000000000000
--- 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