Lines Matching refs:to
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…
11 …to access hardware registers directly. However, if you do need or prefer to access the raw hardwar…
13 The SDK can be used to build anything from simple applications, fully-fledged runtime environments …
16 The design goal for entire SDK is to be simple but powerful.
22 …he Raspberry Pi Pico-Series](https://rptl.io/pico-get-started) for information on how to setup your
23 hardware, IDE/environment and how to build and debug software for the Raspberry Pi Pico and other R…
25 See [Connecting to the Internet with Raspberry Pi Pico W](https://rptl.io/picow-connect) to learn m…
26 applications for your Raspberry Pi Pico W that connect to the internet.
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.
40 _latest stable release_ of the SDK. If you need or want to test upcoming features, you can try the
58 1. Set up your project to point to use the Raspberry Pi Pico SDK
64 …2. Set `PICO_SDK_PATH` to the SDK location in your environment, or pass it (`-DPICO_SDK_PATH=`) to…
136 include(/path/to/pico-sdk/pico_sdk_init.cmake)
160 And add the following to your `CMakeLists.txt`:
170 # create map/bin/hex/uf2 file in addition to ELF.
175 …if you want to use the default USB see the [hello-usb](https://github.com/raspberrypi/pico-example…
185 …`-DPICO_BOARD=board_name` to the `cmake` command above, e.g. `cmake -DPICO_BOARD=pico2 ..` or `cma…
199 1. You now have `hello_world.elf` to load via a debugger, or `hello_world.uf2` that can be installe…