* Enqueue command(s) to run from PROGMEM. Drained by process_injected_command_P(). * Don't inject comments or use leading spaces! * Aborts the current PROGMEM queue so only use for one or two commands. */
| 129 | * Aborts the current PROGMEM queue so only use for one or two commands. |
| 130 | */ |
| 131 | static void inject_P(PGM_P const pgcode) { injected_commands_P = pgcode; } |
| 132 | static void inject(FSTR_P const fgcode) { inject_P(FTOP(fgcode)); } |
| 133 | |
| 134 | /** |
no outgoing calls
no test coverage detected