summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZixun LI <[email protected]>2026-07-19 22:16:33 +0200
committerGitHub <[email protected]>2026-07-19 22:16:33 +0200
commita3e58adf6008f3199cf653859bea4dc73217a55a (patch)
tree4a667d2f129739304961d3e0a9e638c23a15ca4e
parent3beaa799a92005bf1982d9c8bf65a368f5b1946f (diff)
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <[email protected]>
-rw-r--r--src/portable/st/stm32_fsdev/fsdev_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/portable/st/stm32_fsdev/fsdev_common.c b/src/portable/st/stm32_fsdev/fsdev_common.c
index def3b2c2e..9c9233d12 100644
--- a/src/portable/st/stm32_fsdev/fsdev_common.c
+++ b/src/portable/st/stm32_fsdev/fsdev_common.c
@@ -36,7 +36,7 @@ void fsdev_core_reset(void) {
#if (CFG_TUSB_MCU == OPT_MCU_AT32F403A_407) || (CFG_TUSB_MCU == OPT_MCU_AT32F413)
// Enable larger PMA area
- CRM->misc1_bit.usbbufs = TRUE;
+ CRM->misc1_bit.usbbufs = 1;
#endif
}