Home
last modified time | relevance | path

Searched refs:msg (Results 1 – 12 of 12) sorted by relevance

/hal_rpi_pico-latest/tools/pioasm/
Dpio_assembler.cpp42 std::stringstream msg; in add_instruction() local
43 msg << "program instruction limit of " << limit << " instruction(s) exceeded"; in add_instruction()
44 throw syntax_error(inst->location, msg.str()); in add_instruction()
47 std::stringstream msg; in add_instruction() local
48msg << "instruction requires 'side' to specify side set value for the instruction because non opti… in add_instruction()
49 throw syntax_error(inst->location, msg.str()); in add_instruction()
84 std::stringstream msg; in add_symbol() local
86msg << "'" << symbol->name << "' was already defined as a " << (existing->is_label ? "label" : "va… in add_symbol()
89 msg << "label '" << symbol->name << "' was already defined at " << existing->location; in add_symbol()
91 msg << "'" << symbol->name << "' was already defined at " << existing->location; in add_symbol()
[all …]
Dpio_assembler.h65 std::stringstream msg; member
66 msg << requiring_program << " is invalid outside of a program";
67 throw syntax_error(l, msg.str());
73 std::stringstream msg; member
74 msg << requiring_program << " must precede any program instructions";
75 throw syntax_error(l, msg.str());
108 std::stringstream msg; in check_version() local
109 msg << "PIO version " << min_version << " is required for '" << feature << "'"; in check_version()
110 throw syntax_error(l, msg.str()); in check_version()
Dada_output.cpp63 void header(FILE *out, const std::string msg, const int indent) { in header()
64 const std::string dashes = std::string(msg.length() + 6, '-'); in header()
67 fprintf(out, "%s-- %s --\n", indent_str.c_str(), msg.c_str()); in header()
Dgo_output.cpp56 void header(FILE *out, std::string msg) { in header()
57 fprintf(out, "// %s\n\n", msg.c_str()); in header()
Dc_sdk_output.cpp48 void header(FILE *out, std::string msg) { in header()
49 std::string dashes = std::string(msg.length(), '-'); in header()
51 fprintf(out, "// %s //\n", msg.c_str()); in header()
Dpython_output.cpp51 void header(FILE *out, std::string msg) { in header()
52 std::string dashes = std::string(msg.length(), '-'); in header()
54 fprintf(out, "# %s #\n", msg.c_str()); in header()
Dparser.yy177 …sm.add_program(@$, $2)) { std::stringstream msg; msg << "program " << $2 << " already exists"; err…
221 …ECTIVE { std::stringstream msg; msg << "unknown directive " << $1; throw syntax_er…
/hal_rpi_pico-latest/cmake/
Dgeneric_board.cmake35 set(msg "Unable to find definition of board '${PICO_BOARD}' (specified by PICO_BOARD):\n") variable
37 …string(CONCAT msg ${msg} " Looked for ${PICO_BOARD}.h in ${DIRS} (additional paths specified by …
39 …string(CONCAT msg ${msg} " Looked for ${PICO_BOARD}.cmake in ${DIRS} (additional paths specified…
40 message(FATAL_ERROR ${msg})
/hal_rpi_pico-latest/tools/pioasm/gen/
Dlexer.cpp402 static void yynoreturn yy_fatal_error ( const char* msg );
1072 #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) argument
2636 static void yynoreturn yy_fatal_error (const char* msg ) in yy_fatal_error() argument
2638 fprintf( stderr, "%s\n", msg ); in yy_fatal_error()
Dparser.cpp1074 …{ std::stringstream msg; msg << "program " << yystack_[0].value.as < std::string > () << " already… in parse() local
1206 … std::stringstream msg; msg << "unknown directive " << yystack_[0].value.as < std::string > (); th… in parse() local
1766 std::string msg = yysyntax_error_ (yyctx); in parse() local
1767 error (yyla.location, YY_MOVE (msg)); in parse()
Dparser.hpp1344 virtual void error (const location_type& loc, const std::string& msg);
/hal_rpi_pico-latest/src/rp2_common/hardware_pio/
Dpio.c27 const char *msg = in pio_sm_claim() local
33 hw_claim_or_assert(&claimed[0], which * NUM_PIO_STATE_MACHINES + sm, msg); in pio_sm_claim()