You've already forked Ada_Drivers_Library
mirror of
https://github.com/AdaCore/Ada_Drivers_Library.git
synced 2026-02-12 12:26:55 -08:00
This avoids duplicated code. SDMMC STM32 drivers: various fixes. This commit now properly initializes the SD/MMC clock source. This also fixes the missing initialization of some PINs there. This is needed to properly calculate the Card's clock to apply. Fix also fixes a wrong pre-condition in stm32-sdmmc.ads
27 lines
544 B
Plaintext
27 lines
544 B
Plaintext
-- **AUTOMATICALLY GENERATED** Do not edit !!
|
|
-- Please see gen.py and edit this script instead.
|
|
|
|
with "config";
|
|
with "../components/components";
|
|
with "../middleware/middleware";
|
|
|
|
library project Native is
|
|
|
|
Obj_Suffix := "native";
|
|
|
|
for Library_Name use "native";
|
|
for Library_Dir use "lib/" & Obj_Suffix;
|
|
for Object_Dir use "obj/" & Obj_Suffix;
|
|
|
|
for Source_Dirs use
|
|
("native");
|
|
|
|
package Builder is
|
|
for Switches ("Ada") use
|
|
("-s");
|
|
end Builder;
|
|
|
|
package Compiler renames Config.Compiler;
|
|
|
|
end Native;
|