/Zephyr-latest/samples/subsys/debug/debugmon/ |
D | README.rst | 2 :name: Debug Monitor 4 Configure the Debug Monitor feature on a Cortex-M processor. 9 The Debug Monitor sample shows a basic configuration of debug monitor feature. 14 #. Configure registers to enable degugging in debug monitor mode 24 #. Support Debug Monitor feature (available on Cortex-M processors with the exception of Cortex-M0) 32 Build and flash Debug Monitor as follows, changing ``reel_board`` for your board: 40 After flashing the board enters a breakpoint and executes debug monitor exception code. 41 The LED starts to blink, indicating that even though the processor spins in debug monitor
|
/Zephyr-latest/doc/services/debugging/ |
D | debugmon.rst | 3 Cortex-M Debug Monitor 6 Monitor mode debugging is a Cortex-M feature, that provides a non-halting approach to 13 Zephyr provides support for enabling and configuring the Debug Monitor exception. 23 requires an implementation of debug monitor interrupt that will be executed 29 * :kconfig:option:`CONFIG_SEGGER_DEBUGMON`: enables SEGGER debug monitor interrupt. Can be 36 When monitor mode debugging is enabled, entering a breakpoint will not halt the 46 required to debug in the monitor mode using regular GDB commands. 47 Steps to configure SEGGER debug monitor: 58 4. Enable monitor mode debugging in GDB using command: ``monitor exec SetMonModeDebug=1``. 65 In order to provide a custom debug monitor interrupt, override ``z_arm_debug_monitor``
|
/Zephyr-latest/samples/userspace/prod_consumer/ |
D | README.rst | 40 - App A monitor thread in user mode waits for data in the message queue. 62 I:monitor thread got data payload #0 64 I:monitor thread got data payload #1 66 I:monitor thread got data payload #2 68 I:monitor thread got data payload #3 70 I:monitor thread got data payload #4 74 I:monitor thread got data payload #5 78 I:monitor thread got data payload #6 82 I:monitor thread got data payload #7 86 I:monitor thread got data payload #8 [all …]
|
/Zephyr-latest/drivers/sensor/ti/ina219/ |
D | Kconfig | 1 # INA219 Bidirectional Current/Power Monitor 7 bool "INA219 Current/Power Monitor" 12 Enable driver for INA219 Bidirectional Current/Power Monitor.
|
/Zephyr-latest/drivers/sensor/ti/ina3221/ |
D | Kconfig | 1 # INA3221 Bidirectional Current/Power Monitor 7 bool "INA3221 Triple-Channel Current/Power Monitor" 12 Enable driver for INA3221 Triple-Channel Current/Power Monitor.
|
/Zephyr-latest/drivers/sensor/nxp/nxp_tempmon/ |
D | Kconfig | 1 # NXP temperature monitor (TEMPMON) 7 bool "NXP temperature monitor (TEMPMON)" 11 Enable driver for the NXP temperature monitor (TEMPMON).
|
/Zephyr-latest/samples/subsys/debug/debugmon/src/ |
D | main.c | 25 * Cannot enable monitor mode if C_DEBUGEN bit is set. This bit can only be in debug_mon_enable() 34 /* Enable monitor mode debugging by setting MON_EN bit of DEMCR */ in debug_mon_enable() 41 * enters a breakpoint while debugging in monitor mode. 51 printk("Entered debug monitor interrupt\n"); in z_arm_debug_monitor() 75 /* Set up debug monitor */ in main() 78 printk("Error enabling monitor mode:\n" in main()
|
/Zephyr-latest/drivers/sensor/ti/ina226/ |
D | Kconfig | 1 # INA226 Bidirectional Current/Power Monitor 7 bool "INA226 Current/Power Monitor" 12 Enable driver for INA226 Bidirectional Current/Power Monitor.
|
/Zephyr-latest/include/zephyr/debug/ |
D | object_tracing.h | 14 * @brief Head element of the thread monitor list. 16 * @details Access the head element of the thread monitor list. 24 * @details Given a node in a thread monitor list, gets the next
|
/Zephyr-latest/samples/sensor/ina219/ |
D | sample.yaml | 8 name: TI INA219 power/current monitor 9 description: Demonstration of the INA219 I2C power/current monitor
|
/Zephyr-latest/dts/bindings/clock/ |
D | microchip,xec-pcr.yaml | 43 32KHz clock monitor minimum valid 32KHz period in 48MHz units 49 32KHz clock monitor maximum valid 32KHz period in 48MHz units 62 Minimum number of consecutive 32KHz pulses that pass all monitor tests 69 Delay in milliseconds after crystal is enabled and clock monitor is
|
/Zephyr-latest/drivers/power_domain/ |
D | Kconfig | 59 bool "GPIO monitor for sensing power on rail" 69 int "GPIO monitor power domain init priority" 72 GPIO monitor power domain initialization priority.
|
/Zephyr-latest/drivers/sensor/adi/adltc2990/ |
D | Kconfig | 7 bool "ADLTC2990 Quad I2C Voltage, Current and Temperature Monitor" 13 Quad I2C Voltage, Current and Temperature Monitor.
|
/Zephyr-latest/samples/userspace/prod_consumer/src/ |
D | app_a.c | 35 /* Message queue for IPC between the driver callback and the monitor thread. 68 * message queue. This will wake up the monitor thread for further in sample_callback() 90 /* Monitor thread, running in user mode. Responsible for pulling in monitor_entry() 93 LOG_DBG("monitor thread entered"); in monitor_entry() 113 LOG_DBG("monitor thread waiting for data..."); in monitor_entry() 121 LOG_INF("monitor thread got data payload #%u", monitor_count); in monitor_entry() 144 LOG_DBG("monitor thread exiting"); in monitor_entry() 245 /* We are about to drop to user mode and become the monitor thread. in app_a_entry() 247 * the monitor thread to function. in app_a_entry() 249 * Monitor thread needs access to the message queue shared with the in app_a_entry()
|
/Zephyr-latest/soc/microchip/mec/mec172x/reg/ |
D | mec172x_pcr.h | 284 * Clock monitor 32KHz period counter (Offset +C0h, RO) 285 * Clock monitor 32KHz high counter (Offset +C4h, RO) 286 * Clock monitor 32KHz period counter minimum (Offset +C8h, RW) 287 * Clock monitor 32KHz period counter maximum (Offset +CCh, RW) 288 * Clock monitor 32KHz Duty Cycle variation counter (Offset +D0h, RO) 289 * Clock monitor 32KHz Duty Cycle variation counter maximum (Offset +D4h, RW) 294 * Clock monitor 32KHz Valid Count (Offset +0xD8, RO) 295 * Clock monitor 32KHz Valid Count minimum (Offset +0xDC, RW) 299 /* Clock monitor control register (Offset +0xE0, RW) */ 307 /* Clock monitor interrupt status (Offset +0xE4, R/W1C) */ [all …]
|
/Zephyr-latest/samples/boards/espressif/spiram_test/ |
D | README.rst | 39 To check output of this sample, run ``west espressif monitor`` or any other serial 41 This example uses ``west espressif monitor``, which automatically detects the serial 46 $ west espressif monitor
|
/Zephyr-latest/samples/boards/arc_secure_services/ |
D | sample.yaml | 2 description: Sample application to verify the secure monitor for Designware ARC 4 name: Designware ARC Secure monitor
|
/Zephyr-latest/scripts/west_commands/runners/ |
D | blackmagicprobe.py | 127 '-ex', "monitor connect_rst enable", 128 '-ex', "monitor connect_srst enable", 131 '-ex', "monitor connect_rst disable", 132 '-ex', "monitor connect_srst disable", 175 ['-ex', "monitor swdp_scan", 196 ['-ex', "monitor swdp_scan", 203 ['-ex', "monitor swdp_scan", 215 ['-ex', "monitor swdp_scan",
|
/Zephyr-latest/samples/bluetooth/central_hr/ |
D | README.rst | 2 :name: Heart-rate Monitor (Central) 5 Connect to a Bluetooth LE heart-rate monitor and read heart-rate measurements.
|
/Zephyr-latest/drivers/ethernet/phy/ |
D | Kconfig | 88 int "Monitor task execution period" 91 Monitor task execution period in milliseconds. The monitor task is
|
/Zephyr-latest/subsys/net/lib/lwm2m/ |
D | Kconfig.ucifi | 12 bool "uCIFI Battery (3411) Monitor Support" 14 The uCIFI battery object provides attributes to monitor battery 31 The uCIFI LPWAN object provides attributes to monitor and maintain
|
/Zephyr-latest/samples/boards/espressif/xt_wdt/ |
D | README.rst | 44 To check output of this sample, run ``west espressif monitor`` or any other serial 46 This example uses ``west espressif monitor``, which automatically detects the serial 51 $ west espressif monitor
|
/Zephyr-latest/samples/drivers/clock_control_xec/src/ |
D | main.c | 135 LOG_INF("PCR 32KHz Clock Monitor Pulse High Count register = 0x%x", r); in pcr_clock_regs() 138 LOG_INF("PCR 32KHz Clock Monitor Period Maximum Count register = 0x%x", r); in pcr_clock_regs() 141 LOG_INF("PCR 32KHz Clock Monitor Duty Cycle Variation register = 0x%x", r); in pcr_clock_regs() 144 LOG_INF("PCR 32KHz Clock Monitor Duty Cycle Variation Max register = 0x%x", r); in pcr_clock_regs() 147 LOG_INF("PCR 32KHz Clock Monitor Valid register = 0x%x", r); in pcr_clock_regs() 150 LOG_INF("PCR 32KHz Clock Monitor Valid Min register = 0x%x", r); in pcr_clock_regs() 153 LOG_INF("PCR 32KHz Clock Monitor Control register = 0x%x", r); in pcr_clock_regs() 156 LOG_INF("PCR 32KHz Clock Monitor Control Status register = 0x%x", r); in pcr_clock_regs()
|
/Zephyr-latest/drivers/sensor/ti/ina23x/ |
D | Kconfig | 6 bool "INA23X Current and Power Monitor" 11 Enable driver for INA23X Current and Power Monitor.
|
/Zephyr-latest/boards/kincony/kincony_kc868_a32/doc/ |
D | index.rst | 60 Open the serial monitor using the following command: 64 west espressif monitor 67 message in the monitor:
|