Adding ChibiOS 7 support

master
Joel Bodenmann 2021-10-12 18:36:02 +02:00
parent 64aa71339c
commit 68483139c9
2 changed files with 2 additions and 1 deletions

View File

@ -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.

View File

@ -11,7 +11,7 @@
#include <string.h>
#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