4206a1952e
* Pi Ada Tutorial release 7.1.2
Update adacl_embedded
* Update adacl-7.1.2.toml
delete line to force rebuild.
77 lines
3.5 KiB
TOML
77 lines
3.5 KiB
TOML
name = "adacl_embedded"
|
|
description = "Ada Embedded Library"
|
|
long-description = """## AdaCL Embedded - Lightweight Embedded Ada Library
|
|
|
|
AdaCL-Embedded focuses on embedded and real-time programming on the Raspberry Pi and similar platforms.
|
|
|
|
It favours predictability, minimal runtime overhead, and static data structures. Object-oriented programming, unbounded
|
|
strings, and wide strings are avoided or kept to an absolute minimum.
|
|
|
|
### Current Features
|
|
|
|
* **AdaCL.Embedded.Trace** - Interrupt-safe, lightweight tracing facility using a ring buffer.
|
|
* **AdaCL.Embedded.Text_IO** - Extended Ada.Text_IO.
|
|
|
|
### Configuration Options
|
|
|
|
* `Variant`
|
|
* `no_tasking` - for the lightest runtimes (no protected objects). Also works well with interrupt-driven runtimes.
|
|
* `tasking` - for runtimes with tasking support.
|
|
* `Event_Log_Buffer_Length` - maximum length of each trace line (default: 200, min: 1, max: 1024)
|
|
* `Event_Log_Buffer_Size` - number of entries in the ring buffer (default: 0, max: 1024, min: 0 (buffer disabled))
|
|
|
|
A text length of 200 is the standart minimum used in the Ada Standart (i.E. `Ada.Text_IO.Get_Line`, exception messages,
|
|
etc.pp).
|
|
|
|
Memory needed is approximately `(Event_Log_Buffer_Length + 4) * Event_Log_Buffer_Size` bytes, plus some overhead for the
|
|
buffer management. For example: 1024 buffer size with 200 line lenght is about the maximum size that can be used with
|
|
the static memory of Raspberry Pi Pico. The buffer size can be set to 0 to disable the trace buffer and the related code
|
|
completely.
|
|
|
|
Source: [SourceForge](https://sourceforge.net/p/adacl/git/ci/master/tree/adacl-embedded/src/)
|
|
Documentation: [GNATdoc](https://adacl-embedded.sourceforge.net/gnatdoc/adael/index.html)
|
|
"""
|
|
version = "7.1.2"
|
|
licenses = "GPL-3.0-or-later"
|
|
authors = ["Martin Krischik <krischik@users.sourceforge.net>"]
|
|
maintainers = ["Martin Krischik <krischik@users.sourceforge.net>"]
|
|
maintainers-logins = ["krischik"]
|
|
website = "https://sourceforge.net/projects/adacl/"
|
|
tags = ["library", "embedded", "trace", "logging", "raspberry-pi", "ada2022"]
|
|
|
|
[build-switches]
|
|
"*".ada_version = "Ada2022"
|
|
"*".source_encoding = "UTF_8"
|
|
development.compile_checks = "Warnings"
|
|
development.contracts = "Yes"
|
|
development.debug_info = "Yes"
|
|
development.optimization = "Debug"
|
|
development.runtime_checks = "Overflow"
|
|
release.compile_checks = "Warnings"
|
|
release.contracts = "No"
|
|
release.debug_info = "No"
|
|
release.optimization = "Performance"
|
|
release.runtime_checks = "Default"
|
|
validation.compile_checks = "Warnings"
|
|
validation.contracts = "Yes"
|
|
validation.debug_info = "Yes"
|
|
validation.optimization = "Debug"
|
|
validation.runtime_checks = "Everything"
|
|
|
|
[configuration.variables]
|
|
Variant = {type = "Enum", values = ["tasking", "no_tasking"], default = "no_tasking" }
|
|
Event_Log_Buffer_Length = {type = "Integer", first = 1, last = 1024, default = 200 }
|
|
Event_Log_Buffer_Size = {type = "Integer", first = 0, last = 1024, default = 0 }
|
|
|
|
# vim: set textwidth=120 wrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :
|
|
# vim: set filetype=toml fileencoding=utf-8 fileformat=unix foldmethod=diff :
|
|
# vim: set spell spelllang=en_gb :
|
|
|
|
[origin]
|
|
hashes = [
|
|
"sha256:fe91db4f952655498fd733d3f4132d55f33e5286a296c1e9b9a62d03afa98d6c",
|
|
"sha512:a0fc7fe07d29e8e26d2a16f8664297d1359be2ea4a0ba6d9dd9944162dea1f6b220263133707a52e305a0c7026f4824ac5c6167a96e70946249f7412fdc16279",
|
|
]
|
|
url = "https://sourceforge.net/projects/adacl/files/Alire/adacl_embedded-7.1.2.tgz"
|
|
|