micropython/stm/pyexec.h
Damien George 754a8dd827 stm: Put REPL functions in own file; add raw REPL mode.
Raw REPL mode is activated by CTRL-A, and allows you to more easily
communicate with the pyboard over the serial channel.  In particular,
automated communication using, eg, pyserial on the PC side.
2014-02-16 21:36:03 +00:00

6 lines
139 B
C

void pyexec_raw_repl(void);
void pyexec_repl(void);
bool pyexec_file(const char *filename);
mp_obj_t pyb_set_repl_info(mp_obj_t o_value);