• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

hardware_divider/11-Mar-2024-13487

hardware_gpio/11-Mar-2024-324154

hardware_sync/11-Mar-2024-258167

hardware_timer/11-Mar-2024-176133

hardware_uart/11-Mar-2024-220122

pico_bit_ops/11-Mar-2024-3220

pico_divider/11-Mar-2024-12490

pico_multicore/11-Mar-2024-5733

pico_platform/11-Mar-2024-260168

pico_printf/11-Mar-2024-75

pico_stdio/11-Mar-2024-6946

pico_stdlib/11-Mar-2024-4930

CMakeLists.txtD11-Mar-2024975 3730

README.mdD11-Mar-20241,019 1511

boot_stage2.cD11-Mar-202416 32

README.md

1This is a basic set of replacement library implementations sufficient to get simple applications
2running on your computer (Raspberry Pi OS, Linux, macOS or Windows using Cygwin or Windows Subsystem for Linux).
3It is selected by `PICO_PLATFORM=host` in your CMake build
4
5This can be extremely useful for testing and debugging higher level application code, or porting code which is not yet small enough
6to run on the RP2040 device itself.
7
8This base level host library provides a minimal environment to compile programs, but is likely sufficient for programs
9that don't access hardware directly.
10
11It is possible however to inject additional SDK library implementations/simulations to provide
12more complete functionality. For an example of this see the [pico-host-sdl](https://github.com/raspberrypi/pico-host-sdl)
13which uses the SDL2 library to add additional library support for pico_multicore, timers/alarms in pico-time and
14pico-audio/pico-scanvideo from [pico-extras](https://github.com/raspberrypi/pico-extras)
15