mlx90640: Add hardware/clocks for set_sys_clock_khz.

pull/980/head
Phil Howard 2024-08-08 17:07:00 +01:00
rodzic 9088320a7d
commit 705de7be3f
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -6,7 +6,7 @@ add_executable(
)
# Pull in pico libraries that we need
target_link_libraries(${OUTPUT_NAME} pico_stdlib mlx90640 hub75_legacy hardware_vreg)
target_link_libraries(${OUTPUT_NAME} pico_stdlib mlx90640 hub75_legacy hardware_vreg hardware_clocks)
# create map/bin/hex file etc.
pico_add_extra_outputs(${OUTPUT_NAME})

Wyświetl plik

@ -1,5 +1,6 @@
#include "pico/stdlib.h"
#include "hardware/vreg.h"
#include "hardware/clocks.h"
#include "stdio.h"
#include <algorithm>