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