Files
Rolf Ebert f5eb425e08 avrada_lib 2.0.0, 2.0.1 (#631)
* crate for AVR standard library

* remove the prerelease part from version

* moved to v2.0.1, accept gnat-v12.2

Co-authored-by: GHA <actions@github.com>
2022-10-04 19:08:26 +02:00

33 lines
1.0 KiB
TOML

name = "avrada_lib"
description = "Library of drivers for AVR microcontrollers"
version = "2.0.0"
authors = ["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"]
[configuration.variables]
# If your program uses AVR.Real_Time.Timing_Events you can either
# handle them in your main loop (False) or during the 1ms clock tick
# of Timer0 (True). Defaults to false as most applications do not use
# timing events.
Process_Timing_Events_In_Ticks = {type = "Boolean", default = false}
# Serial/UART receive mode can either be by polling the Rx bit or by
# interrupt. Interrupt mode is only partly implemented.
UART_Receive_Mode = {type = "Enum", values = ["polled", "interrupt"], default = "polled"}
[[depends-on]]
gnat_avr_elf = "^11"
avrada_rts = "^2.0.0"
avrada_mcu = "^2.0.0"
[origin]
commit = "38be63691debb2b732dd95b4ed4bdba35bc09b17"
url = "git+https://github.com/RREE/AVRAda_Lib.git"