Home
last modified time | relevance | path

Searched full:revision (Results 1 – 25 of 276) sorted by relevance

12345678910>>...12

/Zephyr-latest/
Dwest.yml34 revision: 8d24867bc9c9d81c81eeac59391cda59333affd4
40 revision: 153101c61ce7106f6ba8b108b5c6488efdc1151a
47 revision: 20a38c997f507b0aa53817aab3d73a462fff7af1
54 revision: bde72a57384dde7a4310bcf3843469401be93074
61 revision: 9cb6d8e72695f6b785e57443f0629a18069d6ce4
68 revision: 5b5339351d6e6a2368c686c734dc8b2fc65698fc
75 revision: abb48cd71ddd4e2a9022f4bf49b2712524c483e8
82 revision: 15ae0f87fa049e04cbec48a866f3bc37d903f950
89 revision: 4d2379de510684cd4b1c3bbbb09bce7b5a20bc1f
96 revision: edfcda2d3937a74be0a59d6cd47e0f50183453da
[all …]
/Zephyr-latest/submanifests/
Doptional.yaml8 revision: dec12fa3f0d790cafa8414a4c2930ea71ab72ffd
14 revision: 3b32c76efee705af146124fb4190f71be5a4e36e
20 revision: 11b8a1e22fa651b524494e55d22b69d3d9cebcfd
26 revision: 7307ce399b81ddcb3c3a5dc862c52d4754328d38
32 revision: 2cadb02a72eacda7042505dcbdd492371e8ce024
38 revision: bc08c9c606324cfba0c104f4ffaf5dd456cb11d6
44 revision: 502ea90105ee18f20c78f710e2ba2ded0fc0756e
50 revision: 8d404de73acf7687831e16d88e86e4f73cfddf8e
58 revision: 10023645a0e6cb7ce23fcd7fd3dbac9f18df6234
63 revision: 37dc7fac3fb0372bc0e78e022bef87fcce68c48d
[all …]
Dexample.yaml.sample12 # branch, change the 'revision' line accordingly.
18 revision: main
/Zephyr-latest/doc/_extensions/zephyr/
Dmanifest_projects_table.py50 """Return URL for a revision.
53 Revision format is assumed to be a git hash or a tag. URL is
58 rev: Revision.
61 URL for the revision.
105 entry += nodes.paragraph(text="Revision")
119 project.revision,
120 project.revision,
122 refuri=ManifestProjectsTable.rev_url(project.url, project.revision),
/Zephyr-latest/subsys/bluetooth/services/
DKconfig.dis153 bool "DIS Firmware Revision characteristic"
155 Enable Firmware Revision characteristic in Device Information Service.
158 string "Firmware revision"
163 Enable firmware revision characteristic in Device Information Service.
166 bool "DIS Hardware Revision characteristic"
168 Enable Hardware Revision characteristic in Device Information Service.
171 string "Hardware revision"
174 Enable hardware revision characteristic in Device Information Service.
177 bool "DIS Software Revision characteristic"
179 Enable Software Revision characteristic in Device Information Service.
[all …]
/Zephyr-latest/cmake/modules/
Dboards.cmake24 # - BOARD: Board, without revision field.
25 # - BOARD_REVISION: Board revision
41 # - BOARD: Board name, including any optional revision field, for example: `foo` or `foo@1.0.0`
69 # Helper function for parsing a board's name, revision, and qualifiers,
74 "Invalid revision / qualifiers format for ${board_in} (${${board_in}}). "
75 "Valid format is: <board>@<revision>/<qualifiers>"
121 "Invalid board revision: ${BOARD_REVISION}\n"
122 "Deprecated board '${BOARD_DEPRECATED}' is now implemented as a revision of another board "
123 "(${BOARD}@${BOARD_DEPRECATED_REVISION}), so the specified revision does not apply. "
236 include(${BOARD_DIR}/revision.cmake)
[all …]
/Zephyr-latest/drivers/gpio/
DKconfig.grgpio5 bool "GRLIB GRGPIO revision 2"
9 Enable driver for GRLIB GRGPIO revision 2.
/Zephyr-latest/doc/hardware/porting/
Dboard_porting.rst138 - The optional :term:`board revision`: ``1.2.0``
146 :samp:`{board name}[@{revision}][/{board qualifiers}]`, which can be extended to
147 :samp:`{board name}[@{revision}][/{SoC}[/{CPU cluster}][/{variant}]]`.
330 revision:
332 default: <default-revision-value>
605 :file:`.config` whenever an application is compiled for your board revision
762 Board revisions are described in the ``revision`` entry of the
768 revision:
770 default: <default-revision-value>
776 Zephyr natively supports the following revision formats:
[all …]
/Zephyr-latest/dts/bindings/pcie/host/
Dpcie-device.yaml15 description: Optional class/revision register filter
18 description: Class/revision register mask
/Zephyr-latest/dts/bindings/misc/
Dnuvoton,npcx-soc-id.yaml24 revision-reg:
27 description: NPCX revision register address & length in byte
/Zephyr-latest/include/zephyr/usb/class/
Dusbd_msc.h23 const char *revision; member
46 * @param t10_revision T10 Product Revision Level
53 .revision = t10_revision, \
/Zephyr-latest/soc/espressif/esp32c2/
DKconfig19 bool "SOC is revision v2.0 (ECO4)"
21 ESP32-C2 revision v2.0 has updated ROM functions.
/Zephyr-latest/scripts/
Dzephyr_module.py473 revision = stdout.rstrip()
481 return revision + '-dirty', True
482 return revision, False
514 def git_tags(path, revision): argument
515 if not revision or len(revision) == 0:
518 popen = subprocess.Popen(['git', '-P', 'tag', '--points-at', revision],
534 revision, dirty = git_revision(path)
537 tags = git_tags(path, revision)
540 'revision': revision}
563 # - zephyr: path and revision
[all …]
Dlist_boards.py40 class Revision: class
45 def from_dict(revision): argument
47 for r in revision.get('revisions', []):
48 revisions.append(Revision.from_dict(r))
49 return Revision(revision['name'], revisions)
262 board_revision = board.get('revision')
266 "Cannot find required key 'default'. Path: '/board/revision.'")
269 "Cannot find required key 'revisions'. Path: '/board/revision.'")
283 revision_format=board.get('revision', {}).get('format'),
284 revision_default=board.get('revision', {}).get('default'),
[all …]
/Zephyr-latest/soc/espressif/esp32c3/
DKconfig24 bool "SOC is revision v1.1"
26 ESP32-C3 revision v1.1 has updated ROM functions for Wi-Fi and BLE that
/Zephyr-latest/share/sysbuild/
DKconfig.v218 If the BOARD has a revision field set, this is the revision.
/Zephyr-latest/subsys/usb/device/class/
DKconfig.msc33 string "Revision for inquiry (must be 4 characters)"
36 Revision used for enquiry requests.
/Zephyr-latest/doc/develop/west/
Dbuilt-in.rst36 west init [-m URL] [--mr REVISION] [--mf FILE] [directory]
40 the ``-m`` switch, the initial revision to check out using ``--mr``, and
109 #. Inspects the project's ``revision`` field in the manifest, and fetches
112 commit specified by the revision in the previous step
120 ``revision`` values which are Git SHAs or tags that are already available
128 If the project ``revision`` is a Git ref that is neither a tag nor a SHA (i.e.
133 these like SHAs. You can disambiguate by prefixing the ``revision`` value with
134 ``refs/heads/``, e.g. ``revision: refs/heads/deadbeef``.
137 detached ``HEAD`` at the manifest revision for each updated project,
271 West may fetch all refs from the Git server when given a SHA as a revision.
/Zephyr-latest/soc/microchip/mec/common/reg/
Dmec_global_cfg.h14 * Device and Revision ID 32-bit register
15 * b[7:0] = Revision
31 /* Byte[0] at offset 0x1c is the 8-bit revision ID */
/Zephyr-latest/scripts/west_commands/zspdx/
Dwriter.py60 def generateDowloadUrl(url, revision): argument
62 # walker.py only parse revision if it's from git repositiory
63 if len(revision) == 0:
66 return f'git+{url}@{revision}'
90 downloadUrl = generateDowloadUrl(pkg.cfg.url, pkg.cfg.revision)
97 elif len(pkg.cfg.revision) > 0:
98 f.write(f"PackageVersion: {pkg.cfg.revision}\n")
/Zephyr-latest/boards/nordic/nrf9160dk/
Dnrf9160dk_nrf52840_0_14_0.overlay39 /* New signal added in this revision (0.14.0). */
44 /* No need to drive P0.12 together with P1.12 in this board revision. */
/Zephyr-latest/boards/sifive/hifive1/
Dboard.yml7 revision:
/Zephyr-latest/boards/st/nucleo_f030r8/
Dboard.yml5 revision:
/Zephyr-latest/boards/phytec/reel_board/
Dboard.yml7 revision:
/Zephyr-latest/boards/st/stm32f3_disco/
Dboard.yml5 revision:

12345678910>>...12