>< DBG > Debug, DCMI > Digital_Camera_Interface, FLASH > Embedded_Flash

This commit is contained in:
Vovanium 2024-01-19 20:50:38 +03:00
parent 2a88d68215
commit b473a6e937
6 changed files with 20 additions and 22 deletions

View File

@ -1,4 +1,4 @@
package STM32.DBG with Pure is
package STM32.Debug with Pure is
-- IDCODE
@ -155,5 +155,4 @@ package STM32.DBG with Pure is
APB2_FZ at 16#0C# range 0 .. 31;
end record;
end STM32.DBG;
end STM32.Debug;

View File

@ -1,4 +1,4 @@
package STM32.DCMI with Pure is
package STM32.Digital_Camera_Interface with Pure is
-- CR
@ -246,5 +246,4 @@ package STM32.DCMI with Pure is
DR at 16#28# range 0 .. 31;
end record;
end STM32.DCMI;
end STM32.Digital_Camera_Interface;

View File

@ -1,4 +1,4 @@
package STM32.FLASH with Pure is
package STM32.Embedded_Flash with Pure is
-- ACR
type Access_Control_Register is record
@ -251,4 +251,4 @@ package STM32.FLASH with Pure is
OPTCR1 at 16#18# range 0 .. 31;
end record;
end STM32.FLASH;
end STM32.Embedded_Flash;

View File

@ -1,12 +0,0 @@
with System.Storage_Elements;
with STM32.Address_Map;
with STM32.DCMI;
package STM32.F429.DCMI is
package Base renames STM32.DCMI;
DCMI_HW : Base.DCMI_Registers with Volatile, Import,
Address => System.Storage_Elements.To_Address (STM32.Address_Map.DCMI);
end STM32.F429.DCMI;

View File

@ -0,0 +1,12 @@
with System.Storage_Elements;
with STM32.Address_Map;
with STM32.Digital_Camera_Interface;
package STM32.F429.Digital_Camera_Interface is
package DCMI_Base renames STM32.Digital_Camera_Interface;
DCMI : DCMI_Base.DCMI_Registers with Volatile, Import,
Address => System.Storage_Elements.To_Address (STM32.Address_Map.DCMI);
end STM32.F429.Digital_Camera_Interface;

View File

@ -1,4 +1,4 @@
package STM32.SDIO with Pure is
package STM32.SDIO_Interface with Pure is
-- POWER
@ -299,5 +299,5 @@ package STM32.SDIO with Pure is
FIFO at 16#80# range 0 .. 31;
end record;
end STM32.SDIO;
end STM32.SDIO_Interface;