Home
last modified time | relevance | path

Searched refs:source (Results 1 – 25 of 40) sorted by relevance

12

/hal_rpi_pico-latest/tools/pioasm/
Dpio_disassembler.cpp38 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()
Dpython_output.cpp60 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 …]
Dhex_output.cpp24 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()
Dpio_assembler.cpp26 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 …]
Dgo_output.cpp61 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()
Djson_output.cpp66 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()
Dada_output.cpp73 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()
Dc_sdk_output.cpp57 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()
Dpio_assembler.h34 std::string source; member
55 … dummy_global_program = std::shared_ptr<program>(new program(this, yy::location(&source), "")); in get_dummy_global_program()
Dpio_types.h390 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()
Dlexer.ll264 if (source.empty () || source == "-")
266 else if (!(yyin = fopen (source.c_str (), "r")))
268 std::cerr << "cannot open " << source << ": " << strerror(errno) << '\n';
Doutput_format.h108 const compiled_source &source) = 0;
/hal_rpi_pico-latest/tools/
Dcheck_source_files_in_bazel_build.py180 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/
Dpio.h1273 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/
DBUILD.bazel17 "//src/common/pico_time", # TODO: This header should be #include'ed from source.
/hal_rpi_pico-latest/
DLICENSE.TXT3 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/
DCMakeLists.txt9 …_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/
DCMakeLists.txt9 …_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/
DCMakeLists.txt12 # The BT firmware is supplied as a source file containing a static array with ascii hex data
/hal_rpi_pico-latest/docs/
Dweblinks_page.md28 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)
Dmainpage.md9 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/
Dtimer.h87 io_rw_32 source;
/hal_rpi_pico-latest/src/rp2_common/pico_lwip/tools/
DCMakeLists.txt1 # Compile the http content into a source file "pico_fsdata.inc" in a format suitable for the lwip h…
/hal_rpi_pico-latest/bazel/
Ddefs.bzl34 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/
DBUILD.bazel7 # source files.

12