| /hal_rpi_pico-latest/tools/pioasm/ |
| D | pio_disassembler.cpp | 38 uint source = arg1 & 3u; in disassemble() local 40 switch (source) { in disassemble() 72 std::string source = sources[arg1]; in disassemble() local 73 if (source.empty()) { in disassemble() 77 op_guts(source + ", " + std::to_string(arg2 ? arg2 : 32)); in disassemble() 122 std::string source = sources[arg2 & 7u]; in disassemble() local 124 if (source.empty() || dest.empty() || operation == 3) { in disassemble() 127 if (dest == source && !operation && (arg1 == 1 || arg2 == 2)) { in disassemble() 138 guts += source; in disassemble()
|
| D | python_output.cpp | 60 const compiled_source &source) override { in output() 70 output_symbols(out, "", source.global_symbols); in output() 72 for (const auto &program : source.programs) { in output() 185 uint source = arg1 & 3u; in disassemble() local 187 switch (source) { in disassemble() 217 std::string source = sources[arg1]; in disassemble() local 218 if (source.empty()) { in disassemble() 222 op_guts(source + ", " + std::to_string(arg2 ? arg2 : 32)); in disassemble() 253 std::string source = sources[arg2 & 7u]; in disassemble() local 255 if (source.empty() || dest.empty() || operation == 3) { in disassemble() [all …]
|
| D | hex_output.cpp | 24 const compiled_source &source) { in output() 28 if (source.programs.size() > 1) { in output() 33 for (const auto &i : source.programs[0].instructions) { in output()
|
| D | pio_assembler.cpp | 26 source = _source; in generate() 29 location.initialize(&source); in generate() 399 uint arg2 = source->param->resolve(program); in raw_encode() 400 switch (source->target) { in raw_encode() 402 …if (arg2 > 7) throw syntax_error(source->param->location, "irq number must be must be >= 0 and <= … in raw_encode() 407 …throw syntax_error(source->param->location, "absolute GPIO number must be must be >= 0 and <= 31"); in raw_encode() 410 …throw syntax_error(source->param->location, "absolute GPIO number must be must be >= 0 and <= 47"); in raw_encode() 414 …throw syntax_error(source->param->location, "absolute GPIO number must be must be >= 0 and <= 31 a… in raw_encode() 417 …throw syntax_error(source->param->location, "absolute GPIO number must be must be >= 16 and <= 47 … in raw_encode() 423 …if (arg2 > 31) throw syntax_error(source->param->location, "pin number must be must be >= 0 and <=… in raw_encode() [all …]
|
| D | go_output.cpp | 61 const compiled_source &source) override { in output() 71 for (const auto &program : source.programs) { in output() 81 for (const auto &program : source.programs) { in output() 120 output_symbols(out, "", source.global_symbols); in output()
|
| D | json_output.cpp | 66 const compiled_source &source) override { in output() 68 for (const auto &program : source.programs) { in output() 81 output_symbols(out, false, "\t", source.global_symbols); in output() 86 for (const auto &program : source.programs) { in output()
|
| D | ada_output.cpp | 73 const compiled_source &source) override { in output() 75 for (const auto &program : source.programs) { in output() 106 for (const auto &program : source.programs) { in output() 116 output_symbols(out, source.global_symbols); in output()
|
| D | c_sdk_output.cpp | 57 const compiled_source &source) override { in output() 59 for (const auto &program : source.programs) { in output() 78 output_symbols(out, "", source.global_symbols); in output() 80 for (const auto &program : source.programs) { in output()
|
| D | pio_assembler.h | 34 std::string source; member 55 … dummy_global_program = std::shared_ptr<program>(new program(this, yy::location(&source), "")); in get_dummy_global_program()
|
| D | pio_types.h | 390 std::shared_ptr<wait_source> source; member 392 …instr_wait(const yy::location &l, rvalue polarity, std::shared_ptr<wait_source> source) : instruct… in instr_wait() 393 std::move(polarity)), source(std::move(source)) {} in instr_wait()
|
| D | lexer.ll | 264 if (source.empty () || source == "-") 266 else if (!(yyin = fopen (source.c_str (), "r"))) 268 std::cerr << "cannot open " << source << ": " << strerror(errno) << '\n';
|
| D | output_format.h | 108 const compiled_source &source) = 0;
|
| /hal_rpi_pico-latest/tools/ |
| D | check_source_files_in_bazel_build.py | 180 for source in all_source_files: 182 if source.match(pattern): 183 ignored_files.append(source)
|
| /hal_rpi_pico-latest/src/rp2_common/hardware_pio/include/hardware/ |
| D | pio.h | 1273 static inline void pio_set_irq0_source_enabled(PIO pio, pio_interrupt_source_t source, bool enabled… in pio_set_irq0_source_enabled() argument 1275 invalid_params_if(HARDWARE_PIO, source >= 32u || (1u << source) > PIO_INTR_BITS); in pio_set_irq0_source_enabled() 1277 hw_set_bits(&pio->inte0, 1u << source); in pio_set_irq0_source_enabled() 1279 hw_clear_bits(&pio->inte0, 1u << source); in pio_set_irq0_source_enabled() 1289 static inline void pio_set_irq1_source_enabled(PIO pio, pio_interrupt_source_t source, bool enabled… in pio_set_irq1_source_enabled() argument 1291 invalid_params_if(HARDWARE_PIO, source >= 32 || (1u << source) > PIO_INTR_BITS); in pio_set_irq1_source_enabled() 1293 hw_set_bits(&pio->inte1, 1u << source); in pio_set_irq1_source_enabled() 1295 hw_clear_bits(&pio->inte1, 1u << source); in pio_set_irq1_source_enabled() 1340 …pio_set_irqn_source_enabled(PIO pio, uint irq_index, pio_interrupt_source_t source, bool enabled) { in pio_set_irqn_source_enabled() argument 1342 invalid_params_if(HARDWARE_PIO, source >= 32 || (1u << source) > PIO_INTR_BITS); in pio_set_irqn_source_enabled() [all …]
|
| /hal_rpi_pico-latest/test/pico_stdlib_test/ |
| D | BUILD.bazel | 17 "//src/common/pico_time", # TODO: This header should be #include'ed from source.
|
| /hal_rpi_pico-latest/ |
| D | LICENSE.TXT | 3 Redistribution and use in source and binary forms, with or without modification, are permitted prov… 6 1. Redistributions of source code must retain the above copyright notice, this list of conditions a…
|
| /hal_rpi_pico-latest/src/rp2040/boot_stage2/ |
| D | CMakeLists.txt | 9 …_BOOT_STAGE2_FILE "${PICO_DEFAULT_BOOT_STAGE2_FILE}" CACHE STRING "boot stage 2 source file" FORCE) 26 …message(FATAL_ERROR "Specified boot stage 2 source '${PICO_DEFAULT_BOOT_STAGE2_FILE}' does not exi… 36 # by convention the first source file name without extension is used for the binary info name
|
| /hal_rpi_pico-latest/src/rp2350/boot_stage2/ |
| D | CMakeLists.txt | 9 …_BOOT_STAGE2_FILE "${PICO_DEFAULT_BOOT_STAGE2_FILE}" CACHE STRING "boot stage 2 source file" FORCE) 26 …message(FATAL_ERROR "Specified boot stage 2 source '${PICO_DEFAULT_BOOT_STAGE2_FILE}' does not exi… 36 # by convention the first source file name without extension is used for the binary info name
|
| /hal_rpi_pico-latest/src/rp2_common/pico_cyw43_driver/cybt_shared_bus/ |
| D | CMakeLists.txt | 12 # The BT firmware is supplied as a source file containing a static array with ascii hex data
|
| /hal_rpi_pico-latest/docs/ |
| D | weblinks_page.md | 28 All the source code for the Raspberry Pi Pico SDK, examples and other libraries can be found on Git… 34 - [Pico Bootrom source code](https://github.com/raspberrypi/pico-bootrom)
|
| D | mainpage.md | 9 This documentation is generated from the SDK source tree using Doxygen. It provides basic informati… 27 …s can be found [here](@ref examples_page). These examples, and any other source code included in t…
|
| /hal_rpi_pico-latest/src/rp2350/hardware_structs/include/hardware/structs/ |
| D | timer.h | 87 io_rw_32 source;
|
| /hal_rpi_pico-latest/src/rp2_common/pico_lwip/tools/ |
| D | CMakeLists.txt | 1 # Compile the http content into a source file "pico_fsdata.inc" in a format suitable for the lwip h…
|
| /hal_rpi_pico-latest/bazel/ |
| D | defs.bzl | 34 doc = """Generates a .h header file for each listed pio source. 36 Each source file listed in `srcs` will be available as `[pio file name].h` on
|
| /hal_rpi_pico-latest/src/rp2_common/pico_standard_binary_info/ |
| D | BUILD.bazel | 7 # source files.
|