Home
last modified time | relevance | path

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

12345678910

/Zephyr-Core-3.7.0/
Dwest.yml33 revision: 8d24867bc9c9d81c81eeac59391cda59333affd4
37 revision: 9351ae1ad44864a49c351f9704f65f43046abeb0
45 revision: 4bd907be0b2abec3b31a23fd8ca98db2a07209d2
52 revision: 93f5eba512c438b0c9ebc1b1a947517c865b3643
59 revision: 04eeb3c3794444122fbeeb3715f4233b0b50cfbb
66 revision: 20a38c997f507b0aa53817aab3d73a462fff7af1
73 revision: bde72a57384dde7a4310bcf3843469401be93074
80 revision: edfcda2d3937a74be0a59d6cd47e0f50183453da
87 revision: a38d2d24b04a6f970a225d1316047256ebf5a539
94 revision: 5b5339351d6e6a2368c686c734dc8b2fc65698fc
[all …]
/Zephyr-Core-3.7.0/submanifests/
Doptional.yaml7 revision: dec12fa3f0d790cafa8414a4c2930ea71ab72ffd
13 revision: 3b32c76efee705af146124fb4190f71be5a4e36e
19 revision: 8e303c264fc21c2116dc612658003a22e933124d
25 revision: 4474bd35bd39de067f0532a1b19ce3aed9ed9807
31 revision: 2cadb02a72eacda7042505dcbdd492371e8ce024
37 revision: 3f1716b0da7a48358bc265586b90b2252745c14c
43 revision: d552e4f18b92032bd335d5e3aa312f6acd82a83b
49 revision: 48613f7ba1ffbda46ad771a77a35408f48f922e9
57 revision: 10023645a0e6cb7ce23fcd7fd3dbac9f18df6234
63 revision: ee1b287d9dd07208d2cc52284240ac25bb66eae3
Dexample.yaml.sample12 # branch, change the 'revision' line accordingly.
18 revision: main
/Zephyr-Core-3.7.0/subsys/bluetooth/services/
DKconfig.dis113 bool "DIS Firmware Revision characteristic"
115 Enable Firmware Revision characteristic in Device Information Service.
118 string "Firmware revision"
123 Enable firmware revision characteristic in Device Information Service.
126 bool "DIS Hardware Revision characteristic"
128 Enable Hardware Revision characteristic in Device Information Service.
131 string "Hardware revision"
134 Enable hardware revision characteristic in Device Information Service.
137 bool "DIS Software Revision characteristic"
139 Enable Software Revision characteristic in Device Information Service.
[all …]
Ddis.c196 LOG_ERR("Failed to read firmware revision from storage" in dis_set()
201 LOG_DBG("Firmware revision set to %s", dis_fw_rev); in dis_set()
210 LOG_ERR("Failed to read hardware revision from storage" in dis_set()
215 LOG_DBG("Hardware revision set to %s", dis_hw_rev); in dis_set()
224 LOG_ERR("Failed to read software revision from storage" in dis_set()
229 LOG_DBG("Software revision set to %s", dis_sw_rev); in dis_set()
/Zephyr-Core-3.7.0/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. "
260 if(EXISTS ${BOARD_DIR}/revision.cmake)
[all …]
/Zephyr-Core-3.7.0/doc/_extensions/zephyr/
Dmanifest_projects_table.py51 """Return URL for a revision.
54 Revision format is assumed to be a git hash or a tag. URL is
59 rev: Revision.
62 URL for the revision.
103 entry += nodes.paragraph(text="Revision")
117 project.revision,
118 project.revision,
120 refuri=ManifestProjectsTable.rev_url(project.url, project.revision),
/Zephyr-Core-3.7.0/drivers/gpio/
DKconfig.grgpio5 bool "GRLIB GRGPIO revision 2"
9 Enable driver for GRLIB GRGPIO revision 2.
/Zephyr-Core-3.7.0/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}]]`.
332 revision:
334 default: <default-revision-value>
607 :file:`.config` whenever an application is compiled for your board revision
753 Board revisions are described in the ``revision`` entry of the
759 revision:
761 default: <default-revision-value>
767 Zephyr natively supports the following revision formats:
[all …]
/Zephyr-Core-3.7.0/include/zephyr/usb/class/
Dusbd_msc.h23 const char *revision; member
43 * @param t10_revision T10 Product Revision Level
50 .revision = t10_revision, \
/Zephyr-Core-3.7.0/dts/bindings/pcie/host/
Dpcie-device.yaml15 description: Optional class/revision register filter
18 description: Class/revision register mask
/Zephyr-Core-3.7.0/scripts/
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)
206 board_revision = board.get('revision')
210 "Cannot find required key 'default'. Path: '/board/revision.'")
213 "Cannot find required key 'revisions'. Path: '/board/revision.'")
226 revision_format=board.get('revision', {}).get('format'),
227 revision_default=board.get('revision', {}).get('default'),
[all …]
Dzephyr_module.py436 revision = stdout.rstrip()
444 return revision + '-dirty', True
445 return revision, False
477 def git_tags(path, revision): argument
478 if not revision or len(revision) == 0:
481 popen = subprocess.Popen(['git', '-P', 'tag', '--points-at', revision],
497 revision, dirty = git_revision(path)
500 tags = git_tags(path, revision)
503 'revision': revision}
526 # - zephyr: path and revision
[all …]
/Zephyr-Core-3.7.0/dts/bindings/misc/
Dnuvoton,npcx-soc-id.yaml24 revision-reg:
27 description: NPCX revision register address & length in byte
/Zephyr-Core-3.7.0/share/sysbuild/
DKconfig.v218 If the BOARD has a revision field set, this is the revision.
/Zephyr-Core-3.7.0/subsys/usb/device/class/
DKconfig.msc33 string "Revision for inquiry (must be 4 characters)"
36 Revision used for enquiry requests.
/Zephyr-Core-3.7.0/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.
Dworkspaces.rst15 project. This branch points to the revision that the manifest file
18 point for the upstream revision as of this latest update. Among other
219 revision: v2.5.0
242 revision: v2.5.0
245 revision: some-sha-goes-here
258 :file:`zephyr/west.yml` revision, instead of having to be copy/pasted (and
313 revision: v2.5.0
316 revision: SOME_SHA_OR_BRANCH_OR_TAG
318 revision: ANOTHER_SHA_OR_BRANCH_OR_TAG
/Zephyr-Core-3.7.0/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-Core-3.7.0/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-Core-3.7.0/subsys/dfu/boot/
Dmcuboot.c53 uint16_t revision; member
89 v1_raw->version.revision = in boot_read_v1_header()
90 sys_le16_to_cpu(v1_raw->version.revision); in boot_read_v1_header()
145 sem_ver->revision = v1_raw.version.revision; in boot_read_bank_header()
/Zephyr-Core-3.7.0/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-Core-3.7.0/boards/seagate/legend/
Dboard.yml4 revision:
/Zephyr-Core-3.7.0/boards/others/stm32_min_dev/
Dboard.yml4 revision:
/Zephyr-Core-3.7.0/subsys/fs/ext2/
Dext2.h92 /* Revision flags. */
93 #define EXT2_GOOD_OLD_REV 0x0 /* Revision 0 */
94 #define EXT2_DYNAMIC_REV 0x1 /* Revision 1 */

12345678910