summaryrefslogtreecommitdiff
path: root/util/ec_openocd.py
diff options
context:
space:
mode:
Diffstat (limited to 'util/ec_openocd.py')
-rwxr-xr-xutil/ec_openocd.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/util/ec_openocd.py b/util/ec_openocd.py
index 4d114d4343..6183540353 100755
--- a/util/ec_openocd.py
+++ b/util/ec_openocd.py
@@ -26,7 +26,10 @@ class BoardInfo:
# Debuggers for each board, OpenOCD currently only supports GDB
-boards = {"skyrim": BoardInfo("arm-none-eabi-gdb", 6, 4)}
+boards = {
+ "rex": BoardInfo("arm-none-eabi-gdb", 6, 4),
+ "skyrim": BoardInfo("arm-none-eabi-gdb", 6, 4),
+}
def create_openocd_args(interface, board):