Files
Ada_Drivers_Library/boards/native.gpr
Jerome Lambourg fd37b2cc31 STM32 boards: refactor the sdcard and otm8009a support.
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
2017-05-02 14:25:35 +02:00

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;