Richard Hulme
Richard Hulme
As stated in #2736, the host GPIO implementation is currently a little too basic and is missing quite a few functions that have been introduced in recent SDK versions. This...
Trying to link against pico_platform in host mode fails with "fatal error: hardware/timer.h: No such file or directory" Fixes #2733
The Bazel file for host/hardware_irq has a dependency on host/hardware_claim, which doesn't exist. It should be **common**/hardware_claim.
hardware_irq uses functions from hardware_claim but does not include the dependency in CMakeLists.txt. Normally, hardware_claim would be added automatically as a dependency by anything calling `pico_simple_hardware_impl_target` but the dependency is...
`busy_wait_at_least_cycles` cals `busy_wait_us` from hardware_timer but there no dependency in CMakeLists.txt
The host platform GPIO code has a few issues: * Only one function has been declared 'weak' so any project wishing to implement a more concrete GPIO simulation has to...