Home
last modified time | relevance | path

Searched refs:exec_addr (Results 1 – 3 of 3) sorted by relevance

/Zephyr-Core-3.7.0/scripts/west_commands/runners/
Dstm32flash.py20 force_binary=False, start_addr=0, exec_addr=None, argument
29 self.exec_addr = exec_addr
84 start_addr=args.start_addr, exec_addr=args.execution_addr,
113 msg_text = "start code execution at {}".format(self.exec_addr)
114 if self.exec_addr:
115 if self.exec_addr == 0 or self.exec_addr.lower() == '0x0':
118 self.exec_addr = 0
120 '-g', str(self.exec_addr)])
129 if self.exec_addr:
130 cmd_flash.extend(['-g', self.exec_addr])
/Zephyr-Core-3.7.0/drivers/misc/nordic_vpr_launcher/
Dnordic_vpr_launcher.c25 uintptr_t exec_addr; member
39 (void *)config->src_addr, (void *)config->exec_addr, config->size); in nordic_vpr_launcher_init()
40 memcpy((void *)config->exec_addr, (void *)config->src_addr, config->size); in nordic_vpr_launcher_init()
48 LOG_DBG("Launching VPR (%p) from %p", config->vpr, (void *)config->exec_addr); in nordic_vpr_launcher_init()
49 nrf_vpr_initpc_set(config->vpr, config->exec_addr); in nordic_vpr_launcher_init()
68 .exec_addr = VPR_ADDR(DT_INST_PHANDLE(inst, execution_memory)), \
/Zephyr-Core-3.7.0/scripts/west_commands/tests/
Dtest_stm32flash.py86 start_addr=TEST_ADDR, exec_addr=test_exec_addr,