/Zephyr-latest/dts/bindings/display/ |
D | ftdi,ft800.yaml | 2 # SPDX-License-Identifier: Apache-2.0 8 include: spi-device.yaml 11 irq-gpios: 12 type: phandle-array 13 description: Optional IRQ line of FT800 controller 71 the start of new frame. 77 Number of lines for signal VSYNC toggle takes at the start 83 description: Number of PCLK cycles per visible part of horizontal line 90 given line 95 description: Number of total PCLK cycles per horizontal line scan. [all …]
|
D | solomon,ssd1322.yaml | 5 include: [mipi-dbi-spi-device.yaml, display-controller.yaml] 8 column-offset: 13 row-offset: 17 COM pin used as first row, mapped to the line set by start-line. 20 start-line: 24 Starting line address of display ram (0-127). 27 mux-ratio: 31 COM Pin Multiplex ratio from 16-128. 34 remap-row-first: 38 remap-columns: [all …]
|
D | solomon,ssd1327fb.yaml | 1 # Copyright (c) 2024, Savoir-faire Linux 2 # SPDX-License-Identifier: Apache-2.0 4 description: SSD1327 128x128 dot-matrix display controller on MIPI_DBI bus 6 include: [mipi-dbi-spi-device.yaml, display-controller.yaml] 11 oscillator-freq: 16 display-offset: 21 start-line: 24 description: Start line of display RAM to be displayed by selecting a value from 0 to 127 26 multiplex-ratio: 34 description: Pre-charge period ranging from 0 to 15 DCLK's [all …]
|
D | solomon,ssd16xx-common.yaml | 2 # SPDX-License-Identifier: Apache-2.0 6 include: [mipi-dbi-spi-device.yaml, display-controller.yaml] 10 type: uint8-array 11 description: Booster soft start values 13 busy-gpios: 14 type: phandle-array 34 - 0 35 - 90 36 - 180 37 - 270 [all …]
|
/Zephyr-latest/drivers/interrupt_controller/ |
D | intc_exti_stm32.c | 2 * Copyright (c) 2016 Open-RnD Sp. z o.o. 4 * Copyright (c) 2019-23 Linaro Limited 6 * SPDX-License-Identifier: Apache-2.0 23 #include <zephyr/dt-bindings/pinctrl/stm32-pinctrl-common.h> /* For STM32L0 series */ 30 /** @brief EXTI lines range mapped to a single interrupt line */ 32 /** Start of the range */ 33 uint8_t start; member 40 static IRQn_Type exti_irq_table[NUM_EXTI_LINES] = {[0 ... NUM_EXTI_LINES - 1] = 0xFF}; 50 /* per-line callbacks */ 66 /* Gives the LL_SBS_EXTI_LINEn corresponding to the line number */ in stm32_exti_linenum_to_src_cfg_line() [all …]
|
/Zephyr-latest/tests/drivers/console/line_splitting/ |
D | line_splitting.robot | 1 # SPDX-License-Identifier: Apache-2.0 9 Start Emulation 10 Wait For Next Line On Uart 11 Write Line To Uart \rabc\nd\n waitForEcho=false 12 Wait For Line On Uart getline: abc; 13 Write Line To Uart \rabc\nd\n waitForEcho=false 14 Wait For Line On Uart ^abc$ treatAsRegex=true
|
/Zephyr-latest/scripts/pylib/pytest-twister-harness/tests/resources/ |
D | shell_simulator.py | 3 # SPDX-License-Identifier: Apache-2.0 16 def main() -> int: 17 print('Start shell simulator', flush=True) 19 for line in sys.stdin: 20 line = line.strip() 21 print(line, flush=True) 22 if line == 'quit': 24 elif line == 'zen':
|
/Zephyr-latest/scripts/utils/ |
D | convert_guidelines.py | 4 # SPDX-License-Identifier: Apache-2.0 36 # Start search by cppcheck misra addon 70 pattern_table_start = re.compile(r'.*list-table:: Main rules') 71 # Each Rule is a new table column so start with '[tab]* - Rule' 73 pattern_new_line = re.compile(r'^ \* - Rule ([0-9]+.[0-9]+).*$') 74 # Each table column start with '[tab]- ' 75 pattern_new_col = re.compile(r'^ - (.*)$') 82 for line in file_stream: 84 line = line.replace('\r', '').replace('\n', '') 86 # Done if we find the Additional rules table start [all …]
|
/Zephyr-latest/ |
D | .ruff.toml | 2 # SPDX-License-Identifier: Apache-2.0 4 extend = ".ruff-excludes.toml" 6 line-length = 100 7 target-version = "py310" 11 # zephyr-keep-sorted-start 12 "B", # flake8-bugbear 16 "SIM", # flake8-simplify 19 # zephyr-keep-sorted-stop 23 # zephyr-keep-sorted-start 24 "SIM108", # Allow if-else blocks instead of forcing ternary operator [all …]
|
/Zephyr-latest/samples/modules/tflite-micro/magic_wand/renode/ |
D | litex-vexriscv-tflite.robot | 2 # SPDX-License-Identifier: Apache-2.0 14 Wait For Line On Uart RING: 24 Wait For Line On Uart ${SPACE*10}* 25 Wait For Line On Uart ${SPACE*7}*${SPACE*5}* 26 Wait For Line On Uart ${SPACE*5}*${SPACE*9}* 27 Wait For Line On Uart ${SPACE*4}*${SPACE*11}* 28 Wait For Line On Uart ${SPACE*5}*${SPACE*9}* 29 Wait For Line On Uart ${SPACE*7}*${SPACE*5}* 30 Wait For Line On Uart ${SPACE*10}* 33 Wait For Line On Uart SLOPE: [all …]
|
/Zephyr-latest/scripts/tests/twister/ |
D | test_harness.py | 4 # SPDX-License-Identifier: Apache-2.0 48 …+ "[{state}] {suite}.{test}, where GetParam() = 8-byte object <0B-00 00-00 00-9A 80-F7> (0 ms tota… 54 "[00:00:00.000,000] [0m<inf> label: [----------] Global test environment tear-down[0m" 59 for line in logs: 60 harness.handle(line) 64 ([""], "^START:(?P<foo>.*):END", [], None), 65 (["START:bar:STOP"], "^START:(?P<foo>.*):END", [], None), 66 (["START:bar:END"], "^START:(?P<foo>.*):END", [{"foo": "bar"}], None), 68 ["START:bar:baz:END"], 69 "^START:(?P<foo>.*):(?P<boo>.*):END", [all …]
|
/Zephyr-latest/dts/bindings/interrupt-controller/ |
D | st,stm32-exti.yaml | 3 compatible: "st,stm32-exti" 5 include: [base.yaml, interrupt-controller.yaml] 14 interrupt-names: 17 num-lines: 22 line-ranges: 26 Description of the input lines range for each interrupt line supported 27 by the external interrupt controller. For each line a couple of integers is 28 provided: the number of the first line of the range start and the length 31 line-ranges = <0 1>, <1 1>, <2 1>, <3 1>, 33 Above property provides event-range for 7 lines. [all …]
|
/Zephyr-latest/arch/x86/core/ |
D | cache.c | 2 * Copyright (c) 2013-2014 Wind River Systems, Inc. 5 * SPDX-License-Identifier: Apache-2.0 21 /* Not Write-through bit */ 35 /* Enable write-back caching by clearing the NW and CD bits */ in arch_dcache_enable() 47 /* Enter the no-fill mode by setting NW=0 and CD=1 */ in arch_dcache_disable() 83 * sys_cache_flush() iterates on the cache lines, a cache line alignment for 86 * The cache line size is specified via the d-cache-line-size DTS property. 91 uintptr_t start = (uintptr_t)start_addr; in arch_dcache_flush_range() local 92 uintptr_t end = start + size; in arch_dcache_flush_range() 95 return -ENOTSUP; in arch_dcache_flush_range() [all …]
|
/Zephyr-latest/soc/nuvoton/npcm/common/esiost/ |
D | esiost.py | 5 # SPDX-License-Identifier: Apache-2.0 10 # -i in_file.bin -o out_file.bin 11 # [-chip <name>] [-v] 61 INVALID_INPUT = -1 75 :param esiost_args: the object representing the command line arguments. 101 :param esiost_args: the object representing the command line arguments. 103 :returns: output file path object, or -1 if fails 110 exit_with_failure("Define input file, using -i flag") 148 :param esiost_args: the object representing the command line arguments. 160 :param esiost_args: the object representing the command line arguments. [all …]
|
/Zephyr-latest/samples/subsys/console/getline/ |
D | README.rst | 1 .. zephyr:code-sample:: console_getline 4 Use console_getline() to read an input line from the console. 10 Similar to the well-known ANSI C gets() and fgets() functions, 12 line or blocks waiting for one. Using this function, it should be fairly 14 console input line by line. The sample also allows to see details of how 15 a line is returned by the function. 18 :zephyr:code-sample:`console_getchar`. 32 .. zephyr-app-commands:: 33 :zephyr-app: samples/subsys/console/getline 34 :host-os: unix [all …]
|
/Zephyr-latest/samples/subsys/shell/shell_module/ |
D | shell_module.robot | 1 # SPDX-License-Identifier: Apache-2.0 10 Start Emulation 12 Write Line To Uart version 13 Wait For Line On Uart Zephyr version
|
/Zephyr-latest/dts/bindings/serial/ |
D | infineon,xmc4xxx-uart.yaml | 3 compatible: "infineon,xmc4xxx-uart" 5 include: [uart-controller.yaml, pinctrl-device.yaml] 11 input-src: 13 Connects the UART receive line (USIC DX0 input) to a specific GPIO pin. 16 is the loopback input line. 20 - "DX0A" 21 - "DX0B" 22 - "DX0C" 23 - "DX0D" 24 - "DX0E" [all …]
|
/Zephyr-latest/subsys/logging/backends/ |
D | Kconfig.ws | 2 # SPDX-License-Identifier: Apache-2.0 25 Number of TX retries before dropping the full line of data. 34 bool "Automatically start websocket backend" 37 When enabled automatically start the websocket backend on 38 application start. 41 backend-str = websocket
|
/Zephyr-latest/scripts/release/ |
D | list_backports.py | 4 # SPDX-License-Identifier: Apache-2.0 8 This script searches for issues referenced via pull-requests in a release 21 -t ~/.ghtoken \ 22 -b v2.7-branch \ 23 -s 2021-12-15 -e 2022-04-22 \ 24 -P 45074 -P 45868 -P 44918 -P 41234 -P 41174 \ 25 -j | jq . | tee /tmp/backports.json 29 -b v3.0-branch \ 30 -p 43381 \ 31 -j | jq . | tee /tmp/backports.json [all …]
|
/Zephyr-latest/tests/net/lib/lwm2m/interop/pytest/ |
D | test_bootstrap.py | 7 SPDX-License-Identifier: Apache-2.0 11 https://www.openmobilealliance.org/release/LightweightM2M/ETS/OMA-ETS-LightweightM2M-V1_1-20190912-… 29 …://www.openmobilealliance.org/release/LightweightM2M/ETS/OMA-ETS-LightweightM2M-V1_1-20190912-D.pdf 31 # Bootstrap Interface: [0-99] 35 """LightweightM2M-1.1-int-0 - Client Initiated Bootstrap""" 40 """LightweightM2M-1.1-int-1 - Client Initiated Bootstrap Full (PSK)""" 46 """LightweightM2M-1.1-int-4 - Bootstrap Delete""" 59 """LightweightM2M-1.1-int-5 - Server Initiated Bootstrap""" 66 """LightweightM2M-1.1-int-6 - Bootstrap Sequence""" 69 shell.exec_command(f'lwm2m start {endpoint}') [all …]
|
/Zephyr-latest/tests/arch/arm/arm_irq_zero_latency_levels/src/ |
D | main.c | 4 * SPDX-License-Identifier: Apache-2.0 105 static int find_unused_irq(int start) in find_unused_irq() argument 109 for (i = start - 1; i >= 0; i--) { in find_unused_irq() 114 * returning false, here, implies that the IRQ line is in find_unused_irq() 119 /* Set the NVIC line to pending. */ in find_unused_irq() 124 * If the NVIC line is pending, it is in find_unused_irq() 126 * line. in find_unused_irq() 132 * If the NVIC line can be successfully in find_unused_irq() 133 * un-pended, it is guaranteed that it in find_unused_irq() 135 * triggering. Return the NVIC line in find_unused_irq() [all …]
|
/Zephyr-latest/boards/native/native_posix/ |
D | main.c | 4 * SPDX-License-Identifier: Apache-2.0 23 * In this case, the no-indeterminism principle is lost. Runs of native_posix 56 * line parsing and CPU start, until we are ready to let the HW models 63 * and stderr line buffered (default for console) in posix_init() 93 uint64_t start = hwm_get_time(); in posix_exec_for() local 97 } while (hwm_get_time() < (start + us)); in posix_exec_for() 108 * and calls the "OS" through a per-case fuzz test entry point. 117 /* This line should be unreachable */ in main()
|
/Zephyr-latest/scripts/native_simulator/common/src/ |
D | main.c | 5 * SPDX-License-Identifier: Apache-2.0 54 * line parsing and CPU start, until we are ready to let the HW models 63 * and stderr line buffered (default for console) in nsi_init() 102 uint64_t start = nsi_hws_get_time(); in nsi_exec_for() local 106 } while (nsi_hws_get_time() < (start + us)); in nsi_exec_for() 115 * and calls the "OS" through a per-case fuzz test entry point. 124 /* This line should be unreachable */ in main()
|
/Zephyr-latest/boards/st/steval_stwinbx1/ |
D | board.cmake | 2 # SPDX-License-Identifier: Apache-2.0 5 # Comment below line and uncomment the second line to use SWD upoad method. 6 board_runner_args(stm32cubeprogrammer "--port=usb1") 7 # board_runner_args(stm32cubeprogrammer "--port=swd" "--reset-mode=hw") 9 # Even if flash and start work, dfu-util return error 74. It can be ignored. 10 board_runner_args(dfu-util "--pid=0483:df11" "--alt=0" "--dfuse") 12 board_runner_args(openocd "--tcl-port=6666") 13 board_runner_args(openocd --cmd-pre-init "gdb_report_data_abort enable") 14 board_runner_args(openocd "--no-halt") 18 include(${ZEPHYR_BASE}/boards/common/dfu-util.board.cmake)
|
/Zephyr-latest/subsys/fb/ |
D | cfb.c | 4 * SPDX-License-Identifier: Apache-2.0 20 #define MSB_BIT_MASK(x) (BIT_MASK(x) << (8 - x)) 72 return (uint8_t *)fptr->data + in get_glyph_ptr() 73 (c - fptr->first_char) * in get_glyph_ptr() 74 (fptr->width * fptr->height / 8U); in get_glyph_ptr() 80 if (fptr->caps & CFB_FONT_MONO_VPACKED) { in get_glyph_byte() 81 return glyph_ptr[x * (fptr->height / 8U) + y]; in get_glyph_byte() 82 } else if (fptr->caps & CFB_FONT_MONO_HPACKED) { in get_glyph_byte() 83 return glyph_ptr[y * (fptr->width) + x]; in get_glyph_byte() 98 const struct cfb_font *fptr = &(fb->fonts[fb->font_idx]); in draw_char_vtmono() [all …]
|