/Zephyr-Core-2.7.6/doc/guides/flash_debug/ |
D | probes.rst | 3 Debug Probes 6 A *debug probe* is special hardware which allows you to control execution of a 7 Zephyr application running on a separate board. Debug probes usually allow 10 also support other debug software and more advanced features such as 12 software supported by Zephyr, see :ref:`flash-debug-host-tools`. 14 Debug probes are usually connected to your host workstation via USB; they 16 connect to the device running Zephyr using the JTAG or SWD protocols. Debug 21 an onboard debug probe, usb-to-serial adapter, and sometimes a drag-and-drop 22 flash programmer. This eliminates the need to purchase an external debug probe 23 and provides a variety of debug host tool options. [all …]
|
D | host-tools.rst | 1 .. _flash-debug-host-tools: 3 Flash & Debug Host Tools 7 flash and debug Zephyr applications. 10 ``debug``, ``debugserver``, and ``attach`` commands, provided your board 12 file declares that support properly. See :ref:`west-build-flash-debug` for 185 .. _jlink-debug-host-tools: 187 J-Link Debug Host Tools 190 Segger provides a suite of debug host tools for Linux, macOS, and Windows 198 These debug host tools are compatible with the following debug probes: 200 - :ref:`lpclink2-jlink-onboard-debug-probe` [all …]
|
/Zephyr-Core-2.7.6/scripts/west_commands/ |
D | debug.py | 7 '''west "debug", "debugserver", and "attach" commands.''' 16 class Debug(WestCommand): class 19 super(Debug, self).__init__( 20 'debug', 22 'flash and interactively debug a Zephyr application', 28 self.runner_key = 'debug-runner' # in runners.yaml 43 'connect to board and launch a debug server', 45 Connect to the board and launch a debug server which accepts 48 The debug server binds to a known port, and allows client software 49 started elsewhere to connect to it and debug the running [all …]
|
/Zephyr-Core-2.7.6/soc/arm/microchip_mec/mec1501/ |
D | Kconfig.soc | 81 prompt "MEC1501 debug interface general configuration" 85 Select Debug SoC interface support for MEC15xx SoC family 88 bool "Disable debug support" 90 Debug port is disabled, JTAG/SWD cannot be enabled. JTAG_RST# 95 bool "Debug support via Serial wire debug" 100 bool "Debug support via Serial wire debug with tracing enabled" 108 prompt "MEC1501 debug interface trace configuration" 112 Select tracing mode for debug interface 115 bool "Debug support via Serial wire debug" 121 bool "debug support via Serial Wire Debug and Viewer"
|
/Zephyr-Core-2.7.6/boards/xtensa/intel_adsp_cavs15/tools/lib/ |
D | device.py | 51 logging.debug(">>> Device.open_device()") 64 logging.debug(self.dev_info) 94 logging.debug("<<< Device.open_device()") 97 logging.debug(">>> Device.alloc_memory()") 102 logging.debug("<<< Device.alloc_memory()") 106 logging.debug(">>> Device.free_memory()") 114 logging.debug("<<< Device.free_memory()") 117 logging.debug("Controller power down") 121 logging.debug(" HDA_GCTL=%s" % self.hda_gctl) 123 logging.debug("Controller power up") [all …]
|
D | loader.py | 86 logging.debug(">>> FirmwareLoader.reset_dsp()") 87 logging.debug("Recycling controller power...") 93 logging.debug("Power down cores...") 96 logging.debug("<<< FirmwareLoader.reset_dsp()") 99 logging.debug(">>> FirmwareLoader.boot_dsp()") 105 logging.debug("Purging pending FW request") 110 logging.debug(" DSP_HIPCI=%s" % self.dev.dsp_hipci) 115 logging.debug("Wait for IPC DONE bit from ROM") 121 logging.debug("<<< FirmwareLoader.boot_dsp()") 124 logging.debug(">>> FirmwareLoader.check_fw_boot_status(0x%08X)" % expected) [all …]
|
D | stream_desc.py | 25 logging.debug("Page Count: %d" % self.page_count) 28 logging.debug("Allocate DMA Buffer: size=0x%08X alloc_size=0x%08X" 40 logging.debug("Copying Data to DMA buffer") 61 logging.debug("Update Buffer Descriptor List:") 76 logging.debug(" BDLE#%02d: ADDR: %s LEN: %s IOC: %s" 80 logging.debug(" BDLE#%02d: ADDR: %s LEN: %s IOC: %s" 148 logging.debug("SD#%02d: Set Bitrate: 0x%04X" % (self.idx, bit_rate)) 152 logging.debug("SD#%02d: SD_FMT=%s" % (self.idx, self.fmt)) 155 logging.debug("SD#%02d: Set Stream ID: 0x%04X" % (self.idx, stream_id)) 160 logging.debug("SD#%02d: SD_CTL_STS=%s" % (self.idx, self.ctl_sts)) [all …]
|
D | loglist.py | 19 def __init__(self, argument, debug=False): argument 32 self.debug = debug 50 if self.debug: 51 # Add slot number when debug is enabled
|
D | driver.py | 108 logging.debug(">>> DiagDriver.open_device()") 120 logging.debug("<<< DiagDriver.open_device()") 132 logging.debug(">>> Diag_Driver.alloc_mem(size=0x%08X)" % size) 149 logging.debug("DMA Memory:\n%s" % hda_buf) 154 logging.debug("<<< Diag_Driver.alloc_mem()") 168 logging.debug(">>> Diag_Driver.free_mem()") 174 logging.debug("Buffer to Free:\n%s" % hda_buf) 184 logging.debug("<<< Diag_Driver.free_mem()") 195 logging.debug(">>> Diag_Driver.mmap(addr=0x%08X, length=0x%08X)" 211 logging.debug("<<< Diag_Driver.mmap()")
|
/Zephyr-Core-2.7.6/subsys/net/ip/ |
D | Kconfig.debug | 1 # Debug Options 17 module-help = Enables debug of network packet and buffer allocations and frees. 21 bool "Debug network packet and buffer individual allocation" 51 module-help = Enables core network stack code to output debug messages. 57 module-help = Enables network interface code to output debug messages. 63 module-help = Enables network traffic class code to output debug messages. 69 module-help = Enables utility functions to output debug messages. 81 module-help = Enables UDP/TCP connection debug messages. 87 module-help = Enables routing engine debug messages.
|
/Zephyr-Core-2.7.6/scripts/ |
D | west-commands.yml | 28 - file: scripts/west_commands/debug.py 30 - name: debug 31 class: Debug 32 help: flash and interactively debug a Zephyr application 35 help: connect to board and launch a debug server 38 help: interactively debug a board
|
/Zephyr-Core-2.7.6/arch/common/ |
D | gen_isr_tables.py | 30 def debug(text): function 31 if args.debug: 85 debug(str(header)) 93 debug("Configured interrupt routing") 94 debug("handler irq flags param") 95 debug("--------------------------") 98 debug("{0:<10} {1:<3} {2:<3} {3}".format( 113 parser.add_argument("-d", "--debug", action="store_true", 215 debug('2nd level offsets: {}'.format(list_2nd_lvl_offsets)) 224 debug('3rd level offsets: {}'.format(list_3rd_lvl_offsets)) [all …]
|
/Zephyr-Core-2.7.6/scripts/logging/dictionary/ |
D | log_parser.py | 39 argparser.add_argument("--debug", action="store_true", 51 if args.debug: 52 logger.setLevel(logging.DEBUG) 114 logger.debug("# Build ID: %s", database.get_build_id()) 115 logger.debug("# Target: %s, %d-bit", database.get_arch(), database.get_tgt_bits()) 117 logger.debug("# Endianness: Little") 119 logger.debug("# Endianness: Big") 121 ret = log_parser.parse_log_data(logdata, debug=args.debug)
|
/Zephyr-Core-2.7.6/subsys/bluetooth/audio/ |
D | Kconfig.aics | 35 ############# DEBUG ############# 38 bool "Audio Input Control Service debug" 41 Use this option to enable Audio Input Control Service debug logs for 65 ############# DEBUG ############# 68 bool "Audio Input Control Service client debug" 71 Use this option to enable Audio Input Control Service client debug
|
D | Kconfig.vocs | 35 ############# DEBUG ############# 38 bool "Volume Offset Control Service debug" 41 Use this option to enable Volume Offset Control Service debug logs for 65 ############# DEBUG ############# 68 bool "Volume Offset Control Service client debug" 71 Use this option to enable Volume Offset Control Service client debug
|
D | Kconfig.mics | 36 ############# DEBUG ############# 39 bool "Microphone Input Control Service debug" 42 Use this option to enable Microphone Input Control Service debug logs 73 ############# DEBUG ############# 76 bool "Microphone Control Profile debug" 79 Use this option to enable Microphone Control Profile debug logs for
|
D | Kconfig.vcs | 50 ############# DEBUG ############# 53 bool "Volume Control Service debug" 56 Use this option to enable Volume Control Service debug logs for the 102 ############# DEBUG ############# 105 bool "Volume Control Profile debug" 108 Use this option to enable Volume Control Profile debug logs for the
|
/Zephyr-Core-2.7.6/subsys/bluetooth/mesh/ |
D | Kconfig | 768 bool "Enable debug logs" 771 Use this option to enable debug logs for the Bluetooth 785 bool "Network layer debug" 787 Use this option to enable Network layer debug logs for the 791 bool "Replay protection list debug" 793 Use this option to enable Replay protection list debug logs 797 bool "Transport layer debug" 799 Use this option to enable Transport layer debug logs for the 803 bool "Beacon debug" 805 Use this option to enable Beacon-related debug logs for the [all …]
|
/Zephyr-Core-2.7.6/modules/mbedtls/ |
D | Kconfig | 80 bool "mbed TLS debug activation" 84 mbedTLS/Zephyr integration (e.g. net_app), this will activate debug 94 int "mbed TLS default debug level" 99 Default mbed TLS debug logging level for Zephyr integration code 100 (from ext/lib/crypto/mbedtls/include/mbedtls/debug.h): 101 0 No debug 108 bool "mbed TLS memory debug activation" 113 issues. Enables function for 'debug output' of allocated memory. 159 Enable mbed TLS shell module, which allows to show debug information
|
/Zephyr-Core-2.7.6/boards/arm/msp_exp432p401r_launchxl/support/ |
D | MSP432P401R.ccxml | 3 <configuration XML_version="1.2" id="Texas Instruments XDS110 USB Debug Probe_0"> 4 …exas Instruments XDS110 USB Debug Probe_0" href="connections/TIXDS110_Connection.xml" id="Texas In… 5 <connection XML_version="1.2" id="Texas Instruments XDS110 USB Debug Probe_0">
|
/Zephyr-Core-2.7.6/tests/misc/test_build/ |
D | testcase.yaml | 2 buildsystem.debug.build: 5 extra_args: CONF_FILE=debug.conf 6 tags: debug
|
/Zephyr-Core-2.7.6/subsys/bluetooth/host/ |
D | Kconfig | 372 bool "Enable Security Manager Debug Mode" 374 This option places Security Manager in a Debug Mode. In this mode 398 bool "Store Debug Mode bonds" 574 bool "Bluetooth Direction Finding debug" 577 This option enables debug support for Bluetooth Direction Finding 614 bool "Bluetooth storage debug" 617 This option enables debug support for Bluetooth storage. 620 bool "Bluetooth HCI core debug" 622 This option enables debug support for Bluetooth HCI 626 bool "Bluetooth connection debug" [all …]
|
/Zephyr-Core-2.7.6/boards/xtensa/intel_s1000_crb/support/ |
D | create_board_img.py | 53 def debug(text): function 72 debug("Creating flash image with following options:") 76 debug("-m no_sram") 80 debug("-c no_l1cache") 84 debug("-t no_tlb") 88 debug("-x no_exec") 92 debug("-s no_sha") 96 debug("-k clk_sel") 101 debug("load address = 0x%X" % load_address) 219 debug("Input %s = %ld bytes" % (os.path.basename(args.in_file), in_file_size)) [all …]
|
/Zephyr-Core-2.7.6/scripts/coredump/ |
D | coredump_gdbserver.py | 29 parser.add_argument("--debug", action="store_true", 47 if args.debug: 48 logger.setLevel(logging.DEBUG) 56 if args.debug: 57 logger.setLevel(logging.DEBUG) 65 if args.debug: 66 logger.setLevel(logging.DEBUG)
|
/Zephyr-Core-2.7.6/boards/xtensa/intel_adsp_cavs15/tools/ |
D | dump_trace.py | 20 arg_parser.add_argument("-d", "--debug", default=False, action='store_true', 21 help="Display debug information") 35 if args.debug: 36 log_level = logging.DEBUG
|