Home
last modified time | relevance | path

Searched refs:format (Results 151 – 175 of 530) sorted by relevance

12345678910>>...22

/Zephyr-latest/include/zephyr/mgmt/mcumgr/grp/os_mgmt/
Dos_mgmt.h77 struct zcbor_string *format; member
/Zephyr-latest/samples/drivers/led/led_strip/boards/
Dnucleo_h743zi.overlay16 frame-format = <32768>; /* SPI_FRAME_FORMAT_TI */
/Zephyr-latest/lib/os/
DKconfig.cbprintf72 point format specifiers. Selecting this increases stack size
81 The %a hexadecimal format for floating point value conversion was
90 bool "Select %a format for all floating point specifications"
94 The %a format for floats requires significantly less code than the
163 flag, the packaging function no longer looks at the format strings
173 candidate is used for %p format specifier. Check cannot be performed
/Zephyr-latest/samples/modules/canopennode/
DREADME.rst243 print("Device name: '{}'".format(name.raw))
279 print("Initial heartbeat time: {} ms".format(heartbeat.raw))
280 print("Power-on counter: {}".format(reboots.raw))
282 print("Updated heartbeat time: {} ms".format(heartbeat.raw))
287 print("heartbeat time after reset: {} ms".format(heartbeat.raw))
288 print("Power-on counter: {}".format(reboots.raw))
292 print("Updated heartbeat time: {} ms".format(heartbeat.raw))
298 print("heartbeat time after store and reset: {} ms".format(heartbeat.raw))
299 print("Power-on counter: {}".format(reboots.raw))
305 print("heartbeat time after restore and reset: {} ms".format(heartbeat.raw))
[all …]
/Zephyr-latest/scripts/build/
Dgen_syscalls.py324 … wrap += syscall_tracer_with_return_template.format(func_type=func_type, func_name=func_name,
328 wrap += syscall_tracer_void_template.format(func_type=func_type, func_name=func_name,
544 ids_as_defines += "#define {} {}\n".format(item, i)
554 ids_as_defines += "#define {} {}\n".format(item, i + num_emitted_ids)
568 …header = syscall_template.format(include_guard=include_guard, tracing_include=tracing_include, inv…
Dfile2hex.py81 if args.format == "literal":
93 if args.format == "literal":
Dmergehex.py30 raise AddressOverlapError("{} has merge issues".format(hex_file_path))
/Zephyr-latest/doc/_extensions/zephyr/
Dlink-roles.py45 app.add_role("zephyr_raw", modulelink("zephyr", format="raw"))
60 def modulelink(default_module=None, format="blob"): argument
/Zephyr-latest/soc/nxp/imxrt/imxrt118x/
DKconfig42 Image container is a boot image format that is used by ROM. Container
43 format consists container header, image arrary entry, signature block
/Zephyr-latest/scripts/west_commands/
Dcompletion.py80 self.die('Unable to find completion file: {}'.format(e))
/Zephyr-latest/
D.ruff.toml28 [format]
/Zephyr-latest/scripts/coccinelle/
Dms_timeout.cocci62 msg = "WARNING: [msl1] replace constant {} with ms duration in {}".format(T, fn)
118 msg = "WARNING: [msl2] replace constant {} with ms duration in {}".format(T, fn)
176 msg = "WARNING: [msl3] replace constant {} with ms duration in {}".format(T, fn)
Dfind_dev_usage.cocci26 loosing const qualifier, please wrap".format(F, f, D)
30 check if const qualifier is not lost".format(F, f, D)
/Zephyr-latest/scripts/kconfig/
Dkconfig.py145 symbols. """ + SYM_INFO_HINT.format(sym))
187 warn(msg + SYM_INFO_HINT.format(sym))
235 up as the choice selection. """ + SYM_INFO_HINT.format(choice.user_selection))
/Zephyr-latest/subsys/net/lib/prometheus/
Dformatter.c27 static int write_metric_to_buffer(char *buffer, size_t buffer_size, const char *format, ...) in write_metric_to_buffer() argument
39 va_start(args, format); in write_metric_to_buffer()
40 len = vsnprintf(buffer, buffer_size, format, args); in write_metric_to_buffer()
/Zephyr-latest/drivers/i2s/
Di2s_nrfx.c473 switch (i2s_cfg->format & I2S_FMT_DATA_FORMAT_MASK) { in i2s_nrfx_configure()
476 nrfx_cfg.format = NRF_I2S_FORMAT_I2S; in i2s_nrfx_configure()
480 nrfx_cfg.format = NRF_I2S_FORMAT_ALIGNED; in i2s_nrfx_configure()
484 nrfx_cfg.format = NRF_I2S_FORMAT_ALIGNED; in i2s_nrfx_configure()
487 LOG_ERR("Unsupported data format: 0x%02x", i2s_cfg->format); in i2s_nrfx_configure()
491 if ((i2s_cfg->format & I2S_FMT_DATA_ORDER_LSB) || in i2s_nrfx_configure()
492 (i2s_cfg->format & I2S_FMT_BIT_CLK_INV) || in i2s_nrfx_configure()
493 (i2s_cfg->format & I2S_FMT_FRAME_CLK_INV)) { in i2s_nrfx_configure()
494 LOG_ERR("Unsupported stream format: 0x%02x", i2s_cfg->format); in i2s_nrfx_configure()
/Zephyr-latest/drivers/video/
Dvideo_mcux_mipi_csi2rx.c271 &cur_frmival, &fie->discrete, &cur_fmt, fie->format, cur_pixel_rate, in mipi_csi2rx_enum_frmival()
280 &cur_frmival, &fie->stepwise.min, &cur_fmt, fie->format, cur_pixel_rate, in mipi_csi2rx_enum_frmival()
288 &cur_frmival, &fie->stepwise.max, &cur_fmt, fie->format, cur_pixel_rate, in mipi_csi2rx_enum_frmival()
294 (mipi_csi2rx_cal_frame_size(fie->format) * cur_pixel_rate * in mipi_csi2rx_enum_frmival()
/Zephyr-latest/tests/unit/cbprintf/
Dmain.c176 static int prf(char *static_package_str, const char *format, ...) in prf() argument
182 va_start(ap, format); in prf()
184 rv = vsnprintf(buf, sizeof(buf), format, ap); in prf()
187 rv = cbvprintf_package(packaged, sizeof(packaged), PACKAGE_FLAGS, format, ap); in prf()
195 rv = cbvprintf(out, &outbuf, format, ap); in prf()
203 static int rawprf(const char *format, ...) in rawprf() argument
208 va_start(ap, format); in rawprf()
215 len = cbvprintf_package(NULL, PKG_ALIGN_OFFSET, PACKAGE_FLAGS, format, ap2); in rawprf()
219 rv = cbvprintf_package(pkg_buf, len, PACKAGE_FLAGS, format, ap); in rawprf()
227 rv = cbvprintf(out, &outbuf, format, ap); in rawprf()
[all …]
/Zephyr-latest/drivers/dai/nxp/sai/
Dsai.c295 switch (cfg->format & DAI_FORMAT_CLOCK_PROVIDER_MASK) { in sai_config_set()
305 cfg->format & DAI_FORMAT_CLOCK_PROVIDER_MASK); in sai_config_set()
309 cfg->format & DAI_FORMAT_CLOCK_PROVIDER_MASK); in sai_config_set()
316 switch (cfg->format & DAI_FORMAT_PROTOCOL_MASK) { in sai_config_set()
331 cfg->format & DAI_FORMAT_PROTOCOL_MASK); in sai_config_set()
336 cfg->format & DAI_FORMAT_PROTOCOL_MASK); in sai_config_set()
339 switch (cfg->format & DAI_FORMAT_CLOCK_INVERSION_MASK) { in sai_config_set()
355 cfg->format & DAI_FORMAT_CLOCK_INVERSION_MASK); in sai_config_set()
/Zephyr-latest/samples/drivers/video/tcpserversink/
DREADME.rst47 Video device detected, format: RGBP 480x272
57 ! videoparse format=rgb16 width=480 height=272 \
/Zephyr-latest/drivers/display/
DKconfig.stm32_ltdc19 prompt "Color pixel format"
23 Specify the color pixel format for the STM32 LCD-TFT display controller.
Ddisplay_intel_multibootfb.c30 const enum display_pixel_format format) in framebuf_set_pixel_format() argument
32 switch (format) { in framebuf_set_pixel_format()
/Zephyr-latest/boards/shields/rtkmipilcdb00000be/boards/
Dek_ra8d1.overlay28 input-pixel-format = <PANEL_PIXEL_FORMAT_RGB_565>;
/Zephyr-latest/doc/develop/languages/c/
Dnewlib.rst46 variant supports except the new format specifiers introduced in C99, such as
47 the ``char``, ``long long`` type format specifiers (i.e. ``%hhX`` and
68 format specifiers defined by the C standard with the following exceptions:
70 * Floating point format specifiers (e.g. ``%f``) require
73 * C99 format specifiers are not supported in the Newlib nano variant (i.e.
/Zephyr-latest/scripts/logging/dictionary/
Dlog_parser_uart.py46 logging.basicConfig(format=LOGGER_FORMAT)

12345678910>>...22