Home
last modified time | relevance | path

Searched full:magic (Results 1 – 25 of 131) sorted by relevance

123456

/Zephyr-Core-3.5.0/scripts/
Drequirements-compliance.txt4 python-magic
5 python-magic-bin; sys_platform == "win32"
/Zephyr-Core-3.5.0/samples/philosophers/src/
Dphil_obj_abstract.h33 #define MAGIC 0xa5a5ee11 macro
85 k_stack_push(x, MAGIC); \
90 __ASSERT(data == MAGIC, "data was %lx\n", data); \
92 #define drop(x) k_stack_push(x, MAGIC)
105 ((fork_obj_t *)(x))->data.data = MAGIC; \
112 __ASSERT(data->data == MAGIC, ""); \
127 ((fork_obj_t *)(x))->data.data = MAGIC; \
134 __ASSERT(data->data == MAGIC, ""); \
/Zephyr-Core-3.5.0/samples/modules/tflite-micro/magic_wand/
Dsample.yaml2 description: Magic Wand TensorFlow sample
3 name: magic wand tensorflow
DREADME.rst3 TensorFlow Lite Micro Magic Wand sample
15 `the TensorFlow Magic Wand sample for Zephyr`_ and
18 .. _the TensorFlow Magic Wand sample for Zephyr:
/Zephyr-Core-3.5.0/scripts/pylib/pytest-twister-harness/tests/helpers/
Dshell_mcuboot_command_parser_test.py18 magic: good
25 magic: unset
47 magic: good
/Zephyr-Core-3.5.0/scripts/west_commands/
Dbindesc.py22 UF2_MAGIC_START0 = 0x0A324655 # First magic number ('UF2\n')
23 UF2_MAGIC_START1 = 0x9E5D5157 # Second magic number
32 log.inf('Skipping block at ' + ptr + '; bad magic')
66 MAGIC = 0xb9863e5a7ea46046 variable in Bindesc
228 magic = struct.pack('>Q' if self.is_big_endian else 'Q', self.MAGIC)
229 index = image.find(magic)
231 log.die('Could not find binary descriptor magic')
235 index += len(magic) # index points to first descriptor
277 # Try the elf magic
281 # Try the uf2 magic
/Zephyr-Core-3.5.0/arch/arm/core/cortex_m/
Dpm_s2ram.S17 #define MAGIC (0xDABBAD00) macro
67 * Set the marker to MAGIC value
70 ldr r2, =MAGIC
101 ldr r1, =MAGIC
/Zephyr-Core-3.5.0/samples/drivers/eeprom/src/
Dmain.c16 uint32_t magic; member
58 if (values.magic != EEPROM_SAMPLE_MAGIC) { in main()
59 values.magic = EEPROM_SAMPLE_MAGIC; in main()
/Zephyr-Core-3.5.0/samples/subsys/usb/dfu/
DREADME.rst84 I: Primary image: magic=good, swap_type=0x3, copy_done=0x1, image_ok=0x1
85 I: Secondary image: magic=good, swap_type=0x2, copy_done=0x3, image_ok=0x3
101 I: Primary image: magic=good, swap_type=0x2, copy_done=0x1, image_ok=0x3
102 I: Secondary image: magic=unset, swap_type=0x1, copy_done=0x3, image_ok=0x3
105 I: Secondary image: magic=unset, swap_type=0x1, copy_done=0x3, image_ok=0x3
146 I: Primary image: magic=good, swap_type=0x4, copy_done=0x1, image_ok=0x1
147 I: Secondary image: magic=good, swap_type=0x3, copy_done=0x3, image_ok=0x1
/Zephyr-Core-3.5.0/subsys/fs/fcb/
Dfcb_priv.h26 /* @brief Gets magic value in flash formatted version
28 * Magic, the fcb->f_magic, prior to being written to flash, is xored with
36 * @return uin32_t formatted magic value
/Zephyr-Core-3.5.0/dts/bindings/rng/
Dst,stm32-rng.yaml37 health-test-magic:
40 Magic Number to be written to Health Test Configuration Register (HTCR)
/Zephyr-Core-3.5.0/samples/tfm_integration/psa_crypto/src/
Dutil_app_cfg.h25 * @brief Magic number for config data payloads (0x55CFDA7A).
27 uint32_t magic; member
/Zephyr-Core-3.5.0/subsys/dfu/boot/
Dmcuboot_shell.c34 static const char *swap_state_magic_str(uint8_t magic) in swap_state_magic_str() argument
36 switch (magic) { in swap_state_magic_str()
193 shell_print(sh, " magic: %s", in cmd_mcuboot_info_area()
194 swap_state_magic_str(swap_state.magic)); in cmd_mcuboot_info_area()
/Zephyr-Core-3.5.0/soc/arm/renesas_smartbond/da1469x/
Dsoc.c30 #define MAGIC 0xaabbccdd macro
49 if (z_renesas_cache_configured == MAGIC) { in z_renesas_configure_cache()
102 z_renesas_cache_configured = MAGIC; in z_renesas_configure_cache()
/Zephyr-Core-3.5.0/subsys/ipc/ipc_service/lib/
Dicmsg.c29 static const uint8_t magic[] = {0x45, 0x6d, 0x31, 0x6c, 0x31, 0x4b, variable
219 bool endpoint_invalid = (len != sizeof(magic) || memcmp(magic, rx_buffer, len)); in mbox_callback_process()
285 int ret = spsc_pbuf_write(dev_data->tx_ib, magic, sizeof(magic)); in icmsg_open()
292 if (ret < (int)sizeof(magic)) { in icmsg_open()
293 __ASSERT_NO_MSG(ret == sizeof(magic)); in icmsg_open()
/Zephyr-Core-3.5.0/scripts/west_commands/runners/
Dblackmagicprobe.py5 '''Runner for flashing with Black Magic Probe.'''
26 BMP_GDB_INTERFACE = 'Black Magic GDB Server'
29 BMP_GDB_PRODUCT = "Black Magic Probe"
109 '''Runner front-end for Black Magic probe.'''
/Zephyr-Core-3.5.0/doc/services/ipc/ipc_service/backends/
Dipc_service_icmsg.rst72 1. The domain (or CPU) writes a magic number to its ``tx-region`` of the shared
78 #. When the signal from the other domain or CPU is received, the magic number
/Zephyr-Core-3.5.0/tests/subsys/rtio/rtio_api/src/
Dtest_rtio_spsc.c23 const uint32_t magic = 43219876; in ZTEST() local
29 *acq = magic; in ZTEST()
50 zassert_equal(*cons2, magic, "Consume value should equal magic"); in ZTEST()
/Zephyr-Core-3.5.0/doc/services/binary_descriptors/
Dindex.rst50 value. All binary descriptor numbers (magic, tags, uints) are laid out in memory
55 The binary descriptor header starts with the magic number ``0xb9863e5a7ea46046``. It's followed
66 | magic | tag |length| H e l l o w o r l d ! | pad | end |
/Zephyr-Core-3.5.0/subsys/settings/
DKconfig108 hex "FCB magic for the settings subsystem"
112 Magic 32-bit word for to identify valid settings area
/Zephyr-Core-3.5.0/drivers/bbram/
Dbbram_it8xxx2.c77 * Magic does not match, so BRAM must be uninitialized. Clear in bbram_it8xxx2_init()
78 * entire Bank0 BRAM, and set magic value. in bbram_it8xxx2_init()
/Zephyr-Core-3.5.0/soc/xtensa/intel_adsp/ace/include/intel_ace15_mtpm/
Dadsp_imr_layout.h12 * A magic that tells ROM to jump to imr_restore_vector instead of normal boot
/Zephyr-Core-3.5.0/soc/xtensa/intel_adsp/ace/include/intel_ace20_lnl/
Dadsp_imr_layout.h12 * A magic that tells ROM to jump to imr_restore_vector instead of normal boot
/Zephyr-Core-3.5.0/tests/boot/mcuboot_recovery_retention/
Dtestcase.yaml21 - "Secondary image: magic"
/Zephyr-Core-3.5.0/soc/xtensa/intel_adsp/cavs/include/intel_tgl_adsp/
Dadsp_imr_layout.h16 * A magic that tells ROM to jump to imr_restore_vector instead of normal boot

123456