Searched refs:yellow_print (Results 1 – 8 of 8) sorted by relevance
/hal_espressif-latest/tools/idf_monitor/idf_monitor_base/ |
D | coredump.py | 11 from .output_helpers import yellow_print 58 yellow_print('Communicating through WebSocket') 62 yellow_print('Waiting for debug finished event') 64 yellow_print('Communications through WebSocket is finished') 78 yellow_print('Failed to run espcoredump script: {}\n{}\n\n'.format(e, e.output)) 88 yellow_print('Couldn\'t remote temporary core dump file ({})'.format(e)) 94 yellow_print('Initiating core dump!') 98 yellow_print('Core dump started (further output muted)') 105 yellow_print('\nCore dump finished!') 114 yellow_print('Received %3d kB...' % new_buffer_len_kb, newline='\r')
|
D | gdbhelper.py | 9 from .output_helpers import normal_print, red_print, yellow_print 91 yellow_print('Communicating through WebSocket') 95 yellow_print('Waiting for debug finished event') 97 yellow_print('Communications through WebSocket is finished') 122 yellow_print('\nBacktrace:\n\n') 125 yellow_print('Failed to run gdb_panic_server.py script: {}\n{}\n\n'.format(e, e.output)) 132 yellow_print('Couldn\'t remove temporary panic output file ({})'.format(e))
|
D | logger.py | 23 from .output_helpers import lookup_pc_address, red_print, yellow_print 79 yellow_print('\nLogging is enabled into file {}'.format(name)) 88 yellow_print('\nLogging is disabled and file {} has been closed'.format(name)) 123 …yellow_print('\nToggle output display: {}, Type Ctrl-T Ctrl-Y to show/disable output again.'.forma… 134 self.print(translation, console_printer=yellow_print)
|
D | serial_reader.py | 12 from .output_helpers import red_print, yellow_print 71 yellow_print('Waiting for the device to reconnect', newline='') 79 yellow_print('.', newline='') 81 yellow_print('') # go to new line
|
D | web_socket_client.py | 18 from .output_helpers import red_print, yellow_print 83 yellow_print('WebSocket sent: {}'.format(payload_dict)) 105 yellow_print('WebSocket received: {}'.format(obj))
|
D | serial_handler.py | 25 from .output_helpers import yellow_print 35 yellow_print('Running %s...' % ' '.join(popen_args)) 130 yellow_print('Stack dump detected') 159 yellow_print('linux target does not support this command') 183 yellow_print('Pause app (enter bootloader mode), press Ctrl-T Ctrl-R to restart')
|
D | output_helpers.py | 53 def yellow_print(message, newline='\n'): # type: (str, Optional[str]) -> None function
|
/hal_espressif-latest/tools/idf_monitor/ |
D | idf_monitor.py | 51 from idf_monitor_base.output_helpers import normal_print, yellow_print 156 yellow_print('To exit from IDF monitor please use \"Ctrl+]\" or \"Ctrl+C\"') 282 yellow_print('--- WARNING: GDB cannot open serial ports accessed as COMx') 283 yellow_print('--- Using %s instead...' % args.port) 286 yellow_print('--- WARNING: Serial ports accessed as /dev/tty.* will hang gdb if launched.') 287 yellow_print('--- Using %s instead...' % args.port) 308 yellow_print('--- idf_monitor on linux ---') 321 yellow_print('--- idf_monitor on {p.name} {p.baudrate} ---'.format(p=serial_instance)) 338 yellow_print('--- Quit: {} | Menu: {} | Help: {} followed by {} ---'.format( 344 yellow_print('--- Print filter: {} ---'.format(args.print_filter))
|