Home
last modified time | relevance | path

Searched refs:threshold (Results 1 – 5 of 5) sorted by relevance

/hal_rpi_pico-latest/tools/pioasm/
Dpio_types.h263 rvalue threshold; member
329 void set_out(const yy::location &l, rvalue v, bool right, bool autop, rvalue threshold) { in set_out()
334 out.threshold = threshold; in set_out()
337 void set_in(const yy::location &l, rvalue v, bool right, bool autop, rvalue threshold) { in set_in()
342 in.threshold = threshold; in set_in()
Dc_sdk_output.cpp124 …config_set_in_shift(&c, %d, %d, %d);\n", program.in.right, program.in.autop, program.in.threshold); in output()
128 …ig_set_out_shift(&c, %d, %d, %d);\n", program.out.right, program.out.autop, program.out.threshold); in output()
Dpio_assembler.cpp196 in.final_threshold = in.threshold->resolve(*this); in finalize()
197 …if (in.final_threshold < 1 || in.final_threshold > 32) throw syntax_error(in.threshold->location, … in finalize()
202 out.final_threshold = out.threshold->resolve(*this); in finalize()
203 …if (out.final_threshold < 1 || out.final_threshold > 32) throw syntax_error(out.threshold->locatio… in finalize()
510 .threshold = io.final_threshold, in write_output()
Doutput_format.h64 int threshold; member
Dparser.yy202 …| DOT_IN value direction autop threshold { pioasm.get_current_program(@1, ".in", true).set_in(@$, …
203 …| DOT_OUT value direction autop threshold { pioasm.get_current_program(@1, ".out", true).set_out(@…
390 %type <std::shared_ptr<resolvable>> threshold;
391 threshold: value { $$ = $1; }