Add missing `aliased` keywords in STM32_F4VE board

to allow `'Access` attributes
This commit is contained in:
Maxim Reznik 2023-12-19 10:48:02 +02:00
parent 503ec28492
commit c45af336d0
1 changed files with 3 additions and 3 deletions

View File

@ -104,11 +104,11 @@ package STM32.Board is
TFT_BLK : GPIO_Point renames PB1; -- LCD backlight
TFT_CS : GPIO_Point renames PB12;
Display : Display_ILI9341.Display;
Display : aliased Display_ILI9341.Display;
TFT_Bitmap : Display_ILI9341.Bitmap_Buffer := Display.Buffer;
TFT_Bitmap : aliased Display_ILI9341.Bitmap_Buffer := Display.Buffer;
Touch_Panel : Touch_Panel_XPT2046.Touch_Panel;
Touch_Panel : aliased Touch_Panel_XPT2046.Touch_Panel;
--------------------------
-- micro SD card reader --