Skip to content

Commit

Permalink
Add missing aliased keywords in STM32_F4VE board
Browse files Browse the repository at this point in the history
to allow `'Access` attributes
  • Loading branch information
reznikmm committed Dec 19, 2023
1 parent 503ec28 commit d3fbb97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions boards/stm32_f4ve/src/stm32-board.ads
Original file line number Diff line number Diff line change
Expand Up @@ -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 --
Expand Down

0 comments on commit d3fbb97

Please sign in to comment.