From 99db17c5ed92cd5a14278d8fc79029c173dbd865 Mon Sep 17 00:00:00 2001 From: Rolf Ebert Date: Mon, 10 Oct 2022 10:52:35 +0200 Subject: [PATCH] avrada_lib 2.0.2, avrada_mcu 2.0.2, avrada_examples 1.0.1 (#655) * remove pins from alire.toml * set correct dependency in the examples --- .../avrada_examples-1.0.1.toml | 18 +++++++++++ index/av/avrada_lib/avrada_lib-2.0.2.toml | 32 +++++++++++++++++++ index/av/avrada_mcu/avrada_mcu-2.0.2.toml | 20 ++++++++++++ 3 files changed, 70 insertions(+) create mode 100644 index/av/avrada_examples/avrada_examples-1.0.1.toml create mode 100644 index/av/avrada_lib/avrada_lib-2.0.2.toml create mode 100644 index/av/avrada_mcu/avrada_mcu-2.0.2.toml diff --git a/index/av/avrada_examples/avrada_examples-1.0.1.toml b/index/av/avrada_examples/avrada_examples-1.0.1.toml new file mode 100644 index 00000000..d2d87cf2 --- /dev/null +++ b/index/av/avrada_examples/avrada_examples-1.0.1.toml @@ -0,0 +1,18 @@ +name = "avrada_examples" +description = "Sample applications in Ada for AVR microcontrollers" +version = "1.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", "demo"] + +project-files = ["avrada_examples.gpr"] + + +[origin] +commit = "72780c766d5e3cb674d012c1775015d4442ce6e0" +url = "git+https://github.com/RREE/AVRAda_Examples.git" + diff --git a/index/av/avrada_lib/avrada_lib-2.0.2.toml b/index/av/avrada_lib/avrada_lib-2.0.2.toml new file mode 100644 index 00000000..2481e27d --- /dev/null +++ b/index/av/avrada_lib/avrada_lib-2.0.2.toml @@ -0,0 +1,32 @@ +name = "avrada_lib" +description = "Library of drivers for AVR microcontrollers" +version = "2.0.2" + +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.2" + + +[origin] +commit = "be6627e45742750d410abcd3da079222ee3ca3b0" +url = "git+https://github.com/RREE/AVRAda_Lib.git" + diff --git a/index/av/avrada_mcu/avrada_mcu-2.0.2.toml b/index/av/avrada_mcu/avrada_mcu-2.0.2.toml new file mode 100644 index 00000000..6d05701d --- /dev/null +++ b/index/av/avrada_mcu/avrada_mcu-2.0.2.toml @@ -0,0 +1,20 @@ +name = "avrada_mcu" +description = "Device (MCU) specific definitions for AVR microcontrollers" +version = "2.0.2" + +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", "rts"] + +[[depends-on]] +gnat_avr_elf = "^11 | ^12.2" +avrada_rts = "^2.0.1" + + +[origin] +commit = "f6ef583f07cd5f1cf70e2b6c43e072df3a69b860" +url = "git+https://github.com/RREE/AVRAda_MCU.git" +