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
23 lines
546 B
Plaintext
23 lines
546 B
Plaintext
with "../../boards/OpenMV2/openmv2_full";
|
|
|
|
project OpenMV2_Example is
|
|
|
|
-- OpenMV2 runtime is derived from smt32f429-disco with
|
|
--
|
|
-- HSE_Clock_Frequency : constant := 12_000_000;
|
|
--
|
|
-- in bsp/s-bbopa.ads
|
|
for Runtime ("Ada") use OpenMV2_Full'Runtime ("Ada");
|
|
|
|
for Target use "arm-eabi";
|
|
for Source_Dirs use ("src");
|
|
|
|
for Languages use ("Ada");
|
|
for Object_Dir use "obj";
|
|
for Main use ("main.adb");
|
|
for Create_Missing_Dirs use "True";
|
|
|
|
package Compiler renames OpenMV2_Full.Compiler;
|
|
|
|
end OpenMV2_Example;
|