Home
last modified time | relevance | path

Searched refs:name (Results 1 – 25 of 230) sorted by relevance

12345678910

/hal_rpi_pico-latest/bazel/constraint/
DBUILD.bazel9 name = "sdk_target",
15 name = "host",
22 name = "rp2040",
29 name = "rp2350",
34 name = "wireless_support",
39 name = "no_wireless",
44 name = "cyw43_wireless",
49 name = "is_pico_w",
54 name = "is_pico2_w",
59 name = "pico_toolchain_clang_enabled",
[all …]
/hal_rpi_pico-latest/tools/
Dcheck_board_header.py82 name = m.group(1)
85 if name != name.upper():
86 … raise Exception("{}:{} Expected \"{}\" to be all uppercase".format(board_header, lineno, name))
88 if name in cmake_settings:
89 if cmake_settings[name].value != value:
90 …for pico_cmake_set {} ({} and {})".format(board_header, lineno, name, cmake_settings[name].value, …
93 …for pico_cmake_set {} ({} and {})".format(board_header, lineno, name, cmake_settings[name].value, …
95 cmake_settings[name] = DefineType(name, value, None, lineno)
102 name = m.group(1)
105 if name != name.upper():
[all …]
/hal_rpi_pico-latest/bazel/toolchain/
Dconfigurable_feature.bzl5 def configurable_toolchain_feature(name, copts = [], cxxopts = [], linkopts = []):
11 name = name + "_cc_args",
15 all_args.append(name + "_cc_args")
19 name = name + "_cxx_args",
23 all_args.append(name + "_cxx_args")
27 name = name + "_link_args",
31 all_args.append(name + "_link_args")
34 name = name + "_args",
39 name = name,
40 feature_name = name,
[all …]
Dclang.BUILD15 name = "toolchain_root",
23 name = "all_tools",
38 name = "asm",
43 name = "clang",
56 name = "clang++",
70 name = "lld",
88 name = "llvm-ar",
97 name = "llvm-libtool-darwin",
106 name = "llvm-objcopy",
115 name = "llvm-objdump",
[all …]
DBUILD.bazel10 name = "armv6m-none-eabi",
19 name = "armv8m.main-none-eabi",
28 name = "cortex-m0",
40 name = "cortex-m33",
59 name = "no_canonical_system_headers",
65 name = "no_canonical_prefixes",
71 name = "bazel_no_absolute_paths",
79 name = "llvm-libc_args",
90 name = "opt_debug_args",
102 name = "gc_sections",
[all …]
/hal_rpi_pico-latest/src/rp2_common/pico_lwip/
DBUILD.bazel6 name = "pico_lwip_config",
16 name = "pico_lwip_freertos",
32 name = "pico_lwip_nosys",
48 # name may change.
50 name = "pico_lwip",
55 name = "pico_lwip_core",
60 name = "pico_lwip_core4",
65 name = "pico_lwip_core6",
70 name = "pico_lwip_api",
75 name = "pico_lwip_netif",
[all …]
Dlwip.BUILD8 name = "pico_lwip_headers",
23 name = "pico_lwip_core",
33 name = "pico_lwip_core4",
40 name = "pico_lwip_core6",
47 name = "pico_lwip_api",
53 name = "pico_lwip_netif",
64 name = "pico_lwip_sixlowpan",
75 name = "pico_lwip_ppp",
81 name = "pico_lwip_snmp",
91 name = "pico_lwip_http",
[all …]
/hal_rpi_pico-latest/src/rp2_common/pico_btstack/
DBUILD.bazel13 name = "pico_btstack",
28 # name may change.
30 name = "pico_btstack_base",
35 name = "pico_btstack_ble",
40 name = "pico_btstack_classic",
45 name = "pico_btstack_mesh",
50 name = "pico_btstack_sbc_encoder",
55 name = "pico_btstack_sbc_decoder",
60 name = "pico_btstack_bnep_lwip",
65 name = "pico_btstack_bnep_lwip_sys_freertos",
[all …]
/hal_rpi_pico-latest/bazel/config/
DBUILD.bazel7 name = "PICO_TOOLCHAIN",
15 # PICO_BAZEL_CONFIG: PICO_BOARD, Board name being built for, type=string, default=pico or pico2, gr…
17 name = "PICO_BOARD",
23 name = "PICO_BARE_METAL",
29 name = "PICO_NO_GC_SECTIONS",
35 name = "PICO_DEFAULT_BOOT_STAGE2_FILE",
41 name = "PICO_DEFAULT_BOOT_STAGE2",
47 name = "PICO_BOOT_STAGE2_LINK_IMAGE",
53 name = "PICO_CXX_ENABLE_EXCEPTIONS",
59 name = "PICO_CXX_ENABLE_RTTI",
[all …]
/hal_rpi_pico-latest/tools/pioasm/
Doutput_format.h53 std::string name; member
57 …symbol(std::string name, int value, bool is_label) : name(std::move(name)), value(value), is_label… in symbol()
68 std::string name; member
91 program(std::string name) : name(std::move(name)) {} in program()
101 std::string name; member
120 output_format(std::string name) : name(std::move(name)) {} in output_format()
DBUILD.bazel6 name = "pioasm_core",
39 name = "c_sdk_output",
46 name = "python_output",
53 name = "hex_output",
60 name = "ada_output",
67 name = "pioasm",
Djson_output.cpp37 fprintf(out, "%s\t\"%s\": %d", prefix.c_str(), s.name.c_str(), s.value); in output_symbols()
57 fprintf(out, "%s\t\"%s\": %d", prefix.c_str(), s.name.c_str(), s.value); in output_symbols()
70 if (p.first.size() >= name.size() && p.first.compare(0, name.size(), name) == 0) { in output()
71 …std::cerr << "warning: " << name << " does not support output options; " << p.first << " lang_opt … in output()
95 fprintf(out, "%s\"name\": \"%s\",\n", tabs, program.name.c_str()); in output()
Dpio_assembler.h42 bool add_program(const yy::location &l, const std::string &name) { in add_program()
43 …std::find_if(programs.begin(), programs.end(), [&](const program &p) { return p.name == name; }) == in add_program()
45 programs.emplace_back(this, l, name); in add_program()
93 std::shared_ptr<symbol> get_symbol(const std::string &name, const program *p) { in get_symbol()
94 const auto &i = get_dummy_global_program().symbols.find(name); in get_symbol()
99 const auto &i2 = p->symbols.find(name); in get_symbol()
/hal_rpi_pico-latest/bazel/util/
Dlabel_flag_matches.bzl27 def label_flag_matches(*, name, flag, value):
29 name = name + "._impl",
35 name = name,
36 flag_values = {":{}".format(name + "._impl"): "True"},
/hal_rpi_pico-latest/
DMODULE.bazel2 name = "pico-sdk",
6 bazel_dep(name = "platforms", version = "0.0.9")
7 bazel_dep(name = "bazel_skylib", version = "1.6.1")
8 bazel_dep(name = "rules_python", version = "0.36.0")
9 bazel_dep(name = "picotool", version = "2.1.0")
10 bazel_dep(name = "rules_cc", version = "0.0.10")
15 name = "arm_gcc_linux-aarch64",
23 name = "arm_gcc_linux-x86_64",
31 name = "arm_gcc_win-x86_64",
39 name = "arm_gcc_mac-x86_64",
[all …]
/hal_rpi_pico-latest/src/rp2_common/pico_stdio_usb/
DBUILD.bazel7 name = "pico_stdio_usb",
16 name = "reset_interface_headers",
23 name = "tusb_config",
30 name = "LIB_PICO_STDIO_USB",
36 name = "PICO_STDIO_USB_CONNECT_WAIT_TIMEOUT_MS",
42 name = "pico_stdio_usb_headers",
57 name = "pico_stdio_usb_enabled",
86 name = "pico_stdio_usb_disabled",
/hal_rpi_pico-latest/src/rp2_common/pico_crt0/
DBUILD.bazel6 name = "default_linker_script",
15 name = "blocked_ram_linker_script",
23 name = "copy_to_ram_linker_script",
32 name = "no_flash_linker_script",
41 name = "no_warn_rwx_flag",
50 name = "pico_crt0",
69 name = "crt0_riscv",
/hal_rpi_pico-latest/src/rp2_common/pico_clib_interface/
DBUILD.bazel8 name = "pico_clib_interface",
18 name = "pico_clib_interface_link",
30 name = "pico_clib_interface_auto",
38 name = "pico_clib_interface_auto_link",
46 name = "llvm_libc_interface",
64 name = "llvm_libc_interface_link",
81 name = "newlib_interface",
86 name = "newlib_interface_link",
103 name = "picolibc_interface",
108 name = "picolibc_interface_link",
/hal_rpi_pico-latest/test/kitchen_sink/
DBUILD.bazel7 name = "btstack_config",
13 name = "lwip_config",
19 name = "mbedtls_config",
25 name = "kitchen_sink_common",
91 name = "kitchen_sink",
98 name = "kitchen_sink_cpp",
105 name = "kitchen_sink_lwip_poll_actual",
117 name = "kitchen_sink_lwip_background_actual",
128 name = "kitchen_sink_lwip_poll",
139 name = "kitchen_sink_lwip_background",
/hal_rpi_pico-latest/bazel/
DBUILD.bazel6 name = "generate_version_header",
11 # This isn't actually generated, it just uses the same name
28 name = "generate_config_header",
39 name = "empty_extra_headers_file",
47 name = "no_extra_headers",
56 name = "empty_cc_lib",
61 name = "incompatible_cc_lib",
Ddefs.bzl8 "{}_pio_generated/{}.h".format(ctx.label.name, f.basename),
36 Each source file listed in `srcs` will be available as `[pio file name].h` on
40 name = "my_fun_pio",
46 name = "libfoo",
95 def pico_board_config(name, platform_includes, **kwargs):
103 _hdr_dir = "{}_generated_includes".format(name)
106 name = "{}_platform_headers_file".format(name),
115 name = name,
/hal_rpi_pico-latest/src/rp2_common/
DBUILD.bazel5 name = "build_selected_boot2",
14 name = "boot_stage2_config",
23 name = "boot_stage2",
32 name = "hardware_regs",
41 name = "hardware_structs",
50 name = "platform_defs",
61 name = "pico_platform_internal",
86 name = "pico_platform",
/hal_rpi_pico-latest/test/pico_float_test/
DBUILD.bazel7 name = "hazard3_test_gen",
14 name = "pico_float_test_hazard3",
30 name = "pico_float_test",
48 name = "pico_double_test_actual",
66 name = "pico_double_test",
85 name = "m33",
/hal_rpi_pico-latest/src/common/pico_base_headers/include/pico/
Dtypes.h89 #define ABSOLUTE_TIME_INITIALIZED_VAR(name, value) name = value argument
91 #define ABSOLUTE_TIME_INITIALIZED_VAR(name, value) name = {value} argument
/hal_rpi_pico-latest/src/rp2040/boot_stage2/
DBUILD.bazel36 name = "config",
56 # Creates a config_setting for each known boot2 option with the name:
64 name = "build_selected_boot2",
74 name = "boot_stage2_elf_actual",
105 name = "boot_stage2_elf",
110 name = "boot_stage2_bin",
118 name = "copy_tool_to_py",
125 name = "pad_checksum_tool",
131 name = "boot_stage2_padded",
144 name = "boot_stage2",

12345678910