From f5eb425e08f0658443a415e0a13e80dd3251bbd1 Mon Sep 17 00:00:00 2001 From: Rolf Ebert Date: Tue, 4 Oct 2022 19:08:26 +0200 Subject: [PATCH] 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 --- index/av/avrada_lib/avrada_lib-2.0.0.toml | 32 +++++++++++++++++++++++ index/av/avrada_lib/avrada_lib-2.0.1.toml | 32 +++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 index/av/avrada_lib/avrada_lib-2.0.0.toml create mode 100644 index/av/avrada_lib/avrada_lib-2.0.1.toml diff --git a/index/av/avrada_lib/avrada_lib-2.0.0.toml b/index/av/avrada_lib/avrada_lib-2.0.0.toml new file mode 100644 index 00000000..760e124f --- /dev/null +++ b/index/av/avrada_lib/avrada_lib-2.0.0.toml @@ -0,0 +1,32 @@ +name = "avrada_lib" +description = "Library of drivers for AVR microcontrollers" +version = "2.0.0" + +authors = ["Rolf Ebert"] +maintainers = ["Rolf Ebert "] +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" + diff --git a/index/av/avrada_lib/avrada_lib-2.0.1.toml b/index/av/avrada_lib/avrada_lib-2.0.1.toml new file mode 100644 index 00000000..1b851da0 --- /dev/null +++ b/index/av/avrada_lib/avrada_lib-2.0.1.toml @@ -0,0 +1,32 @@ +name = "avrada_lib" +description = "Library of drivers for AVR microcontrollers" +version = "2.0.1" + +authors = ["Rolf Ebert"] +maintainers = ["Rolf Ebert "] +maintainers-logins = ["RREE"] +licenses = "GPL-2.0-or-later WITH GCC-exception-3.1" +website = "https://sourceforge.net/projects/avr-ada/" +tags = ["avr", "embedded", "drivers"] + +[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 | ^12.2" +avrada_rts = "^2.0.1" +avrada_mcu = "^2.0.1" + + +[origin] +commit = "2625ad6cd549d623511fe94cd2b4a611fe43acbf" +url = "git+https://github.com/RREE/AVRAda_Lib.git" +