Skip to content

Commit

Permalink
subpaging
Browse files Browse the repository at this point in the history
  • Loading branch information
tanneberger committed Feb 10, 2025
1 parent a226933 commit 3dc5938
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ clean:

docs:
mkdir -p doc/markdown/platform
curl 'https://raw.githubusercontent.com/lf-lang/lf-riot-uc-template/refs/heads/main/README.md' > doc/markdown/platform/riot.md
curl 'https://raw.githubusercontent.com/lf-lang/lf-zephyr-uc-template/refs/heads/main/README.md' > doc/markdown/platform/zephyr.md
curl 'https://raw.githubusercontent.com/lf-lang/lf-pico-uc-template/refs/heads/main/README.md' > doc/markdown/platform/pico.md
echo "\page platform-riot RIOT OS" > doc/markdown/platform/riot.md
curl 'https://raw.githubusercontent.com/lf-lang/lf-riot-uc-template/refs/heads/main/README.md' >> doc/markdown/platform/riot.md
echo "\page platform-zephyr Zephyr" > doc/markdown/platform/zephyr.md
curl 'https://raw.githubusercontent.com/lf-lang/lf-zephyr-uc-template/refs/heads/main/README.md' >> doc/markdown/platform/zephyr.md
echo "\page platform-pico Raspberry Pi Pico" > doc/markdown/platform/pico.md
curl 'https://raw.githubusercontent.com/lf-lang/lf-pico-uc-template/refs/heads/main/README.md' >> doc/markdown/platform/pico.md
doxygen
6 changes: 2 additions & 4 deletions doc/markdown/langding_page.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
\page reactor-uc-introduction Introduction into reactor-uc

Reactor Micro-C
====================

@subpage platform/riot.md
@subpage platform/zephyr.md
@subpage platform/pico.md

`reactor-uc` is a task scheduling runtime implementing the reactor
model-of-computation target at embedded and resource-constrained systems.

Expand Down
11 changes: 11 additions & 0 deletions doc/markdown/platforms.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
\page platform Supported Platforms

Supported Platforms by reactor-uc
====================

reactor-uc officially supports the following platforms:

- \subpage platform-riot RIOT OS
- \subpage platform-zephyr Zephyr
- \subpage platform-pico Raspberry Pi Pico

0 comments on commit 3dc5938

Please sign in to comment.