This is an automated email from Gerrit. "zapb <[email protected]>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/9776
-- gerrit commit 305f21f1b604a3f1f7e6068607614e422d7b3945 Author: Marc Schink <[email protected]> Date: Mon Jul 6 16:43:29 2026 +0200 contrib/firmware/angie: Add parentheses for __at Add parentheses to match the __interrupt change in the previous commit. This is a cosmetic change and not technically required. Change-Id: I26fe61aa9ae56be37488b0cfe9f176ed93408e44 Signed-off-by: Marc Schink <[email protected]> diff --git a/contrib/firmware/angie/c/include/usb.h b/contrib/firmware/angie/c/include/usb.h index dbf41fe8e5..fb4067d621 100644 --- a/contrib/firmware/angie/c/include/usb.h +++ b/contrib/firmware/angie/c/include/usb.h @@ -125,7 +125,7 @@ struct setup_data { uint16_t wlength; /**< Number of bytes to transfer in data stage. */ }; -extern volatile __xdata __at 0xE6B8 struct setup_data setup_data; +extern volatile __xdata __at(0xE6B8) struct setup_data setup_data; /* * USB Request Types (bmRequestType): See USB 2.0 Spec diff --git a/contrib/firmware/angie/c/src/usb.c b/contrib/firmware/angie/c/src/usb.c index 8a448d9035..4b3db0a60f 100644 --- a/contrib/firmware/angie/c/src/usb.c +++ b/contrib/firmware/angie/c/src/usb.c @@ -23,7 +23,7 @@ // #define PRINTF_DEBUG -volatile __xdata __at 0xE6B8 struct setup_data setup_data; +volatile __xdata __at(0xE6B8) struct setup_data setup_data; /* Define number of endpoints (except Control Endpoint 0) in a central place. * Be sure to include the necessary endpoint descriptors! --
