Last active
July 19, 2025 22:05
-
-
Save 5HT/dcdbf58317090935bacbc2aa043ff516 to your computer and use it in GitHub Desktop.
RTS 1.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
maxim@raspberrypi:~/depot/bitedits/rts $ tree -d -L 4 . | |
. | |
├── apps | |
│ ├── hello | |
│ ├── init | |
│ └── nsh | |
├── drivers | |
│ ├── devicetree | |
│ ├── eeprom | |
│ ├── i2c | |
│ ├── i2s | |
│ ├── pci | |
│ ├── serial | |
│ ├── usbdev | |
│ └── virtio | |
├── fs | |
│ ├── binfs | |
│ ├── romfs | |
│ └── vfs | |
├── hal | |
│ ├── boards | |
│ │ ├── common | |
│ │ │ └── rp2350 | |
│ │ └── specific | |
│ │ └── pico2 | |
│ └── cores | |
│ ├── common | |
│ │ ├── armv8-m | |
│ │ └── bcm2711 | |
│ └── specific | |
│ ├── qemu | |
│ └── rp2350 | |
├── include | |
│ ├── crypto | |
│ └── sys | |
├── kernel | |
│ ├── crypto | |
│ │ ├── mbedtls | |
│ │ │ ├── include | |
│ │ │ └── source | |
│ │ └── nuttx | |
│ ├── loader | |
│ │ └── binfmt | |
│ ├── mm | |
│ │ ├── heap | |
│ │ └── map | |
│ └── sched | |
│ ├── clock | |
│ ├── irq | |
│ ├── mqueue | |
│ ├── pthread | |
│ ├── sched | |
│ ├── signal | |
│ └── task | |
├── libs | |
│ ├── sched | |
│ ├── stdio | |
│ ├── stdlib | |
│ ├── string | |
│ │ ├── armv8-a | |
│ │ └── armv8-m | |
│ ├── termios | |
│ └── unistd | |
└── tools | |
└── picotool | |
64 directories |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
RTS 1.0 --- це перепакування NuttX у власній ієрархії як приклад реалізації власної системи збірки для опен соурс проєктів.
Мінімальний розмір базової версії RTS 1.0 становить 12 МБ.
Сторінка проєкту: https://bitedits.github.io/rts/