diff options
| author | hathach <[email protected]> | 2024-06-14 12:51:28 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2024-06-14 12:51:28 +0700 |
| commit | 2ed027f2bdedae81f20d7417ad7f018a6de9357a (patch) | |
| tree | 9dcf22440a63790634ecfd3be1a83281992fa998 /src/portable/st | |
| parent | ba2f2299c34491aa8c354e00fa3f9d222e30db89 (diff) | |
use stock core_riscv.h for ch32 v2 v3
Diffstat (limited to 'src/portable/st')
| -rw-r--r-- | src/portable/st/stm32_fsdev/fsdev_ch32.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/portable/st/stm32_fsdev/fsdev_ch32.h b/src/portable/st/stm32_fsdev/fsdev_ch32.h index 85fe3266c..dbf2a0289 100644 --- a/src/portable/st/stm32_fsdev/fsdev_ch32.h +++ b/src/portable/st/stm32_fsdev/fsdev_ch32.h @@ -36,13 +36,23 @@ #include "common/tusb_compiler.h" +// https://github.com/openwch/ch32v307/pull/90 +// https://github.com/openwch/ch32v20x/pull/12 +#ifdef __GNUC__ +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wstrict-prototypes" +#endif + #if CFG_TUSB_MCU == OPT_MCU_CH32V20X #include <ch32v20x.h> - #elif CFG_TUSB_MCU == OPT_MCU_CH32F20X #include <ch32f20x.h> #endif +#ifdef __GNUC__ +#pragma GCC diagnostic pop +#endif + #define FSDEV_PMA_SIZE (512u) // volatile 32-bit aligned |
