mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-12-10 07:14:36 +01:00
* Fix Bazel build breakages * Adds support for new PICO_DEFAULT_UART_BAUD_RATE option. * Fixes issues related to Picotool and boot_picoboot_headers. * Adds pico_float RISC-V pieces to the Bazel build (not yet fully tested). * Adds the missing adafruit board header to the Bazel build. * Exclude hazard3 float test in Bazel validation script * Restore missing dependency in hardware_boot_lock
13 lines
363 B
Text
13 lines
363 B
Text
package(default_visibility = ["//visibility:public"])
|
|
|
|
# This needs to remain compatible with the host build since it's used by
|
|
# Picotool.
|
|
cc_library(
|
|
name = "boot_picoboot_headers",
|
|
hdrs = [
|
|
"include/boot/picoboot.h",
|
|
"include/boot/picoboot_constants.h",
|
|
],
|
|
includes = ["include"],
|
|
deps = ["//src:pico_platform_internal"],
|
|
)
|