pico-sdk/src/host
2025-04-04 13:18:28 -05:00
..
hardware_divider SDK 2.0.0 release 2024-08-08 08:54:38 -05:00
hardware_gpio SDK 2.0.0 release 2024-08-08 08:54:38 -05:00
hardware_irq Initial commit pulled in a bunch of stuff - see description 2025-03-26 16:44:21 -05:00
hardware_sync fix return type of enable/disable interrupt methods... add host versions for completeness (#2310) 2025-03-09 14:39:21 -05:00
hardware_timer [Bazel] Fix bazel build, add presubmit (#1973) 2024-10-12 17:41:43 -05:00
hardware_uart SDK 2.0.0 release 2024-08-08 08:54:38 -05:00
pico_bit_ops SDK 2.0.0 release 2024-08-08 08:54:38 -05:00
pico_divider SDK 2.0.0 release 2024-08-08 08:54:38 -05:00
pico_multicore SDK 2.0.0 release 2024-08-08 08:54:38 -05:00
pico_platform define __force_inline in host compiles (#2396) 2025-04-04 13:18:28 -05:00
pico_printf Expand bazel build to include configuration options and broader support. (#1731) 2024-06-13 09:50:04 -05:00
pico_runtime Some small fixes/improvements for pico_minimize_runtime (#1919) 2024-09-10 18:45:25 -05:00
pico_stdio SDK 2.0.0 release 2024-08-08 08:54:38 -05:00
pico_stdlib SDK 2.0.0 release 2024-08-08 08:54:38 -05:00
pico_time_adapter Fix compilation warnings (#2089) 2024-11-23 13:41:51 -06:00
boot_stage2.c SDK 2.0.0 release 2024-08-08 08:54:38 -05:00
BUILD.bazel SDK 2.0.0 release 2024-08-08 08:54:38 -05:00
README.md SDK 2.0.0 release 2024-08-08 08:54:38 -05: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 or RP2350 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