diff --git a/changelog.txt b/changelog.txt index d8b3806a..9acf6987 100644 --- a/changelog.txt +++ b/changelog.txt @@ -8,6 +8,7 @@ FIX: Fixed GWIN console widget scroll. FIX: A warning and adjustment is made if GDISP_IMAGE_BMP_BLIT_BUFFER_SIZE is less than 40 bytes. FIX: Prevent compiler warnings on duplicate const specifiers. FEATURE: Added support for ChibiOS 6.x kernel. +FEATURE: Added support for ChibiOS 7.x kernel. CHANGE: STM32LTDC driver: Refactor to outsource clock setup for LTDC & DMA2D peripherals to the board file. CHANGE: STM32LTDC driver: Remove obsolete LTDC_NO_CLOCK_INIT macro as this clock setup is now outsourced to the board file. CHANGE: STM32LTDC driver: Automatically enable DMA cache flushing on STM32H7 platforms. diff --git a/src/gos/gos_chibios.c b/src/gos/gos_chibios.c index 9de04579..9b8c8d79 100644 --- a/src/gos/gos_chibios.c +++ b/src/gos/gos_chibios.c @@ -11,7 +11,7 @@ #include -#if CH_KERNEL_MAJOR < 2 || CH_KERNEL_MAJOR > 6 +#if CH_KERNEL_MAJOR < 2 || CH_KERNEL_MAJOR > 7 #error "GOS: Unsupported version of ChibiOS" #endif