pico-sdk
pico-sdk copied to clipboard
hardware_adc_headers must depend on hardware_gpio_headers
Since hardware/adc.h
includes hardware/gpio.h
, hardware_adc_headers
must depend on hardware_gpio_headers
Fixes #975
Also links tangentially to #882 ?
@lurch tangentially yes, but hardware_adc
doesn't directly depend on hardware_gpio
either (from CMakeLists.txt):
pico_simple_hardware_target(adc)
# additional library
target_link_libraries(hardware_adc INTERFACE hardware_resets)
all dependencies issues are moving to 1.5.0
closed in favor of #1211