/Zephyr-Core-3.7.0/ |
D | west.yml | 33 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/ |
D | optional.yaml | 7 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
|
D | example.yaml.sample | 12 # branch, change the 'revision' line accordingly. 18 revision: main
|
/Zephyr-Core-3.7.0/subsys/bluetooth/services/ |
D | Kconfig.dis | 113 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 …]
|
D | dis.c | 196 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/ |
D | boards.cmake | 24 # - 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/ |
D | manifest_projects_table.py | 51 """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/ |
D | Kconfig.grgpio | 5 bool "GRLIB GRGPIO revision 2" 9 Enable driver for GRLIB GRGPIO revision 2.
|
/Zephyr-Core-3.7.0/doc/hardware/porting/ |
D | board_porting.rst | 138 - 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/ |
D | usbd_msc.h | 23 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/ |
D | pcie-device.yaml | 15 description: Optional class/revision register filter 18 description: Class/revision register mask
|
/Zephyr-Core-3.7.0/scripts/ |
D | list_boards.py | 40 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 …]
|
D | zephyr_module.py | 436 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/ |
D | nuvoton,npcx-soc-id.yaml | 24 revision-reg: 27 description: NPCX revision register address & length in byte
|
/Zephyr-Core-3.7.0/share/sysbuild/ |
D | Kconfig.v2 | 18 If the BOARD has a revision field set, this is the revision.
|
/Zephyr-Core-3.7.0/subsys/usb/device/class/ |
D | Kconfig.msc | 33 string "Revision for inquiry (must be 4 characters)" 36 Revision used for enquiry requests.
|
/Zephyr-Core-3.7.0/doc/develop/west/ |
D | built-in.rst | 36 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.
|
D | workspaces.rst | 15 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/ |
D | mec_global_cfg.h | 14 * 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/ |
D | writer.py | 60 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/ |
D | mcuboot.c | 53 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/ |
D | nrf9160dk_nrf52840_0_14_0.overlay | 39 /* 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/ |
D | board.yml | 4 revision:
|
/Zephyr-Core-3.7.0/boards/others/stm32_min_dev/ |
D | board.yml | 4 revision:
|
/Zephyr-Core-3.7.0/subsys/fs/ext2/ |
D | ext2.h | 92 /* Revision flags. */ 93 #define EXT2_GOOD_OLD_REV 0x0 /* Revision 0 */ 94 #define EXT2_DYNAMIC_REV 0x1 /* Revision 1 */
|