Home
last modified time | relevance | path

Searched +full:swapped +full:- +full:x +full:- +full:y (Results 1 – 8 of 8) sorted by relevance

/Zephyr-latest/dts/bindings/input/
Dtouchscreen-common.yaml2 # SPDX-License-Identifier: Apache-2.0
9 screen-width:
13 Horizontal resolution of touchscreen (maximum x coordinate reported + 1). The default
14 corresponds to a valid value for non-inverted axis, required for a display with an inverted x
17 screen-height:
21 Vertical resolution of touchscreen (maximum y coordinate reported + 1). The default
22 corresponds to a valid value for non-inverted axis, required for a display with an inverted y
25 inverted-x:
27 description: X axis is inverted.
29 inverted-y:
[all …]
/Zephyr-latest/include/zephyr/input/
Dinput_touch.h4 * SPDX-License-Identifier: Apache-2.0
31 * @param inverted_x X axis is inverted
32 * @param inverted_y Y axis is inverted
33 * @param swapped_x_y X and Y axes are swapped
35 * see touchscreem-common.yaml for more details
80 * @param x X coordinate as reported by the controller
81 * @param y Y coordinate as reported by the controller
85 uint32_t x, uint32_t y,
/Zephyr-latest/samples/bluetooth/channel_sounding/src/
Ddistance_estimation.c4 * SPDX-License-Identifier: Apache-2.0
46 *z_out_real = z_a_real * z_b_real - z_a_imag * z_b_imag; in calc_complex_product()
56 /* Estimates b in y = a + b x */ in linear_regression()
62 y_mean += (y_values[i] - y_mean) / (i + 1); in linear_regression()
63 x_mean += (x_values[i] - x_mean) / (i + 1); in linear_regression()
70 b_est_upper += (x_values[i] - x_mean) * (y_values[i] - y_mean); in linear_regression()
71 b_est_lower += (x_values[i] - x_mean) * (x_values[i] - x_mean); in linear_regression()
79 bool swapped; in bubblesort_2() local
82 for (uint16_t i = 0; i < len - 1; i++) { in bubblesort_2()
83 swapped = false; in bubblesort_2()
[all …]
/Zephyr-latest/scripts/
Dcheckpatch.pl2 # SPDX-License-Identifier: GPL-2.0
7 # (c) 2008-2010 Andy Whitcroft <apw@canonical.com>
8 # (c) 2010-2018 Joe Perches <joe@perches.com>
67 my $git_command ='export LANGUAGE=en_US.UTF-8; git';
78 -q, --quiet quiet
79 --no-tree run without a kernel tree
80 --no-signoff do not check for 'Signed-off-by' line
81 --patch treat FILE as patchfile (default)
82 --emacs emacs compile window format
83 --terse one line per report
[all …]
/Zephyr-latest/doc/releases/
Drelease-notes-2.1.rst13 * Expanded support for ARMv6-M architecture.
50 hardware-based stack overflow detection) in ARMv6-M architecture
51 * Added QEMU support for ARMv6-M architecture
52 * Extended test coverage for ARM-specific kernel features in ARMv6-M
54 * Enhanced runtime MPU programming in ARMv8-M architecture, making
55 the full partitioning of kernel SRAM memory a user-configurable
57 * Added CMSIS support for Cortex-R architectures.
59 * Added missing Cortex-R CPU device tree bindings.
60 * Fixed incorrect Cortex-R device tree specification.
68 * RISC-V:
[all …]
Drelease-notes-2.7.rst17 * Support for M-Profile Vector Extensions (MVE) on ARMv8.1-M
18 * Improved thread safety for Newlib and C++ on SMP-capable systems
20 * New Action-based Power Management API
23 * Linker Support for Tightly-Coupled Memory in RISC-V
25 * Support for extended PCI / PCIe capabilities, improved MIS-X support
33 * The kernel now supports both 32- and 64-bit architectures
36 * We added support for Point-to-Point Protocol (PPP)
37 * We added support for UpdateHub, an end-to-end solution for over-the-air device updates
38 * We added support for ARM Cortex-R Architecture
40 * Expanded support for ARMv6-M architecture
[all …]
Drelease-notes-3.2.rst13 * Added support for :ref:`bin-blobs` (also see :ref:`west-blobs`).
15 * Converted all supported boards from ``pinmux`` to :ref:`pinctrl-guide`.
31 * CVE-2022-2993: Under embargo until 2022-11-03
33 * CVE-2022-2741: Under embargo until 2022-10-14
56 This definition can be used by third-party code to compile code conditional
58 Therefore, any third-party code integrated using the Zephyr build system will
91 changed from ``-ENETDOWN`` to ``-ENETUNREACH``. A return value of ``-ENETDOWN`` now indicates
129 * Removed support for configuring the CAN-FD maximum DLC value via Kconfig
156 valid for specific bindings to specify like :dtcompatible:`gpio-leds` and
157 :dtcompatible:`fixed-partitions`.
[all …]
/Zephyr-latest/include/zephyr/
Dkernel.h4 * SPDX-License-Identifier: Apache-2.0
53 #define K_PRIO_COOP(x) (-(CONFIG_NUM_COOP_PRIORITIES - (x))) argument
54 #define K_PRIO_PREEMPT(x) (x) argument
56 #define K_HIGHEST_THREAD_PRIO (-CONFIG_NUM_COOP_PRIORITIES)
60 #define K_LOWEST_APPLICATION_THREAD_PRIO (K_LOWEST_THREAD_PRIO - 1)
245 * bits, arch-specific use high bits.
289 * from within a user-provided callback they have been invoked.
290 * Effectively it serves as a tiny bit of zero-overhead TLS data.
328 /* end - thread options */
335 * - @ref K_USER allocate a userspace thread (requires `CONFIG_USERSPACE=y`)
[all …]