pico-sdk/src/host
graham sanderson 26653ea81e Initial Release
2021-01-20 10:44:27 -06:00
..
hardware_divider Initial Release 2021-01-20 10:44:27 -06:00
hardware_gpio Initial Release 2021-01-20 10:44:27 -06:00
hardware_sync Initial Release 2021-01-20 10:44:27 -06:00
hardware_timer Initial Release 2021-01-20 10:44:27 -06:00
hardware_uart Initial Release 2021-01-20 10:44:27 -06:00
pico_bit_ops Initial Release 2021-01-20 10:44:27 -06:00
pico_divider Initial Release 2021-01-20 10:44:27 -06:00
pico_multicore Initial Release 2021-01-20 10:44:27 -06:00
pico_platform Initial Release 2021-01-20 10:44:27 -06:00
pico_printf Initial Release 2021-01-20 10:44:27 -06:00
pico_stdio Initial Release 2021-01-20 10:44:27 -06:00
pico_stdlib Initial Release 2021-01-20 10:44:27 -06:00
boot_stage2.c Initial Release 2021-01-20 10:44:27 -06:00
CMakeLists.txt Initial Release 2021-01-20 10:44:27 -06:00
README.md Initial Release 2021-01-20 10:44:27 -06:00

This is a basic set of replacement library implementations sufficient to get simple applications running on your computer (Raspberry Pi OS, Linux, macOS or Windows using Cygwin or Windows Subsystem for Linux). It is selected by PICO_PLATFORM=host in your CMake build

This can be extremely useful for testing and debugging higher level application code, or porting code which is not yet small enough to run on the RP2040 device itself.

This base level host library provides a minimal environment to compile programs, but is likely sufficient for programs that don't access hardware directly.

It is possible however to inject additional SDK library implementations/simulations to provide more complete functionality. For an example of this see the pico-host-sdl which uses the SDL2 library to add additional library support for pico_multicore, timers/alarms in pico-time and pico-audio/pico-scanvideo from pico-extras