Add documentation.

main
Luigi F. Cruz 2023-01-29 20:05:23 -08:00
rodzic dcf04e5db7
commit 45dd6d959b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: CEB689C74D220F93
4 zmienionych plików z 16 dodań i 1 usunięć

Wyświetl plik

@ -5,4 +5,6 @@ These are sample applications with various purposes.
- [ADC DMA Chain](/apps/adc_dma_chain): Chained DMA data acquisition from the ADC.
- [Barometer](/apps/barometer): Barometer polling the temperature and atmospheric pressure from a BMP180.
- [Iperf Server](/apps/iperf_server): A tool to measure the performance of the TinyUSB's TCP/IP stack over USB.
- [TCP Server](/apps/tcp_server): A TCP server example to send high-frequency data to the host computer.
- [TCP Server](/apps/tcp_server): A TCP server example to send high-frequency data to the host computer.
- [Filesystem](/apps/filesystem): A simple non-volatile filesystem based on LittleFS. It uses the internal flash.
- [Altimeter](/apps/filesystem): A simple altimeter for rockets, kites, balloons, etc.

Wyświetl plik

@ -0,0 +1,6 @@
# Filesystem
This is a simple altimeter based on LittleFS and BMP390. This is using the built-in Raspberry Pi Pico as non-volatile memory.
### Dependencies
- [littlefs](/lib/littlefs) Library.
- [bmp390](/lib/bmp390) Library.

Wyświetl plik

@ -0,0 +1,5 @@
# Filesystem
This is a simple filesystem demonstration based on LittleFS. This is using the built-in Raspberry Pi Pico as non-volatile memory.
### Dependencies
- [littlefs](/lib/littlefs) Library.

Wyświetl plik

@ -0,0 +1,2 @@
# LittleFS Library
This is a library implements the LittleFS driver for the built-in Raspberry Pi Pico flash storage.