From 1a80918075cb90fe5efd17fc0504fad99ad4cd3a Mon Sep 17 00:00:00 2001 From: Darren Date: Fri, 24 Apr 2026 11:42:40 -0700 Subject: [PATCH] Update README.md (acaGdbstubProcess) Correct name of `acaGdbstubProcess` in GDB stub example. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 10eff08..e39420e 100644 --- a/README.md +++ b/README.md @@ -184,7 +184,7 @@ void gdbserverCall(myCustomData *myCustomData) { gdbstubCtx.usrData = (void*)myCustomData; // Process cmds from GDB - minigdbstubProcess(&gdbstubCtx); + acaGdbstubProcess(&gdbstubCtx); return; }