Shut Down REPL Console
Posted: Wed Jan 25, 2023 3:44 pm
I've started a console using:
I want to shut it down (destroy it). The programming guide says
I'm sure this is a dumb question, but how do I call repl->del(repl)?
Is this all I have to do to be able to use usb_serial_jtag_read_bytes() in my function?
Thanks!
Code: Select all
esp_console_new_repl_usb_serial_jtag();
esp_console_start_repl(();
Once the REPL gets started, it won’t be stopped until the user calls repl->del(repl) to destroy the REPL environment.
I'm sure this is a dumb question, but how do I call repl->del(repl)?
Is this all I have to do to be able to use usb_serial_jtag_read_bytes() in my function?
Thanks!