I add my Pi Pico (RP2040) stuff here.
 
 
 
Go to file
Luigi Cruz 79a84afe66 Add iperf server. 2021-03-03 17:10:07 -03:00
bmp180 Update bmp180.h 2021-03-02 11:14:34 -03:00
iperf_server Add iperf server. 2021-03-03 17:10:07 -03:00
pico-examples@3617ade198 Add bmp180 library. 2021-03-02 02:31:51 -03:00
pico-extras@1548682049 Add iperf server. 2021-03-03 17:10:07 -03:00
pico-playground@7078b4023a Add iperf server. 2021-03-03 17:10:07 -03:00
pico-sdk@2d5789eca8 Add bmp180 library. 2021-03-02 02:31:51 -03:00
.gitignore Add bmp180 library. 2021-03-02 02:31:51 -03:00
.gitmodules Add iperf server. 2021-03-03 17:10:07 -03:00
CMakeLists.txt Add iperf server. 2021-03-03 17:10:07 -03:00
LICENSE Initial commit 2021-03-02 02:06:22 -03:00
README.md Add usage. 2021-03-02 11:11:32 -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.

Header-Only Libraries

  • BMP180

Installation

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

Debug

For debug add #define DEBUG before the #include of a header-only library.

Usage

Q: How can I use these libraries on my project? A: Just copy and paste the header-only library file to your project.