Lines Matching +full:repository +full:- +full:cache

4 necessary to write programs for the RP-series microcontroller-based devices such as the Raspberry P…
7 The SDK is designed to provide an API and programming environment that is familiar both to non-embe…
9 C-level libraries/APIs for accessing all of the RP-series microcontroller's hardware including PIO …
11-Fi and Bluetooth networking, USB and multicore programming. These libraries should be comprehensi…
13 The SDK can be used to build anything from simple applications, fully-fledged runtime environments …
14 such as the RP-series microcontroller's on-chip bootrom itself.
18 …t ready for inclusion in the SDK can be found in [pico-extras](https://github.com/raspberrypi/pico
22 See [Getting Started with the Raspberry Pi Pico-Series](https://rptl.io/pico-get-started) for infor…
23 …t and how to build and debug software for the Raspberry Pi Pico and other RP-series microcontrolle…
25 See [Connecting to the Internet with Raspberry Pi Pico W](https://rptl.io/picow-connect) to learn m…
28 See [Raspberry Pi Pico-Series C/C++ SDK](https://rptl.io/pico-c-sdk) to learn more about programmin…
29 SDK, to explore more advanced features, and for complete PDF-based API documentation.
31 See [Online Raspberry Pi Pico SDK API docs](https://rptl.io/pico-doxygen) for HTML-based API docume…
35 See [pico-examples](https://github.com/raspberrypi/pico-examples) for example code you can build.
39 The [master](https://github.com/raspberrypi/pico-sdk/tree/master/) branch of `pico-sdk` on GitHub c…
41 [develop](https://github.com/raspberrypi/pico-sdk/tree/develop/) branch instead.
43 # Quick-start your own project
47 …nsion](https://marketplace.visualstudio.com/items?itemName=raspberry-pi.raspberry-pi-pico) in VS C…
51 These instructions are extremely terse, and Linux-based only. For detailed steps,
52 …ust in general, we recommend you see [Raspberry Pi Pico-Series C/C++ SDK](https://rptl.io/pico-c-s…
56 …sudo apt install cmake python3 build-essential gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++
61 1. `git clone` this Raspberry Pi Pico SDK repository
62 …1. Copy [pico_sdk_import.cmake](https://github.com/raspberrypi/pico-sdk/blob/master/external/pico_…
64 …2. Set `PICO_SDK_PATH` to the SDK location in your environment, or pass it (`-DPICO_SDK_PATH=`) to…
84 1. Clone the SDK as a submodule called `pico-sdk`
90 # initialize pico-sdk from submodule
92 include(pico-sdk/pico_sdk_init.cmake)
104 …1. Copy [pico_sdk_import.cmake](https://github.com/raspberrypi/pico-sdk/blob/master/external/pico_…
111 # initialize pico-sdk from GIT
112 # (note this can come from environment, CMake cache etc)
129 1. `git clone` this Raspberry Pi Pico SDK repository
136 include(/path/to/pico-sdk/pico_sdk_init.cmake)
146 …ode (see [pico-examples](https://github.com/raspberrypi/pico-examples) or the [Raspberry Pi Pico-S…
175 …if you want to use the default USB see the [hello-usb](https://github.com/raspberrypi/pico-example…
185 …Pi Pico, you should pass `-DPICO_BOARD=board_name` to the `cmake` command above, e.g. `cmake -DPIC…
199 …or `hello_world.uf2` that can be installed and run on your Raspberry Pi Pico-series device via dra…
201 # RISC-V support on RP2350
203 See [Raspberry Pi Pico-series C/C++ SDK](https://rptl.io/pico-c-sdk) for information on setting up …