Home
last modified time | relevance | path

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

/hal_espressif-latest/tools/idf_monitor/idf_monitor_base/
Dconsole_parser.py42 def __init__(self, eol='CRLF'): # type: (str) -> None argument
47 }[eol]
51 self.eol = {'CRLF': b'\r\n', 'CR': b'\r', 'LF': b'\n'}[eol]
Dserial_handler.py76 sp = data.split(console_parser.eol)
/hal_espressif-latest/components/hal/include/hal/
Dusb_dwc_ll.h130 uint32_t eol: 1; member
150 uint32_t eol: 1; member
160 uint32_t eol: 1; member
910 qtd->in_non_iso.eol = 1; //Used to halt the channel at this qtd in usb_dwc_ll_qtd_set_in()
936 qtd->in_non_iso.eol = 1; //Used to halt the channel at this qtd in usb_dwc_ll_qtd_set_out()
/hal_espressif-latest/tools/idf_monitor/
Didf_monitor.py77 eol='CRLF', # type: str argument
122 self.console_parser = ConsoleParser(eol)
329 args.eol,
/hal_espressif-latest/west/
Dtools.py184 …s.executable, str(monitor_path), "-p", esp_port, "-b", args.baud, str(elf_path), "--eol", args.eol]