diff options
| author | Brent Kowal <[email protected]> | 2024-07-01 17:31:38 -0400 |
|---|---|---|
| committer | Brent Kowal <[email protected]> | 2024-07-01 17:31:38 -0400 |
| commit | 2353c4ffbaa50072d89008df7a06a7732c824018 (patch) | |
| tree | 0255e975a33bf06bfb39cdf89062228e8f142dd2 /src/portable | |
| parent | 0b82af61f3ca7f6b708399c49519fb109ab33abb (diff) | |
Add MAX78002 Support
-Added support for MAX78002, MAX78002EVKIT
-Added provisions for remaining MAX32 USB parts
Diffstat (limited to 'src/portable')
| -rw-r--r-- | src/portable/analog/max32/dcd_max32.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/portable/analog/max32/dcd_max32.c b/src/portable/analog/max32/dcd_max32.c index b3370ddd1..7226003de 100644 --- a/src/portable/analog/max32/dcd_max32.c +++ b/src/portable/analog/max32/dcd_max32.c @@ -27,7 +27,8 @@ #include "tusb_option.h" -#if CFG_TUD_ENABLED && TU_CHECK_MCU(OPT_MCU_MAX32690) +#if CFG_TUD_ENABLED && \ + TU_CHECK_MCU(OPT_MCU_MAX32690, OPT_MCU_MAX32650, OPT_MCU_MAX32666, OPT_MCU_MAX78002) #if __GNUC__ > 8 && defined(__ARM_FEATURE_UNALIGNED) /* GCC warns that an address may be unaligned, even though |
