2bd4373fbf
* Add Run-Time-System and MCU definitions from AVR-Ada * remove the prerelease part from version * force use of LF only on git checkout, permit GNAT v12.2 as dependancy * moved RTS and MCU version to v2.0.1
25 lines
762 B
TOML
25 lines
762 B
TOML
name = "avrada_rts"
|
|
description = "Minimal run time system (RTS) for AVR 8bit controllers"
|
|
version = "2.0.0"
|
|
|
|
authors = ["Adacore", "Rolf Ebert"]
|
|
maintainers = ["Rolf Ebert <rolf.ebert@gcc.gmx.de>"]
|
|
maintainers-logins = ["RREE"]
|
|
licenses = "GPL-2.0-or-later WITH GCC-exception-3.1"
|
|
website = "https://sourceforge.net/projects/avr-ada/"
|
|
tags = ["avr", "embedded", "rts"]
|
|
|
|
[configuration.variables]
|
|
AVR_MCU = { type = "String", default = "atmega328p" }
|
|
Sec_Stack_Size = { type = "Integer", first = 0, last = 1024, default = 63 }
|
|
Clock_Frequency = { type = "Integer", first = 0, default = 0 }
|
|
|
|
[[depends-on]]
|
|
gnat_avr_elf = "^11 | ^12.2"
|
|
|
|
|
|
[origin]
|
|
commit = "9e4f8d80ef47810b126a3e809d549e114c92ed94"
|
|
url = "git+https://github.com/RREE/AVRAda_RTS.git"
|
|
|