mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2026-01-27 17:37:20 +01:00
remove duplicate pico_rand inclusion in kitchen_sink (#1206)
This commit is contained in:
parent
1552324a64
commit
2a9c59925a
2 changed files with 3 additions and 5 deletions
|
|
@ -41,7 +41,6 @@ target_link_libraries(kitchen_sink_libs INTERFACE
|
|||
pico_time
|
||||
pico_unique_id
|
||||
pico_util
|
||||
pico_rand
|
||||
)
|
||||
|
||||
add_library(kitchen_sink_options INTERFACE)
|
||||
|
|
|
|||
|
|
@ -33,6 +33,9 @@
|
|||
#include "pico/binary_info.h"
|
||||
#include "pico/bit_ops.h"
|
||||
#include "pico/bootrom.h"
|
||||
#if LIB_PICO_CYW43_ARCH
|
||||
#include "pico/cyw43_arch.h"
|
||||
#endif
|
||||
#include "pico/divider.h"
|
||||
#include "pico/double.h"
|
||||
#include "pico/fix/rp2040_usb_device_enumeration.h"
|
||||
|
|
@ -48,10 +51,6 @@
|
|||
#include "pico/sync.h"
|
||||
#include "pico/time.h"
|
||||
#include "pico/unique_id.h"
|
||||
#include "pico/rand.h"
|
||||
#if LIB_PICO_CYW43_ARCH
|
||||
#include "pico/cyw43_arch.h"
|
||||
#endif
|
||||
|
||||
#include "hardware/structs/adc.h"
|
||||
#include "hardware/structs/bus_ctrl.h"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue