Home
last modified time | relevance | path

Searched +full:little +full:- +full:endian (Results 1 – 25 of 102) sorted by relevance

12345

/Zephyr-latest/include/zephyr/sys/
Dbyteorder.h6 * Copyright (c) 2015-2016, Intel Corporation.
8 * SPDX-License-Identifier: Apache-2.0
48 * @brief Convert 16-bit integer from little-endian to host endianness.
50 * @param val 16-bit integer in little-endian format.
52 * @return 16-bit integer in host endianness.
56 * @brief Convert 16-bit integer from host endianness to little-endian.
58 * @param val 16-bit integer in host endianness.
60 * @return 16-bit integer in little-endian format.
64 * @brief Convert 24-bit integer from little-endian to host endianness.
66 * @param val 24-bit integer in little-endian format.
[all …]
/Zephyr-latest/drivers/mipi_dsi/
DKconfig.mcux1 # Copyright 2022-2023 NXP
2 # SPDX-License-Identifier: Apache-2.0
5 bool "NXP MCUX MIPI-DSI Host Controller"
12 bool "NXP MCUX MIPI-DSI 2L Controller"
26 convert RGB565 input data to BGR565 (little endian to big endian),
32 Swap 16 byte color data from little to big endian format. When
33 this Kconfig is enabled, the DSI expects RGB565 data in little endian
/Zephyr-latest/include/zephyr/
Dnet_buf.h8 * SPDX-License-Identifier: Apache-2.0
84 * The main use of this is for scenarios where the meta-data of the normal
123 * @return Pointer to stack-allocated net_buf_simple object.
145 if (!buf->__buf) { in net_buf_simple_init()
146 buf->__buf = (uint8_t *)buf + sizeof(*buf); in net_buf_simple_init()
149 buf->data = buf->__buf + reserve_head; in net_buf_simple_init()
150 buf->len = 0U; in net_buf_simple_init()
174 buf->len = 0U; in net_buf_simple_reset()
175 buf->data = buf->__buf; in net_buf_simple_reset()
220 * @brief Add (8-bit) byte at the end of the buffer
[all …]
/Zephyr-latest/arch/arm64/core/
Dheader.S4 * SPDX-License-Identifier: Apache-2.0
30 // of RAM, little-endian
33 // image, little-endian
36 // little-endian
/Zephyr-latest/subsys/net/l2/ieee802154/
Dieee802154_security.h4 * SPDX-License-Identifier: Apache-2.0
27 * @param frame Pointer to the frame data in original (little endian) byte order.
31 * @param src_ext_addr Pointer to the extended source address of the frame (in little endian byte
43 * @param frame Pointer to the frame data in original (little endian) byte order.
47 * @param src_ext_addr Pointer to the extended source address of the frame (in little endian byte
/Zephyr-latest/include/zephyr/bluetooth/
Dbyteorder.h8 * SPDX-License-Identifier: Apache-2.0
26 /** @brief Encode 16-bit value into array values in little-endian format.
28 * Helper macro to encode 16-bit values into comma separated values.
32 * @param _v 16-bit integer in host endianness.
34 * @return The comma separated values for the 16-bit value.
40 /** @brief Encode 24-bit value into array values in little-endian format.
42 * Helper macro to encode 24-bit values into comma separated values.
46 * @param _v 24-bit integer in host endianness.
48 * @return The comma separated values for the 24-bit value.
54 /** @brief Encode 32-bit value into array values in little-endian format.
[all …]
/Zephyr-latest/soc/intel/intel_ish/utils/
Dbuild_ish_firmware.py2 # -*- coding: utf-8 -*-"
5 # SPDX-License-Identifier: Apache-2.0
24 parser.add_argument("-k", "--kernel",
28 parser.add_argument("-a", "--aon",
32 parser.add_argument("-o", "--output",
41 # 4 bytes of ASCII encode ID (little endian)
43 # 8 bytes of ASCII encode ID (little endian)
45 # 4 bytes of code offset (little endian)
47 # 2 bytes of module in page size increments (little endian)
53 """Returns roundup-ed page size from size of bytes"""
[all …]
/Zephyr-latest/dts/bindings/memory-controllers/
Drenesas,ra-sdram.yaml2 # SPDX-License-Identifier: Apache-2.0
7 pinctrl-0 = <&sdram_default>;
8 pinctrl-names = "default";
10 auto-refresh-interval = <10>;
11 auto-refresh-count = <8>;
12 precharge-cycle-count = <3>;
13 multiplex-addr-shift = "10-bit";
14 edian-mode = "little-endian";
15 continuous-access;
16 bus-width = "16-bit";
[all …]
/Zephyr-latest/boards/qemu/malta/
Dqemu_malta.yaml2 name: QEMU emulation for MIPS (little endian)
5 - name: qemu
8 - zephyr
9 - xtools
15 - net
16 - bluetooth
/Zephyr-latest/boards/arm/v2m_beetle/support/
Dopenocd.cfg1 # Config Beetle SoC providing a CMSIS-DAP interface.
3 source [find interface/cmsis-dap.cfg]
5 source [find target/swj-dp.tcl]
13 if { [info exists ENDIAN] } {
14 set _ENDIAN $ENDIAN
16 set _ENDIAN little
29 swj_newdap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
31 target create $_TARGETNAME cortex_m -chain-position $_TARGETNAME
33 $_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size 0x1000 -work-area-backup 0
/Zephyr-latest/boards/microchip/ev11l78a/support/
Dopenocd.cfg6 set ENDIAN little
13 $_TARGETNAME configure -event gdb-attach {
19 $_TARGETNAME configure -event gdb-detach {
/Zephyr-latest/boards/arduino/zero/support/
Dopenocd.cfg1 source [find interface/cmsis-dap.cfg]
6 set ENDIAN little
13 $_TARGETNAME configure -event gdb-attach {
19 $_TARGETNAME configure -event gdb-detach {
/Zephyr-latest/boards/atmel/sam0/samd20_xpro/support/
Dopenocd.cfg1 source [find interface/cmsis-dap.cfg]
6 set ENDIAN little
13 $_TARGETNAME configure -event gdb-attach {
19 $_TARGETNAME configure -event gdb-detach {
/Zephyr-latest/boards/atmel/sam0/samd21_xpro/support/
Dopenocd.cfg2 # SPDX-License-Identifier: Apache-2.0
3 source [find interface/cmsis-dap.cfg]
8 set ENDIAN little
15 $_TARGETNAME configure -event gdb-attach {
21 $_TARGETNAME configure -event gdb-detach {
/Zephyr-latest/boards/atmel/sam0/samr21_xpro/support/
Dopenocd.cfg2 # SPDX-License-Identifier: Apache-2.0
3 source [find interface/cmsis-dap.cfg]
8 set ENDIAN little
15 $_TARGETNAME configure -event gdb-attach {
21 $_TARGETNAME configure -event gdb-detach {
/Zephyr-latest/boards/gd/gd32e103v_eval/support/
Dopenocd.cfg1 # Copyright (c) 2021, ATL-Electronics
2 # SPDX-License-Identifier: Apache-2.0
3 source [find interface/cmsis-dap.cfg]
8 set ENDIAN little
16 $_TARGETNAME configure -event gdb-attach {
22 $_TARGETNAME configure -event gdb-detach {
/Zephyr-latest/boards/gd/gd32f403z_eval/support/
Dopenocd.cfg1 # Copyright (c) 2021 ATL-Electronics
2 # SPDX-License-Identifier: Apache-2.0
3 source [find interface/cmsis-dap.cfg]
8 set ENDIAN little
16 $_TARGETNAME configure -event gdb-attach {
22 $_TARGETNAME configure -event gdb-detach {
/Zephyr-latest/boards/atmel/sam0/samc21n_xpro/support/
Dopenocd.cfg3 # SPDX-License-Identifier: Apache-2.0
4 source [find interface/cmsis-dap.cfg]
9 set ENDIAN little
16 $_TARGETNAME configure -event gdb-attach {
22 $_TARGETNAME configure -event gdb-detach {
/Zephyr-latest/boards/atmel/sam0/same54_xpro/support/
Dopenocd.cfg2 # SPDX-License-Identifier: Apache-2.0
3 source [find interface/cmsis-dap.cfg]
8 set ENDIAN little
16 $_TARGETNAME configure -event gdb-attach {
22 $_TARGETNAME configure -event gdb-detach {
/Zephyr-latest/boards/atmel/sam0/saml21_xpro/support/
Dopenocd.cfg2 # SPDX-License-Identifier: Apache-2.0
3 source [find interface/cmsis-dap.cfg]
8 set ENDIAN little
15 $_TARGETNAME configure -event gdb-attach {
21 $_TARGETNAME configure -event gdb-detach {
/Zephyr-latest/boards/atmel/sam0/samr34_xpro/support/
Dopenocd.cfg2 # SPDX-License-Identifier: Apache-2.0
3 source [find interface/cmsis-dap.cfg]
8 set ENDIAN little
15 $_TARGETNAME configure -event gdb-attach {
21 $_TARGETNAME configure -event gdb-detach {
/Zephyr-latest/doc/connectivity/bluetooth/
Dfeatures.rst1 .. _bluetooth-features:
15 grown to be mature and feature-rich, as can be seen in the section below.
24 little endian, alignment flavors and more)
26 * Support for :ref:`all combinations <bluetooth-hw-setup>` of Host and
29 * Controller-only (HCI) over UART, SPI, USB and IPC physical transports
30 * Host-only over UART, SPI, and IPC (shared memory)
33 * :ref:`Bluetooth-SIG qualifiable <bluetooth-qual>`
38 * :ref:`Bluetooth Low Energy Controller <bluetooth-ctlr-arch>` (LE Link Layer)
42 * Concurrent multi-protocol support ready
46 * Supports little and big endian architectures, and abstracts the hard
[all …]
/Zephyr-latest/samples/boards/enjoydigital/litex/i2s/
DREADME.rst22 * Little endian
27 .. code-block::
30 cmake -DBOARD=litex_vexriscv ..
/Zephyr-latest/boards/snps/iotdk/support/
Dopenocd.cfg2 # SPDX-License-Identifier: Apache-2.0
10 # IoT DK has built-in FT2232 chip, which is similar to Digilent HS-1.
32 set _CHIPNAME arc-em
36 jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -expected-id 0x200444b1
41 target create $_TARGETNAME arcv2 -chain-position $_TARGETNAME \
42 -coreid 0 -dbgbase $_dbgbase -endian little
45 $_TARGETNAME configure -event reset-assert "arc_em_reset $_TARGETNAME"
/Zephyr-latest/boards/snps/emsdp/support/
Dopenocd.cfg2 # SPDX-License-Identifier: Apache-2.0
10 # EM SDP has built-in FT2232 chip, which is similar to Digilent HS-1.
32 set _CHIPNAME arc-em
36 jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -expected-id 0x200044b1
41 target create $_TARGETNAME arcv2 -chain-position $_TARGETNAME \
42 -coreid 0 -dbgbase $_dbgbase -endian little
45 $_TARGETNAME configure -event reset-assert "arc_em_reset $_TARGETNAME"

12345