I add my Pi Pico (RP2040) stuff here.
 
 
 
Go to file
Luigi F. Cruz a4fe912b24 Update README files. 2023-07-10 21:07:03 -03:00
apps Update README files. 2023-07-10 21:07:03 -03:00
lib Replace hex with define. 2023-07-10 21:00:15 -03:00
pico-examples@a7ad17156b Update dependencies. 2023-01-28 22:13:48 -08:00
pico-extras@747ce32a8e Update dependencies. 2023-01-28 22:13:48 -08:00
pico-playground@eb6658e820 Update dependencies. 2023-01-28 22:13:48 -08:00
pico-sdk@d2440cafd0 Update dependencies. 2023-01-28 22:13:48 -08:00
.gitignore Add altimeter example data. 2023-07-10 21:03:55 -03:00
.gitmodules Add littlefs submodule. 2023-01-28 15:04:04 -08:00
CMakeLists.txt Orgazine projects. 2021-03-03 23:48:48 -03:00
LICENSE Initial commit 2021-03-02 02:06:22 -03:00
README.md Update README files. 2023-07-10 21:07:03 -03:00
compile_commands.json Add bmp180 library. 2021-03-02 02:31:51 -03:00
pico_extras_import.cmake Add iperf server. 2021-03-03 17:10:07 -03:00
pico_sdk_import.cmake Add bmp180 library. 2021-03-02 02:31:51 -03:00

README.md

Pico Stuff

I add my Pi Pico (RP2040) stuff here. There are complete apps and libraries for sensors or complicated tasks.

Libraries

  • BMP180: Header-only library for the BMP180 atmospheric pressure and temperature sensor.
  • BMP390: Header-only library for the BMP390 atmospheric pressure and temperature sensor.
  • USB Network Stack: Library using TinyUSB's implementation of the RNDIS protocol to enable network over USB.
  • LittleFS: A simple non-volatile filesystem based on LittleFS. It uses the internal flash.

Apps

  • PiccoloSDR: A primitive direct-sampling SDR.
  • ADC DMA Chain: Chained DMA data acquisition from the ADC.
  • Barometer: Read temperature and atmospheric pressure from a BMP180/BMP390.
  • Iperf Server: A tool to measure the performance of the TinyUSB's TCP/IP stack over USB.
  • TCP Server: A TCP server example to send high-frequency data to the host computer.
  • Filesystem: A simple non-volatile filesystem based on LittleFS. It uses the internal flash.
  • Altimeter: A simple altimeter for rockets, kites, balloons, etc.

Installation

Some projects may require a patched version of the pico-sdk or pico-extras.

$ 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)

About the project

This project was created and maintained since 2021 by Luigi Cruz.

Support

Feel free to hit me up on Twitter or Email if your question isn't answered by this documentation. If you found a bug, please, report it directly on GitHub Issues.

License

This project is distributed by an GPL-2.0 License.

Disclaimer

This project isn't in any way associated with the Raspberry Pi Foundation.

Contributing

Everyone is very welcome to contribute to our project.