/hal_rpi_pico-latest/src/rp2_common/hardware_rcp/include/hardware/ |
D | rcp.h | 409 .macro rcp_switch_u8_to_ch_cl macro_name, x, args:vararg 411 \macro_name c0, c0, \args 413 \macro_name c0, c1, \args 415 \macro_name c0, c2, \args 417 \macro_name c0, c3, \args 419 \macro_name c0, c4, \args 421 \macro_name c0, c5, \args 423 \macro_name c0, c6, \args 425 \macro_name c0, c7, \args 427 \macro_name c0, c8, \args [all …]
|
/hal_rpi_pico-latest/src/rp2_common/hardware_clocks/scripts/ |
D | vcocalc.py | 29 args = parser.parse_args() variable 31 refdiv_range = range(refdiv_min, max(refdiv_min, min(refdiv_max, int(args.input / args.ref_min))) +… 32 if args.lock_refdiv: 33 print("Locking REFDIV to", args.lock_refdiv) 34 refdiv_range = [args.lock_refdiv] 37 best_margin = args.output 41 vco = args.input / refdiv * fbdiv 42 if vco < args.vco_min or vco > args.vco_max: 48 margin = abs(out - args.output) 49 vco_is_better = vco < best[5] if args.low_vco else vco > best[5] [all …]
|
/hal_rpi_pico-latest/src/rp2_common/pico_stdio_semihosting/ |
D | stdio_semihosting.c | 22 } args; in stdio_semihosting_out_chars() local 24 args.fd = 1; // 1 = stdout in stdio_semihosting_out_chars() 25 args.buf = buf; in stdio_semihosting_out_chars() 26 args.len = length; in stdio_semihosting_out_chars() 45 : [args] "r" (&args) in stdio_semihosting_out_chars() 55 : [args] "r" (&args) in stdio_semihosting_out_chars()
|
/hal_rpi_pico-latest/src/rp2040/boot_stage2/ |
D | pad_checksum | 27 args = parser.parse_args() variable 30 idata = open(args.ifile, "rb").read() 32 sys.exit("Could not open input file '{}'".format(args.ifile)) 34 if len(idata) > args.pad - 4: 35 …exit("Input file size ({} bytes) too large for final size ({} bytes)".format(len(idata), args.pad)) 37 idata_padded = idata + bytes(args.pad - 4 - len(idata)) 42 …(binascii.crc32(bytes(bitrev(b, 8) for b in idata_padded), args.seed ^ 0xffffffff) ^ 0xffffffff) &… 46 with open(args.ofile, "w") as ofile: 47 ofile.write("// Padded and checksummed version of: {}\n\n".format(args.ifile)) 55 sys.exit("Could not open output file '{}'".format(args.ofile))
|
D | BUILD.bazel | 134 args = [
|
/hal_rpi_pico-latest/src/rp2350/boot_stage2/ |
D | pad_checksum | 26 args = parser.parse_args() variable 29 idata = open(args.ifile, "rb").read() 31 sys.exit("Could not open input file '{}'".format(args.ifile)) 33 if len(idata) > args.pad: 34 …exit("Input file size ({} bytes) too large for final size ({} bytes)".format(len(idata), args.pad)) 36 odata = idata + bytes(args.pad - len(idata)) 44 with open(args.ofile, "w") as ofile: 45 ofile.write("// Padded and checksummed version of: {}\n\n".format(args.ifile)) 46 if args.arch == "arm":
|
D | BUILD.bazel | 134 args = [
|
/hal_rpi_pico-latest/tools/ |
D | run_all_bazel_checks.py | 39 args = parser.parse_args() 44 "action": lambda : build_all_configurations(args.picotool_dir), 55 "action": lambda : check_sources_in_bazel_build(args.picotool_dir), 59 run_all_steps = args.program == "all" 60 if args.program == "build" or run_all_steps: 62 if args.program == "other" or run_all_steps:
|
D | bazel_build.py | 203 args = list(config["args"]) 205 args.append(override_picotool_arg(picotool_dir)) 210 *args, 230 args = parse_common_args() 231 return build_all_configurations(args.picotool_dir)
|
D | bazel_common.py | 65 def run_bazel(args, check=False, **kwargs): argument 68 *args, 80 " ".join(shlex.quote(str(arg)) for arg in args), 100 def print_to_stderr(*args, **kwargs): argument 101 print(*args, file=sys.stderr, **kwargs)
|
D | check_source_files_in_bazel_build.py | 66 def get_paths_from_command(source_dir: Path, *args, **kwargs) -> Set[Path]: argument 69 args, check=False, capture_output=True, cwd=source_dir, **kwargs 76 " ".join(shlex.quote(str(arg)) for arg in args), 209 args = parse_common_args() variable 210 sys.exit(check_sources_in_bazel_build(args.picotool_dir))
|
D | copro_dis.py | 12 args = parser.parse_args() variable 14 fin = open(args.input, mode="r") 320 fout = open(args.output, mode="w")
|
/hal_rpi_pico-latest/bazel/toolchain/ |
D | configurable_feature.bzl | 1 load("@rules_cc//cc/toolchains:args.bzl", "cc_args") 13 args = copts, 21 args = cxxopts, 29 args = linkopts, 35 args = all_args, 41 args = [":{}_args".format(name)],
|
D | BUILD.bazel | 1 load("@rules_cc//cc/toolchains:args.bzl", "cc_args") 15 args = ["--target=armv6m-none-eabi"], 24 args = ["--target=armv8m.main-none-eabi"], 33 args = [ 45 args = [ 61 args = ["-fno-canonical-system-headers"], 67 args = ["-no-canonical-prefixes"], 72 args = select({ 81 args = [ 95 args = [ [all …]
|
D | clang.BUILD | 5 load("@rules_cc//cc/toolchains:args.bzl", "cc_args")
|
/hal_rpi_pico-latest/src/rp2_common/pico_platform_panic/ |
D | panic.c | 70 va_list args; in panic() 71 va_start(args, fmt); in panic() 73 vprintf(fmt, args); in panic() 75 weak_raw_vprintf(fmt, args); in panic() 77 va_end(args); in panic()
|
/hal_rpi_pico-latest/src/host/pico_platform/ |
D | platform_base.c | 28 va_list args; in panic() local 32 va_start(args, fmt); in panic() 33 vprintf(fmt, args); in panic() 34 va_end(args); in panic()
|
/hal_rpi_pico-latest/test/hardware_irq_test/ |
D | hardware_irq_test.c | 91 va_list args; in dma_check() local 92 va_start(args, expected); in dma_check() 95 if (fired[i] != va_arg(args, int)) { in dma_check() 100 va_end(args); in dma_check() 104 va_start(args, expected); in dma_check() 107 printf("%d", va_arg(args, int)); in dma_check() 110 va_end(args); in dma_check()
|
/hal_rpi_pico-latest/src/rp2_common/pico_lwip/tools/ |
D | makefsdata.py | 148 args = parser.parse_args() 149 print(args.input) 155 with open(args.output, "w") as fd: 156 process_file_list(fd, args.input)
|
/hal_rpi_pico-latest/src/rp2_common/pico_printf/include/pico/ |
D | printf.h | 66 bool weak_raw_vprintf(const char *fmt, va_list args);
|
/hal_rpi_pico-latest/src/rp2_common/pico_cyw43_driver/cybt_shared_bus/ |
D | cybt_shared_bus.c | 38 …ine cybt_debug(format,args...) printf("%d.%d: " format, (int)cyw43_hal_ticks_ms() / 1000, (int)cyw… argument 42 …e cybt_printf(format, args...) printf("%d.%d: " format, (int)cyw43_hal_ticks_ms() / 1000, (int)cyw… argument
|
D | cybt_shared_bus_driver.c | 27 #define cybt_printf(format, args ...) printf(format,##args) argument 38 #define cybt_debug(format, args ...) printf(format,##args) argument
|
/hal_rpi_pico-latest/src/rp2_common/pico_btstack/ |
D | btstack_flash_bank.c | 21 #define DEBUG_PRINT(format,args...) printf(format, ## args)
|
/hal_rpi_pico-latest/src/rp2_common/hardware_powman/ |
D | powman.c | 25 #define powman_debug(format, args...) if (powman_debug_printf) printf(format, ## args) argument
|
/hal_rpi_pico-latest/src/common/boot_picoboot_headers/include/boot/ |
D | picoboot.h | 152 uint8_t args[16]; member
|