aeed2f34b1
* Pi Ada Tutorial release 1.6.0 * Remove extra newline before URL in TOML file Force rebuild by removing redundant lines at the end of the file --------- Co-authored-by: Martin Krischik <martin.krischik@kpt.ch>
61 lines
2.6 KiB
TOML
61 lines
2.6 KiB
TOML
name = "pico_xbsp"
|
|
description = "Extended board support package for Raspberry Pi Pico"
|
|
long-description = """Extended board support package (XBSP) for the Raspberry Pi Pico.
|
|
|
|
This crate extends the official pico_bsp from Jeremy Grosser with additional, reusable components. It is designed for
|
|
general use in any Ada project targeting the RP2040-based Raspberry Pi Pico and is not limited to the Pi Ada Tutorial.
|
|
|
|
It is developed in parallel with the [Pi Ada Tutorial](https://pi-ada-tutorial.sourceforge.io/) and therefore also
|
|
supplies the exact support packages used in the tutorial chapters. This dual role makes pico_xbsp equally suitable for:
|
|
|
|
* Standalone embedded Ada projects that only need the extra functionality, and * Readers following the tutorial who want
|
|
ready-made, well-documented building blocks.
|
|
|
|
Current content:
|
|
|
|
1. Pico.Analog - Analogue GPIO using Pulse Width Modulation (PWM).
|
|
1. Pico.Analog.RGB_LED - Analogue RGB LED control using Pulse Width Modulation (PWM).
|
|
2. Pico.UART_IO - UART Text Output (Input comes later).
|
|
|
|
All packages are supplied with complete GNATDOC annotations.
|
|
|
|
* [GNATdoc documentation](https://pi-ada-tutorial.sourceforge.io/gnatdoc/)
|
|
* [SourceForge repository](https://sourceforge.net/projects/pi-ada-tutorial/)
|
|
|
|
The crate will grow with each new tutorial chapter while remaining a clean, independent library.
|
|
"""
|
|
version = "1.6.0"
|
|
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://pi-ada-tutorial.sourceforge.io/"
|
|
tags = ["raspberry", "pi", "pico", "rp2040", "tasking", "light-tasking", "ada2022", "embedded"]
|
|
|
|
[build-switches]
|
|
"*".ada_version = ["-gnat2022"]
|
|
development.compile_checks = "Warnings"
|
|
development.contracts = "Yes"
|
|
development.runtime_checks = "Overflow"
|
|
release.compile_checks = "Warnings"
|
|
release.contracts = "No"
|
|
release.runtime_checks = "Default"
|
|
validation.compile_checks = "Warnings"
|
|
validation.contracts = "Yes"
|
|
validation.runtime_checks = "Everything"
|
|
|
|
[[depends-on]]
|
|
pico_bsp = "^2.2"
|
|
|
|
# vim: set textwidth=120 nowrap 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:907ff0a34e782049d67483c34d7c5da628921a562f83219eddd33ef3d37b40c1",
|
|
"sha512:b40adbd2c0653a644cd5f1465b30ded07702cf78720d215978cda23d0c373bdd7b751d9c1e0c3732a639f7254b3b7fe0d289cc22211bda1285b5fd9050b4761d",
|
|
]
|
|
url = "https://sourceforge.net/projects/pi-ada-tutorial/files/Alire/pico_xbsp-1.6.0.tgz"
|
|
|