pico-stuff/README.md

45 wiersze
2.1 KiB
Markdown
Czysty Zwykły widok Historia

2021-03-12 02:11:59 +00:00
# Pico Stuff
I add my Pi Pico (RP2040) stuff here. There are complete [apps](/apps) and [libraries](/lib) for sensors or complicated tasks.
2021-03-02 05:31:51 +00:00
2021-03-12 02:11:59 +00:00
## Libraries
- [BMP180](/lib/bmp180): Header-only library for the BMP180 atmospheric pressure and temperature sensor.
- [BMP390](/lib/bmp390): Header-only library for the BMP390 atmospheric pressure and temperature sensor.
- [USB Network Stack](/lib/usb_network_stack): Library using TinyUSB's implementation of the RNDIS protocol to enable network over USB.
2023-01-30 04:06:53 +00:00
- [LittleFS](/lib/littlefs): A simple non-volatile filesystem based on LittleFS. It uses the internal flash.
2021-03-12 02:11:59 +00:00
## Apps
2021-03-12 02:13:09 +00:00
- [PiccoloSDR](/apps/piccolosdr): A primitive direct-sampling SDR.
2021-03-12 02:11:59 +00:00
- [ADC DMA Chain](/apps/adc_dma_chain): Chained DMA data acquisition from the ADC.
- [Barometer](/apps/barometer): Read temperature and atmospheric pressure from a BMP180.
2021-03-12 02:11:59 +00:00
- [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.
2023-01-30 04:06:53 +00:00
- [Filesystem](/apps/filesystem): A simple non-volatile filesystem based on LittleFS. It uses the internal flash.
2023-01-30 04:07:33 +00:00
- [Altimeter](/apps/altimeter): A simple altimeter for rockets, kites, balloons, etc.
2021-03-02 05:31:51 +00:00
## Installation
2021-03-12 02:11:59 +00:00
Some projects may require a patched version of the `pico-sdk` or `pico-extras`.
2021-03-02 05:31:51 +00:00
```bash
$ git clone --recursive git@github.com:luigifcruz/pico-stuff.git
$ cd pico-stuff
$ mkdir build
$ cd build
$ PICO_SDK_PATH=../pico-sdk cmake ..
$ make -j$(nproc -n)
```
2021-03-12 02:11:59 +00:00
## About the project
This project was created and maintained since 2021 by [Luigi Cruz](https://luigi.ltd).
### Support
Feel free to hit me up on [Twitter](https://twitter.com/luigifcruz) or [Email](mailto:luigifcruz@gmail.com) if your question isn't answered by this documentation. If you found a bug, please, report it directly on [GitHub Issues](https://github.com/luigifreitas/pisdr-image/issues).
### License
This project is distributed by an [GPL-2.0 License](/LICENSE).
### Disclaimer
This project isn't in any way associated with the Raspberry Pi Foundation.
2021-03-02 14:11:32 +00:00
2021-03-12 02:11:59 +00:00
### Contributing
2022-03-07 20:12:36 +00:00
Everyone is very welcome to contribute to our project.