2020-04-07 15:34:09 +02:00
|
|
|
# This file contains information on who maintains what. It is parsed by
|
|
|
|
# get_maintainer.py.
|
|
|
|
#
|
|
|
|
# File format
|
|
|
|
# ###########
|
|
|
|
#
|
|
|
|
# "Area title" (the quotes are only needed for titles with special characters,
|
|
|
|
# like colons):
|
|
|
|
# status:
|
|
|
|
# One of the following:
|
|
|
|
#
|
|
|
|
# * maintained:
|
|
|
|
# The area has a Maintainer (approved by the TSC) who
|
|
|
|
# looks after the area.
|
|
|
|
#
|
2022-02-28 16:33:21 +01:00
|
|
|
# * odd fixes:
|
2022-04-07 05:03:47 +02:00
|
|
|
# The area gets odd fixes and may have collaborators.
|
2020-04-07 15:34:09 +02:00
|
|
|
#
|
|
|
|
# * obsolete:
|
|
|
|
# Old code. Something being marked obsolete generally means it has
|
|
|
|
# been replaced by something better that you should be using
|
|
|
|
# instead.
|
|
|
|
#
|
|
|
|
# maintainers:
|
|
|
|
# List of GitHub handles for the people who maintain the area. Usually,
|
|
|
|
# there's only one maintainer.
|
|
|
|
#
|
|
|
|
# collaborators (not to be confused with the GitHub collaborator role):
|
|
|
|
# Very involved contributors, who know the area well and contribute
|
|
|
|
# significantly to it.
|
|
|
|
#
|
|
|
|
# labels:
|
|
|
|
# List of GitHub labels to add to pull requests that modify the area.
|
|
|
|
#
|
|
|
|
# files:
|
|
|
|
# List of paths and/or glob patterns giving the files in the area,
|
|
|
|
# relative to the root directory.
|
|
|
|
#
|
|
|
|
# If a path or glob pattern ends in a '/', it matches all files within
|
|
|
|
# the given directory or directories. Otherwise, an exact match is
|
|
|
|
# required.
|
|
|
|
#
|
|
|
|
# Paths to directories should always have a trailing '/'.
|
|
|
|
#
|
|
|
|
# files-regex:
|
|
|
|
# List of regular expressions applied to paths to determine if they
|
|
|
|
# belong to the area. The regular expression may match anywhere within
|
|
|
|
# the path, but can be anchored with ^ and $ as usual.
|
|
|
|
#
|
|
|
|
# Can be combined with a 'files' key.
|
|
|
|
#
|
|
|
|
# Note: Prefer plain 'files' patterns where possible. get_maintainer.py
|
|
|
|
# will check that they match some file, but won't check regexes
|
|
|
|
# (because it might be slow).
|
|
|
|
#
|
|
|
|
# files-exclude:
|
|
|
|
# Like 'files', but any matching files will be excluded from the area.
|
|
|
|
#
|
|
|
|
# files-regex-exclude:
|
|
|
|
# Like 'files-regex', but any matching files will be excluded from the
|
|
|
|
# area.
|
|
|
|
#
|
|
|
|
# description: >-
|
|
|
|
# Plain-English description. Describe what the system is about, from an
|
|
|
|
# outsider's perspective.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# All areas must have a 'files' and/or 'files-regex' key. The other keys are
|
|
|
|
# optional.
|
|
|
|
#
|
|
|
|
# It is very advisable to have a `status` key in all entries. Exceptions to
|
|
|
|
# this would be sub-areas which add extra fields (for ex. more `collaborators`
|
|
|
|
# who work only in that sub-area) to other areas.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# Workflow
|
|
|
|
# ########
|
|
|
|
#
|
|
|
|
# Ideally, any file in the tree will be covered by some area.
|
|
|
|
#
|
|
|
|
# When a GitHub pull request is sent, this happens:
|
|
|
|
#
|
|
|
|
# * A user mentioned in 'maintainers' is added as Assignee to
|
|
|
|
# the pull request
|
|
|
|
#
|
|
|
|
# * Users mentioned in 'maintainers' and 'collaborators' are added as
|
|
|
|
# reviewers to the pull request
|
|
|
|
#
|
|
|
|
# * The labels listed in 'labels' are automatically added to the pull
|
|
|
|
# request
|
|
|
|
#
|
|
|
|
# * The bot posts this comment:
|
|
|
|
#
|
|
|
|
# This PR affects the following areas:
|
|
|
|
# <area name>:
|
|
|
|
# Status: ...
|
|
|
|
# Maintainers: <list of maintainers>
|
|
|
|
# Collaborators: <list of sub-maintainers>
|
|
|
|
#
|
|
|
|
# <area name>:
|
|
|
|
# ...
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# Changes to MAINTAINERS.yml need to be approved as follows:
|
|
|
|
#
|
|
|
|
# * Changing the 'maintainers' for an area needs approval from the
|
|
|
|
# Technical Steering Committee
|
|
|
|
#
|
|
|
|
# * Changing the 'collaborators' lines requires the maintainer and
|
|
|
|
# collaborators of that area to agree (or vote on it)
|
|
|
|
|
|
|
|
# Areas are sorted by name
|
|
|
|
|
|
|
|
ARC arch:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- ruuddw
|
|
|
|
collaborators:
|
|
|
|
- abrodkin
|
|
|
|
- evgeniy-paltsev
|
2023-02-08 07:50:53 +01:00
|
|
|
- SiyuanCheng-CN
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- arch/arc/
|
|
|
|
- include/zephyr/arch/arc/
|
2023-02-15 13:30:27 +01:00
|
|
|
- tests/arch/arc/
|
|
|
|
- dts/arc/synopsys/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: ARC"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
ARM arch:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- microbuilder
|
|
|
|
collaborators:
|
|
|
|
- carlocaione
|
|
|
|
- galak
|
|
|
|
- MaureenHelm
|
|
|
|
- stephanosio
|
|
|
|
- bbolen
|
|
|
|
- povergoing
|
2023-09-28 11:45:28 +02:00
|
|
|
- ithinuel
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- arch/arm/
|
|
|
|
- arch/arm/core/offsets/
|
|
|
|
- include/zephyr/arch/arm/
|
|
|
|
- tests/arch/arm/
|
2023-02-15 13:30:27 +01:00
|
|
|
- doc/hardware/arch/arm_cortex_m.rst
|
|
|
|
- boards/arm/qemu_cortex_m3/
|
|
|
|
- boards/arm/qemu_cortex_m0/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: ARM"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2021-03-02 09:03:55 +01:00
|
|
|
ARM64 arch:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- carlocaione
|
|
|
|
collaborators:
|
|
|
|
- npitre
|
|
|
|
- povergoing
|
|
|
|
- sgrrzhf
|
|
|
|
files:
|
|
|
|
- arch/arm64/
|
|
|
|
- include/zephyr/arch/arm64/
|
|
|
|
- tests/arch/arm64/
|
|
|
|
- soc/arm64/
|
|
|
|
- boards/arm64/
|
|
|
|
- dts/arm64/
|
|
|
|
labels:
|
|
|
|
- "area: ARM64"
|
2021-03-02 09:03:55 +01:00
|
|
|
|
2023-02-15 13:30:27 +01:00
|
|
|
MIPS arch:
|
|
|
|
status: odd fixes
|
|
|
|
files:
|
|
|
|
- soc/mips/
|
|
|
|
- arch/mips/
|
|
|
|
- include/zephyr/arch/mips/
|
|
|
|
- boards/mips/
|
|
|
|
labels:
|
|
|
|
- "area: MIPS"
|
|
|
|
|
2023-06-20 14:28:46 +02:00
|
|
|
Ambiq Platforms:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- fkokosinski
|
|
|
|
collaborators:
|
|
|
|
- tgorochowik
|
|
|
|
- msobkowski
|
|
|
|
files:
|
|
|
|
- soc/arm/ambiq/
|
|
|
|
- boards/arm/apollo*/
|
|
|
|
- dts/arm/ambiq/
|
|
|
|
- dts/bindings/*/ambiq*
|
|
|
|
- drivers/*/*_ambiq*
|
|
|
|
labels:
|
|
|
|
- "platform: Ambiq"
|
|
|
|
|
2023-09-28 14:32:59 +02:00
|
|
|
Binary Descriptors:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- yonsch
|
|
|
|
files:
|
|
|
|
- subsys/bindesc/
|
|
|
|
- include/zephyr/bindesc.h
|
|
|
|
- samples/subsys/bindesc/
|
|
|
|
- scripts/west_commands/bindesc.py
|
|
|
|
labels:
|
|
|
|
- "area: Binary Descriptors"
|
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
Bluetooth:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- jhedberg
|
|
|
|
collaborators:
|
|
|
|
- hermabe
|
|
|
|
- Vudentz
|
|
|
|
- Thalley
|
|
|
|
- asbjornsabo
|
|
|
|
- sjanc
|
|
|
|
files:
|
|
|
|
- doc/connectivity/bluetooth/
|
|
|
|
- include/zephyr/bluetooth/
|
|
|
|
- include/zephyr/drivers/bluetooth/
|
|
|
|
- samples/bluetooth/
|
|
|
|
- subsys/bluetooth/
|
|
|
|
- subsys/bluetooth/common/
|
|
|
|
- tests/bluetooth/
|
2023-03-20 15:06:47 +01:00
|
|
|
- tests/bsim/bluetooth/
|
2022-07-20 20:09:02 +02:00
|
|
|
files-exclude:
|
|
|
|
- include/zephyr/bluetooth/mesh/
|
|
|
|
- subsys/bluetooth/controller/
|
2023-03-23 14:11:56 +01:00
|
|
|
- subsys/bluetooth/host/
|
2022-07-20 20:09:02 +02:00
|
|
|
- subsys/bluetooth/mesh/
|
|
|
|
- samples/bluetooth/mesh/
|
|
|
|
- subsys/bluetooth/audio/
|
|
|
|
- include/zephyr/bluetooth/audio/
|
2023-03-17 15:29:24 +01:00
|
|
|
- tests/bsim/bluetooth/audio/
|
2023-03-23 14:11:56 +01:00
|
|
|
- tests/bsim/bluetooth/host/
|
2023-03-20 15:06:47 +01:00
|
|
|
- tests/bsim/bluetooth/ll/
|
2022-07-20 20:09:02 +02:00
|
|
|
- tests/bluetooth/controller/
|
2023-03-23 14:11:56 +01:00
|
|
|
- tests/bluetooth/host*/
|
2022-07-20 20:09:02 +02:00
|
|
|
- tests/bluetooth/mesh_*/
|
|
|
|
- tests/bluetooth/mesh/
|
2023-09-06 11:56:48 +02:00
|
|
|
- tests/bluetooth/audio/
|
2023-03-20 15:06:47 +01:00
|
|
|
- tests/bsim/bluetooth/mesh/
|
2022-10-03 16:47:08 +02:00
|
|
|
- tests/bluetooth/shell/audio*
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Bluetooth"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
Bluetooth controller:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- cvinayak
|
|
|
|
collaborators:
|
|
|
|
- carlescufi
|
|
|
|
- thoh-ot
|
|
|
|
- kruithofa
|
|
|
|
- ppryga
|
|
|
|
- mtpr-ot
|
|
|
|
- wopu-ot
|
|
|
|
- erbr-ot
|
|
|
|
files:
|
|
|
|
- subsys/bluetooth/controller/
|
|
|
|
- tests/bluetooth/controller/
|
2023-03-20 15:06:47 +01:00
|
|
|
- tests/bsim/bluetooth/ll/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Bluetooth Controller"
|
|
|
|
- "area: Bluetooth"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2023-03-28 15:42:16 +02:00
|
|
|
Bluetooth Host:
|
2023-03-23 14:11:56 +01:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- jhedberg
|
|
|
|
collaborators:
|
|
|
|
- hermabe
|
|
|
|
- jori-nordic
|
|
|
|
- alwa-nordic
|
|
|
|
- Vudentz
|
|
|
|
- Thalley
|
|
|
|
- asbjornsabo
|
|
|
|
- sjanc
|
|
|
|
- theob-pro
|
|
|
|
- kruithofa
|
|
|
|
files:
|
2023-08-17 17:06:25 +02:00
|
|
|
- drivers/bluetooth/
|
2023-03-23 14:11:56 +01:00
|
|
|
- subsys/bluetooth/host/
|
2023-08-17 17:06:25 +02:00
|
|
|
- subsys/bluetooth/services/
|
|
|
|
- subsys/bluetooth/shell/
|
2023-03-23 14:11:56 +01:00
|
|
|
- tests/bluetooth/host*/
|
|
|
|
- tests/bsim/bluetooth/host/
|
|
|
|
labels:
|
2023-03-28 15:42:16 +02:00
|
|
|
- "area: Bluetooth Host"
|
2023-03-23 14:11:56 +01:00
|
|
|
- "area: Bluetooth"
|
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
Bluetooth Mesh:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- PavelVPV
|
|
|
|
collaborators:
|
|
|
|
- jhedberg
|
|
|
|
- LingaoM
|
|
|
|
- alxelax
|
2022-09-09 14:26:35 +02:00
|
|
|
- Andrewpini
|
2023-08-28 12:31:41 +02:00
|
|
|
- akredalen
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- subsys/bluetooth/mesh/
|
|
|
|
- include/zephyr/bluetooth/mesh/
|
|
|
|
- tests/bluetooth/mesh*/
|
2023-03-20 15:06:47 +01:00
|
|
|
- tests/bsim/bluetooth/mesh/
|
2023-02-15 13:30:27 +01:00
|
|
|
- samples/bluetooth/mesh/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Bluetooth Mesh"
|
|
|
|
- "area: Bluetooth"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2022-03-01 08:40:12 +01:00
|
|
|
Bluetooth Audio:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- Thalley
|
|
|
|
collaborators:
|
|
|
|
- jhedberg
|
|
|
|
- Casper-Bonde-Bose
|
|
|
|
- MariuszSkamra
|
|
|
|
- sjanc
|
2022-11-21 22:33:37 +01:00
|
|
|
- szymon-czapracki
|
2022-09-26 14:45:09 +02:00
|
|
|
- asbjornsabo
|
2022-11-21 22:29:20 +01:00
|
|
|
- fredrikdanebjer
|
2023-01-16 23:40:03 +01:00
|
|
|
- kruithofa
|
2023-02-24 17:01:32 +01:00
|
|
|
- larsgk
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- subsys/bluetooth/audio/
|
|
|
|
- include/zephyr/bluetooth/audio/
|
2023-09-06 11:56:48 +02:00
|
|
|
- tests/bluetooth/audio/
|
2023-03-17 15:29:24 +01:00
|
|
|
- tests/bsim/bluetooth/audio/
|
2022-10-03 16:47:08 +02:00
|
|
|
- tests/bluetooth/shell/audio*
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Bluetooth Audio"
|
|
|
|
- "area: Bluetooth"
|
2022-03-01 08:40:12 +01:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
Build system:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- tejlmand
|
|
|
|
collaborators:
|
|
|
|
- jeremybettis
|
|
|
|
- nashif
|
2022-10-18 13:32:45 +02:00
|
|
|
- nordicjm
|
2023-08-16 16:22:11 +02:00
|
|
|
- "57300"
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- cmake/
|
|
|
|
- CMakeLists.txt
|
|
|
|
- scripts/zephyr_module.py
|
|
|
|
- share/
|
|
|
|
- doc/build/
|
|
|
|
- doc/develop/modules.rst
|
2022-07-25 15:25:56 +02:00
|
|
|
- scripts/build/
|
2023-02-24 12:28:57 +01:00
|
|
|
- tests/cmake/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Build System"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2023-04-12 13:30:35 +02:00
|
|
|
Board/SoC configuration:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- tejlmand
|
|
|
|
collaborators:
|
|
|
|
- galak
|
|
|
|
- nashif
|
|
|
|
- nordicjm
|
2023-08-16 16:22:11 +02:00
|
|
|
- "57300"
|
2023-04-12 13:30:35 +02:00
|
|
|
files:
|
|
|
|
- soc/Kconfig
|
|
|
|
- boards/Kconfig
|
|
|
|
labels:
|
|
|
|
- "area: Board/SoC configuration"
|
|
|
|
|
2021-06-12 16:54:39 +02:00
|
|
|
"C++":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- stephanosio
|
|
|
|
collaborators:
|
|
|
|
- alexanderwachter
|
2022-10-02 19:23:53 +02:00
|
|
|
- cfriedt
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
2022-12-08 12:54:28 +01:00
|
|
|
- lib/cpp/
|
|
|
|
- tests/lib/cpp/
|
|
|
|
- samples/cpp/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: C++"
|
2021-06-12 16:54:39 +02:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
C library:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- stephanosio
|
|
|
|
collaborators:
|
|
|
|
- nashif
|
|
|
|
- keith-packard
|
|
|
|
- cfriedt
|
|
|
|
files:
|
|
|
|
- lib/libc/
|
|
|
|
- tests/lib/c_lib/
|
|
|
|
- tests/lib/newlib/
|
|
|
|
labels:
|
|
|
|
- "area: C Library"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
CMSIS API layer:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- nashif
|
|
|
|
files:
|
|
|
|
- subsys/portability/cmsis_rtos_v*/
|
|
|
|
- include/zephyr/portability/cmsis*
|
|
|
|
- samples/subsys/portability/cmsis_rtos_v*/
|
|
|
|
- tests/subsys/portability/cmsis_rtos_v*/
|
2023-02-20 17:00:35 +01:00
|
|
|
- doc/services/portability/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: CMSIS API Layer"
|
|
|
|
- "area: Portability"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2022-10-07 07:54:46 +02:00
|
|
|
DSP subsystem:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- stephanosio
|
|
|
|
- yperess
|
|
|
|
files:
|
|
|
|
- subsys/dsp/
|
|
|
|
- tests/subsys/dsp/
|
2023-02-15 13:30:27 +01:00
|
|
|
- include/zephyr/dsp/dsp.h
|
|
|
|
- include/zephyr/dsp/types.h
|
|
|
|
- include/zephyr/dsp/
|
2023-02-24 10:26:15 +01:00
|
|
|
- doc/services/dsp/
|
2022-10-07 07:54:46 +02:00
|
|
|
labels:
|
|
|
|
- "area: DSP"
|
|
|
|
|
2021-06-12 16:47:20 +02:00
|
|
|
CMSIS-DSP integration:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- stephanosio
|
|
|
|
collaborators:
|
|
|
|
- galak
|
2023-04-16 02:26:09 +02:00
|
|
|
- XenuIsWatching
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
2023-09-26 20:49:04 +02:00
|
|
|
- modules/cmsis-dsp/
|
2022-07-20 20:09:02 +02:00
|
|
|
- tests/benchmarks/cmsis_dsp/
|
|
|
|
- tests/lib/cmsis_dsp/
|
|
|
|
labels:
|
|
|
|
- "area: CMSIS-DSP"
|
2021-06-12 16:47:20 +02:00
|
|
|
|
2022-04-27 19:18:48 +02:00
|
|
|
CMSIS-NN integration:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- JordanYates
|
|
|
|
collaborators:
|
|
|
|
- stephanosio
|
2023-04-19 21:58:43 +02:00
|
|
|
- XenuIsWatching
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
2023-09-26 20:49:04 +02:00
|
|
|
- modules/cmsis-nn/
|
2022-07-20 20:09:02 +02:00
|
|
|
- tests/lib/cmsis_nn/
|
|
|
|
labels:
|
|
|
|
- "area: CMSIS-NN"
|
2022-04-27 19:18:48 +02:00
|
|
|
|
2023-01-30 23:09:38 +01:00
|
|
|
Coding Guidelines:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- keith-zephyr
|
|
|
|
collaborators:
|
|
|
|
- nashif
|
|
|
|
- carlescufi
|
|
|
|
- jfischer-no
|
|
|
|
files:
|
2023-05-10 11:20:24 +02:00
|
|
|
- .checkpatch.conf
|
2023-01-30 23:09:38 +01:00
|
|
|
- .clang-format
|
2023-05-10 11:20:24 +02:00
|
|
|
- .editorconfig
|
|
|
|
- .gitlint
|
|
|
|
- .yamllint
|
2023-01-30 23:09:38 +01:00
|
|
|
- doc/contribute/guidelines.rst
|
2023-05-10 11:20:24 +02:00
|
|
|
- doc/contribute/coding_guidelines/
|
|
|
|
- scripts/checkpatch.pl
|
|
|
|
- scripts/checkpatch/
|
|
|
|
- scripts/ci/check_compliance.py
|
|
|
|
- scripts/ci/guideline_check.py
|
|
|
|
- scripts/ci/pylintrc
|
|
|
|
- scripts/coccicheck
|
|
|
|
- scripts/coccinelle/
|
|
|
|
- scripts/gitlint/
|
|
|
|
- scripts/pylint/
|
|
|
|
- scripts/spelling.txt
|
2023-05-10 11:25:27 +02:00
|
|
|
labels:
|
|
|
|
- "area: Coding Guidelines"
|
2023-01-30 23:09:38 +01:00
|
|
|
|
2022-02-28 16:33:21 +01:00
|
|
|
Common Architecture Interface:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- dcpleung
|
|
|
|
- nashif
|
|
|
|
files:
|
|
|
|
- arch/common/
|
|
|
|
- include/zephyr/arch/common/
|
|
|
|
labels:
|
|
|
|
- "area: Architectures"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
Console:
|
2023-01-18 18:40:47 +01:00
|
|
|
status: odd fixes
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- include/zephyr/console/
|
|
|
|
- subsys/console/
|
|
|
|
labels:
|
|
|
|
- "area: Console"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
Debug:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- nashif
|
|
|
|
collaborators:
|
|
|
|
- dcpleung
|
|
|
|
- mrkhldn
|
|
|
|
files:
|
|
|
|
- include/zephyr/debug/
|
|
|
|
- subsys/debug/
|
|
|
|
- tests/subsys/debug/
|
2022-07-25 15:25:56 +02:00
|
|
|
- scripts/coredump/
|
|
|
|
- samples/subsys/debug/
|
2023-02-20 17:00:35 +01:00
|
|
|
- doc/services/debugging/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Debugging"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2020-12-20 05:15:40 +01:00
|
|
|
Device Driver Model:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2023-05-08 11:05:13 +02:00
|
|
|
- gmarull
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
2023-05-08 11:05:13 +02:00
|
|
|
- tbursztyka
|
2022-07-20 20:09:02 +02:00
|
|
|
- dcpleung
|
|
|
|
- nashif
|
|
|
|
files:
|
|
|
|
- include/zephyr/device.h
|
|
|
|
- kernel/device.c
|
|
|
|
- include/zephyr/init.h
|
|
|
|
- tests/kernel/device/
|
|
|
|
- doc/kernel/drivers/
|
|
|
|
labels:
|
|
|
|
- "area: Device Model"
|
2020-12-20 05:15:40 +01:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
DFU:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2022-10-18 11:56:28 +02:00
|
|
|
- de-nordic
|
|
|
|
- nordicjm
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- include/zephyr/dfu/
|
|
|
|
- subsys/dfu/
|
|
|
|
- tests/subsys/dfu/
|
|
|
|
labels:
|
|
|
|
- "area: DFU"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
Devicetree:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2023-07-28 22:41:14 +02:00
|
|
|
- mbolivar-ampere
|
2022-07-20 20:09:02 +02:00
|
|
|
- galak
|
|
|
|
files:
|
|
|
|
- scripts/dts/
|
|
|
|
- dts/common/
|
|
|
|
- tests/lib/devicetree/
|
|
|
|
- doc/build/dts/
|
|
|
|
- include/zephyr/devicetree/
|
2022-08-19 15:21:28 +02:00
|
|
|
- scripts/kconfig/kconfigfunctions.py
|
2023-02-15 13:30:27 +01:00
|
|
|
- include/zephyr/devicetree.h
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Devicetree"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2022-09-29 18:51:12 +02:00
|
|
|
Devicetree Bindings:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- galak
|
|
|
|
files:
|
|
|
|
- dts/bindings/
|
|
|
|
labels:
|
|
|
|
- "area: Devicetree Binding"
|
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
Disk:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- danieldegrasse
|
|
|
|
collaborators:
|
|
|
|
- jfischer-no
|
2023-08-17 19:00:22 +02:00
|
|
|
- decsny
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- include/zephyr/storage/disk_access.h
|
|
|
|
- include/zephyr/drivers/disk.h
|
|
|
|
- drivers/disk/
|
|
|
|
- subsys/disk/
|
2022-07-25 15:25:56 +02:00
|
|
|
- subsys/sd/
|
|
|
|
- tests/subsys/sd/
|
|
|
|
- tests/drivers/disk/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Disk Access"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
Display drivers:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- jfischer-no
|
|
|
|
files:
|
|
|
|
- drivers/display/
|
|
|
|
- dts/bindings/display/
|
|
|
|
- include/zephyr/drivers/display.h
|
|
|
|
- include/zephyr/display/
|
|
|
|
- include/zephyr/drivers/display.h
|
|
|
|
- subsys/fb/
|
|
|
|
- samples/subsys/display/
|
|
|
|
labels:
|
|
|
|
- "area: Display"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
Documentation:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2023-02-09 12:12:20 +01:00
|
|
|
- kartben
|
2022-07-20 20:09:02 +02:00
|
|
|
- carlescufi
|
|
|
|
collaborators:
|
|
|
|
- nashif
|
|
|
|
files:
|
2022-09-21 12:59:28 +02:00
|
|
|
- doc/contribute/
|
|
|
|
- doc/develop/
|
|
|
|
- doc/introduction/
|
|
|
|
- doc/project/
|
|
|
|
- doc/releases/
|
|
|
|
- doc/security/
|
2022-07-20 20:09:02 +02:00
|
|
|
- README.rst
|
2023-02-15 13:30:27 +01:00
|
|
|
- doc/substitutions.txt
|
|
|
|
- doc/images/Zephyr-Kite-in-tree.png
|
|
|
|
- doc/index-tex.rst
|
|
|
|
- doc/index.rst
|
|
|
|
- doc/kconfig.rst
|
|
|
|
- doc/known-warnings.txt
|
2023-02-24 10:26:15 +01:00
|
|
|
- doc/templates/sample.tmpl
|
|
|
|
- doc/templates/board.tmpl
|
2023-04-06 17:18:01 +02:00
|
|
|
files-exclude:
|
|
|
|
- doc/releases/release-notes-*
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Documentation"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2022-09-21 12:59:28 +02:00
|
|
|
Documentation Infrastructure:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- gmarull
|
|
|
|
collaborators:
|
|
|
|
- carlescufi
|
|
|
|
- nashif
|
2023-02-09 12:12:20 +01:00
|
|
|
- kartben
|
2022-09-21 12:59:28 +02:00
|
|
|
files:
|
|
|
|
- doc/_*/
|
|
|
|
- doc/CMakeLists.txt
|
|
|
|
- doc/conf.py
|
|
|
|
- doc/Makefile
|
|
|
|
- doc/zephyr.doxyfile.in
|
|
|
|
labels:
|
|
|
|
- "area: Documentation Infrastructure"
|
|
|
|
|
2022-10-03 17:01:06 +02:00
|
|
|
Release Notes:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2023-07-21 13:10:07 +02:00
|
|
|
- jhedberg
|
|
|
|
- fabiobaltieri
|
2022-10-03 17:01:06 +02:00
|
|
|
files:
|
|
|
|
- doc/releases/release-notes-*
|
|
|
|
labels:
|
|
|
|
- "Release Notes"
|
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
"Drivers: ADC":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- anangl
|
|
|
|
files:
|
|
|
|
- drivers/adc/
|
|
|
|
- include/zephyr/drivers/adc.h
|
|
|
|
- tests/drivers/adc/
|
|
|
|
- samples/drivers/adc/
|
2023-02-15 13:30:27 +01:00
|
|
|
- include/zephyr/drivers/adc/
|
|
|
|
- doc/hardware/peripherals/adc.rst
|
|
|
|
- tests/drivers/build_all/adc/
|
|
|
|
- include/zephyr/dt-bindings/adc/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: ADC"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: Audio":
|
2022-07-22 13:45:02 +02:00
|
|
|
status: odd fixes
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
|
|
|
- lyakh
|
|
|
|
- lgirdwood
|
|
|
|
- marc-hb
|
|
|
|
- kv2019i
|
|
|
|
files:
|
|
|
|
- drivers/audio/
|
|
|
|
- include/zephyr/audio/
|
|
|
|
labels:
|
|
|
|
- "area: Audio"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2023-02-20 16:54:31 +01:00
|
|
|
"Drivers: bbram":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- yperess
|
|
|
|
files:
|
|
|
|
- tests/drivers/bbram/
|
|
|
|
- drivers/bbram/
|
|
|
|
- include/zephyr/drivers/bbram.h
|
|
|
|
labels:
|
|
|
|
- "area: Battery Backed RAM (bbram)"
|
|
|
|
|
2022-11-29 22:38:49 +01:00
|
|
|
"Drivers: Aux display":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- thedjnK
|
2023-06-24 17:34:33 +02:00
|
|
|
collaborators:
|
|
|
|
- xingrz
|
2022-11-29 22:38:49 +01:00
|
|
|
files:
|
|
|
|
- include/zephyr/drivers/auxdisplay.h
|
|
|
|
- drivers/auxdisplay/*
|
|
|
|
- dts/bindings/auxdisplay/*
|
|
|
|
labels:
|
|
|
|
- "area: Aux display"
|
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
"Drivers: CAN":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- henrikbrixandersen
|
|
|
|
collaborators:
|
|
|
|
- alexanderwachter
|
|
|
|
- karstenkoenig
|
|
|
|
- martinjaeger
|
|
|
|
- str4t0m
|
|
|
|
files:
|
2023-08-25 13:52:34 +02:00
|
|
|
- boards/shields/mcp2515/
|
2023-08-29 13:56:43 +02:00
|
|
|
- boards/shields/tcan4550evm/
|
2022-07-20 20:09:02 +02:00
|
|
|
- doc/hardware/peripherals/canbus/
|
|
|
|
- drivers/can/
|
|
|
|
- drivers/net/canbus.c
|
|
|
|
- dts/bindings/can/
|
2023-08-25 13:52:34 +02:00
|
|
|
- dts/bindings/phy/can-transceiver*
|
2022-07-20 20:09:02 +02:00
|
|
|
- include/zephyr/canbus/
|
|
|
|
- include/zephyr/devicetree/can.h
|
|
|
|
- include/zephyr/drivers/can.h
|
|
|
|
- include/zephyr/drivers/can/
|
|
|
|
- include/zephyr/net/canbus.h
|
2023-08-25 13:52:34 +02:00
|
|
|
- include/zephyr/net/socketcan*.h
|
2022-07-20 20:09:02 +02:00
|
|
|
- samples/drivers/can/
|
|
|
|
- samples/modules/canopennode/
|
|
|
|
- samples/net/sockets/can/
|
|
|
|
- samples/subsys/canbus/
|
|
|
|
- subsys/canbus/
|
|
|
|
- subsys/net/l2/canbus/
|
2023-04-30 14:21:46 +02:00
|
|
|
- tests/drivers/build_all/can/
|
2022-07-20 20:09:02 +02:00
|
|
|
- tests/drivers/can/
|
2022-08-11 14:43:40 +02:00
|
|
|
- tests/net/socket/can/
|
2022-07-20 20:09:02 +02:00
|
|
|
- tests/subsys/canbus/
|
|
|
|
labels:
|
|
|
|
- "area: CAN"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: Clock control":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- nordic-krch
|
|
|
|
files:
|
|
|
|
- drivers/clock_control/
|
|
|
|
- dts/bindings/clock/
|
|
|
|
- include/zephyr/drivers/clock_control.h
|
|
|
|
- include/zephyr/dt-bindings/clock/
|
|
|
|
- tests/drivers/clock_control/
|
2023-02-15 13:30:27 +01:00
|
|
|
- include/zephyr/drivers/clock_control/
|
|
|
|
- doc/hardware/peripherals/clock_control.rst
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Clock control"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: Console":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
files:
|
|
|
|
- drivers/console/
|
|
|
|
- include/zephyr/drivers/console/
|
|
|
|
- tests/drivers/console/
|
2022-07-25 15:25:56 +02:00
|
|
|
- samples/subsys/console/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Console"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2022-05-10 19:59:51 +02:00
|
|
|
"Drivers: Coredump":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- mrkhldn
|
|
|
|
files:
|
|
|
|
- drivers/coredump/
|
|
|
|
- dts/bindings/coredump/
|
|
|
|
- include/zephyr/drivers/coredump.h
|
|
|
|
- tests/drivers/coredump/
|
2023-02-15 13:30:27 +01:00
|
|
|
- doc/hardware/peripherals/coredump.rst
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Coredump"
|
2022-05-10 19:59:51 +02:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
"Drivers: Counter":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- nordic-krch
|
|
|
|
files:
|
|
|
|
- drivers/counter/
|
|
|
|
- include/zephyr/drivers/counter.h
|
|
|
|
- tests/drivers/counter/
|
2023-02-15 13:30:27 +01:00
|
|
|
- doc/hardware/peripherals/counter.rst
|
|
|
|
- samples/drivers/counter/
|
2023-02-20 16:56:54 +01:00
|
|
|
- tests/drivers/build_all/counter/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Counter"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: Crypto":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- ceolin
|
|
|
|
files:
|
|
|
|
- drivers/crypto/
|
|
|
|
- dts/bindings/crypto/
|
|
|
|
- include/zephyr/crypto/
|
|
|
|
- samples/drivers/crypto/
|
2022-09-07 12:50:23 +02:00
|
|
|
- tests/crypto/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Crypto / RNG"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: DAC":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- martinjaeger
|
|
|
|
files:
|
|
|
|
- drivers/dac/
|
|
|
|
- include/zephyr/drivers/dac.h
|
|
|
|
- tests/drivers/dac/
|
|
|
|
- samples/drivers/dac/
|
2023-02-15 13:30:27 +01:00
|
|
|
- doc/hardware/peripherals/dac.rst
|
|
|
|
- tests/drivers/build_all/dac/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: DAC"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2022-05-05 15:44:58 +02:00
|
|
|
"Drivers: DAI":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2023-08-31 14:56:59 +02:00
|
|
|
- kv2019i
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
|
|
|
- lgirdwood
|
2023-08-31 14:56:59 +02:00
|
|
|
- juimonen
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- drivers/dai/
|
|
|
|
- doc/hardware/peripherals/audio/dai.rst
|
|
|
|
- include/zephyr/drivers/dai.h
|
|
|
|
labels:
|
|
|
|
- "area: DAI"
|
2022-05-05 15:44:58 +02:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
"Drivers: DMA":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- teburd
|
|
|
|
files:
|
|
|
|
- drivers/dma/
|
|
|
|
- tests/drivers/dma/
|
2023-02-15 13:30:27 +01:00
|
|
|
- include/zephyr/drivers/dma/
|
|
|
|
- doc/hardware/peripherals/dma.rst
|
|
|
|
- include/zephyr/drivers/dma.h
|
|
|
|
- include/zephyr/dt-bindings/dma/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: DMA"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2022-07-19 10:59:55 +02:00
|
|
|
"Drivers: EDAC":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- finikorg
|
|
|
|
files:
|
|
|
|
- drivers/edac/
|
|
|
|
- dts/bindings/edac/
|
|
|
|
- include/zephyr/drivers/edac.h
|
|
|
|
- samples/subsys/edac/
|
|
|
|
- tests/subsys/edac/
|
2023-03-20 19:33:18 +01:00
|
|
|
- doc/hardware/peripherals/edac/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: EDAC"
|
2022-07-19 10:59:55 +02:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
"Drivers: EEPROM":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- henrikbrixandersen
|
|
|
|
files:
|
|
|
|
- drivers/eeprom/
|
|
|
|
- dts/bindings/mtd/*eeprom*
|
|
|
|
- include/zephyr/drivers/eeprom.h
|
|
|
|
- samples/drivers/eeprom/
|
|
|
|
- tests/drivers/eeprom/
|
|
|
|
labels:
|
|
|
|
- "area: EEPROM"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: Entropy":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- ceolin
|
|
|
|
files:
|
|
|
|
- drivers/entropy/
|
|
|
|
- include/zephyr/drivers/entropy.h
|
|
|
|
- tests/drivers/entropy/
|
|
|
|
labels:
|
|
|
|
- "area: Crypto / RNG"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: ESPI":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- albertofloyd
|
|
|
|
collaborators:
|
|
|
|
- VenkatKotakonda
|
|
|
|
- jvasanth1
|
|
|
|
files:
|
|
|
|
- drivers/espi/
|
|
|
|
- include/zephyr/drivers/espi.h
|
2022-08-29 23:09:00 +02:00
|
|
|
- include/zephyr/dt-bindings/espi/
|
2022-07-20 20:09:02 +02:00
|
|
|
- samples/drivers/espi/
|
2022-08-29 23:09:00 +02:00
|
|
|
- dts/bindings/espi/
|
|
|
|
- doc/hardware/peripherals/espi.rst
|
2023-02-15 13:30:27 +01:00
|
|
|
- include/zephyr/drivers/espi_saf.h
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: eSPI"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: Ethernet":
|
2023-08-31 15:09:29 +02:00
|
|
|
status: odd fixes
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- drivers/ethernet/
|
2022-08-29 23:10:41 +02:00
|
|
|
- include/zephyr/dt-bindings/ethernet/
|
|
|
|
- tests/drivers/build_all/ethernet/
|
|
|
|
- dts/bindings/ethernet/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Ethernet"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: Flash":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2022-10-18 11:56:28 +02:00
|
|
|
- de-nordic
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- drivers/flash/
|
|
|
|
- dts/bindings/flash_controller/
|
|
|
|
- include/zephyr/drivers/flash.h
|
|
|
|
- samples/drivers/flash_shell/
|
2023-01-26 18:00:29 +01:00
|
|
|
- samples/drivers/soc_flash_nrf/
|
2022-07-20 20:09:02 +02:00
|
|
|
- tests/drivers/flash/
|
2023-02-20 17:00:35 +01:00
|
|
|
- doc/hardware/peripherals/flash.rst
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Flash"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2022-11-14 15:07:32 +01:00
|
|
|
"Drivers: FPGA":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- cfriedt
|
2022-11-14 15:46:38 +01:00
|
|
|
collaborators:
|
|
|
|
- tgorochowik
|
|
|
|
- fkokosinski
|
|
|
|
- msierszulski
|
2022-11-14 15:07:32 +01:00
|
|
|
files:
|
|
|
|
- drivers/fpga/
|
|
|
|
- dts/bindings/fpga/
|
|
|
|
- include/zephyr/drivers/fpga.h
|
|
|
|
- samples/drivers/fpga/
|
2023-02-20 16:55:17 +01:00
|
|
|
- tests/drivers/build_all/fpga/
|
2022-11-14 15:07:32 +01:00
|
|
|
labels:
|
|
|
|
- "area: FPGA"
|
|
|
|
|
2022-11-21 21:55:26 +01:00
|
|
|
"Drivers: Fuel Gauge":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- aaronemassey
|
|
|
|
- teburd
|
|
|
|
files:
|
|
|
|
- drivers/fuel_gauge/
|
|
|
|
- dts/bindings/fuel-gauge/
|
|
|
|
- include/zephyr/drivers/fuel_gauge.h
|
|
|
|
- tests/drivers/fuel_gauge/
|
2023-02-20 17:00:35 +01:00
|
|
|
- doc/hardware/peripherals/fuel_gauge.rst
|
2022-11-21 21:55:26 +01:00
|
|
|
labels:
|
|
|
|
- "area: Fuel Gauge"
|
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
"Drivers: GPIO":
|
2023-03-23 21:38:53 +01:00
|
|
|
status: odd fixes
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
|
|
|
- henrikbrixandersen
|
2023-03-23 21:38:53 +01:00
|
|
|
- mnkp
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- doc/hardware/peripherals/gpio.rst
|
|
|
|
- drivers/gpio/
|
|
|
|
- include/zephyr/drivers/gpio/
|
|
|
|
- include/zephyr/drivers/gpio.h
|
|
|
|
- include/zephyr/dt-bindings/gpio/
|
|
|
|
- tests/drivers/gpio/
|
2023-02-15 13:30:27 +01:00
|
|
|
- tests/drivers/build_all/gpio/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: GPIO"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: HW Info":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- alexanderwachter
|
|
|
|
files:
|
|
|
|
- drivers/hwinfo/
|
|
|
|
- dts/bindings/hwinfo/
|
|
|
|
- include/zephyr/drivers/hwinfo.h
|
|
|
|
- tests/drivers/hwinfo/
|
2023-02-15 13:30:27 +01:00
|
|
|
- doc/hardware/peripherals/hwinfo.rst
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: HWINFO"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: I2C":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- teburd
|
|
|
|
files:
|
|
|
|
- drivers/i2c/
|
2022-08-29 23:13:51 +02:00
|
|
|
- include/zephyr/drivers/i2c/
|
2022-07-20 20:09:02 +02:00
|
|
|
- dts/bindings/i2c/
|
|
|
|
- include/zephyr/drivers/i2c.h
|
2022-07-25 15:25:56 +02:00
|
|
|
- tests/drivers/i2c/
|
2022-08-29 23:13:51 +02:00
|
|
|
- doc/hardware/peripherals/i2c.rst
|
2023-02-15 13:30:27 +01:00
|
|
|
- include/zephyr/dt-bindings/i2c/
|
|
|
|
- tests/boards/frdm_k64f/i2c/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: I2C"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: I2S":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- anangl
|
|
|
|
files:
|
|
|
|
- doc/hardware/peripherals/audio/i2s.rst
|
|
|
|
- drivers/i2s/
|
|
|
|
- dts/bindings/i2s/
|
|
|
|
- include/zephyr/drivers/i2s.h
|
|
|
|
- tests/drivers/i2s/
|
2023-02-24 12:28:57 +01:00
|
|
|
- samples/drivers/i2s/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: I2S"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2022-07-18 22:21:12 +02:00
|
|
|
"Drivers: I3C":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- dcpleung
|
2023-04-01 08:49:08 +02:00
|
|
|
collaborators:
|
|
|
|
- XenuIsWatching
|
2022-07-18 22:21:12 +02:00
|
|
|
files:
|
|
|
|
- drivers/i3c/
|
|
|
|
- dts/bindings/i3c/
|
|
|
|
- include/zephyr/drivers/i3c.h
|
|
|
|
- include/zephyr/drivers/i3c/
|
2023-02-15 13:30:27 +01:00
|
|
|
- doc/hardware/peripherals/i3c.rst
|
2023-02-20 16:55:39 +01:00
|
|
|
- tests/drivers/build_all/i3c/
|
2022-07-18 22:21:12 +02:00
|
|
|
labels:
|
|
|
|
- "area: I3C"
|
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
"Drivers: IEEE 802.15.4":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2023-08-31 15:09:29 +02:00
|
|
|
- fgrandel
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
|
|
|
- rlubos
|
|
|
|
- jciupis
|
2023-06-11 16:05:58 +02:00
|
|
|
- cfriedt
|
2023-08-23 14:12:44 +02:00
|
|
|
- jukkar
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- drivers/ieee802154/
|
2023-07-02 17:18:29 +02:00
|
|
|
- include/zephyr/net/ieee802154_radio.h
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: IEEE 802.15.4"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: Interrupt controllers":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
files:
|
|
|
|
- drivers/interrupt_controller/
|
|
|
|
- dts/bindings/interrupt-controller/
|
|
|
|
- include/zephyr/drivers/interrupt_controller/
|
|
|
|
- include/zephyr/dt-bindings/interrupt-controller/
|
|
|
|
labels:
|
|
|
|
- "area: Interrupt Controller"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: IPM":
|
2022-08-29 23:04:00 +02:00
|
|
|
status: odd fixes
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
|
|
|
- dcpleung
|
|
|
|
files:
|
|
|
|
- drivers/ipm/
|
2022-08-29 23:04:00 +02:00
|
|
|
- samples/drivers/ipm/
|
|
|
|
- dts/bindings/ipm/
|
|
|
|
- tests/drivers/ipm/
|
|
|
|
- doc/hardware/peripherals/ipm.rst
|
2022-07-20 20:09:02 +02:00
|
|
|
description: >-
|
|
|
|
Inter-processor mailboxes
|
|
|
|
labels:
|
|
|
|
- "area: IPM"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: kscan":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- albertofloyd
|
|
|
|
collaborators:
|
|
|
|
- VenkatKotakonda
|
|
|
|
files:
|
|
|
|
- drivers/kscan/
|
|
|
|
- include/zephyr/drivers/kscan.h
|
|
|
|
- samples/drivers/espi/
|
2022-08-29 23:09:00 +02:00
|
|
|
- samples/drivers/kscan/
|
2023-02-24 12:28:57 +01:00
|
|
|
- samples/drivers/kscan_touch/
|
2022-07-20 20:09:02 +02:00
|
|
|
- tests/drivers/kscan/
|
2022-07-25 15:25:56 +02:00
|
|
|
- tests/drivers/espi/
|
2022-08-29 23:09:00 +02:00
|
|
|
- dts/bindings/kscan/
|
|
|
|
- doc/hardware/peripherals/kscan.rst
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Kscan"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: LED":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- Mani-Sadhasivam
|
|
|
|
- simonguinot
|
2023-07-24 16:20:01 +02:00
|
|
|
collaborators:
|
|
|
|
- bbilas
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- drivers/led/
|
|
|
|
- include/zephyr/drivers/led/
|
|
|
|
- include/zephyr/drivers/led.h
|
|
|
|
- samples/drivers/led_*/
|
2023-02-15 13:30:27 +01:00
|
|
|
- tests/drivers/led/
|
|
|
|
- doc/hardware/peripherals/led.rst
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: LED"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: LED Strip":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2023-07-28 22:41:14 +02:00
|
|
|
- mbolivar-ampere
|
2023-02-16 17:47:04 +01:00
|
|
|
- simonguinot
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- drivers/led_strip/
|
|
|
|
- dts/bindings/led_strip/
|
|
|
|
- include/zephyr/drivers/led_strip.h
|
2023-02-20 16:56:27 +01:00
|
|
|
- tests/drivers/build_all/led_strip/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: LED"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: Modem":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- rerickson1
|
|
|
|
files:
|
|
|
|
- drivers/modem/
|
2023-02-20 16:54:31 +01:00
|
|
|
- tests/drivers/build_all/modem/
|
|
|
|
- dts/bindings/modem/
|
|
|
|
- include/zephyr/drivers/modem/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Modem"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2022-12-27 13:47:39 +01:00
|
|
|
"Drivers: Regulators":
|
2022-12-21 14:18:33 +01:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- gmarull
|
|
|
|
collaborators:
|
|
|
|
- danieldegrasse
|
2023-05-22 11:21:23 +02:00
|
|
|
- aasinclair
|
2022-12-21 14:18:33 +01:00
|
|
|
files:
|
2022-12-27 13:47:39 +01:00
|
|
|
- drivers/regulator/
|
|
|
|
- include/zephyr/drivers/regulator/
|
2022-12-21 14:18:33 +01:00
|
|
|
- include/zephyr/drivers/regulator.h
|
2022-12-27 13:47:39 +01:00
|
|
|
- include/zephyr/dt-bindings/regulator/
|
|
|
|
- tests/drivers/regulator/
|
2023-05-23 10:36:13 +02:00
|
|
|
- tests/drivers/build_all/regulator/
|
2023-02-15 13:30:27 +01:00
|
|
|
- doc/hardware/peripherals/regulators.rst
|
2022-12-21 14:18:33 +01:00
|
|
|
labels:
|
|
|
|
- "area: Regulators"
|
|
|
|
|
2023-02-23 11:27:21 +01:00
|
|
|
"Drivers: Retained Memory":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- nordicjm
|
|
|
|
files:
|
|
|
|
- drivers/retained_mem/
|
|
|
|
- dts/bindings/retained_mem/
|
|
|
|
- include/zephyr/drivers/retained_mem.h
|
|
|
|
- tests/drivers/retained_mem/
|
|
|
|
labels:
|
|
|
|
- "area: Retained Memory"
|
|
|
|
|
2023-03-25 18:56:59 +01:00
|
|
|
"Drivers: RTC":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- bjarki-trackunit
|
|
|
|
files:
|
|
|
|
- drivers/rtc/
|
|
|
|
- tests/drivers/rtc/
|
|
|
|
- doc/hardware/peripherals/rtc.rst
|
|
|
|
- include/zephyr/drivers/rtc.h
|
|
|
|
labels:
|
|
|
|
- "area: RTC"
|
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
"Drivers: PCI":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- dcpleung
|
|
|
|
collaborators:
|
|
|
|
- jhedberg
|
|
|
|
- finikorg
|
|
|
|
- tbursztyka
|
|
|
|
files:
|
|
|
|
- drivers/pcie/
|
|
|
|
- include/zephyr/drivers/pcie/
|
|
|
|
labels:
|
|
|
|
- "area: PCI"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2020-12-07 15:55:15 +01:00
|
|
|
"Drivers: PECI":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- albertofloyd
|
|
|
|
collaborators:
|
|
|
|
- VenkatKotakonda
|
|
|
|
files:
|
|
|
|
- drivers/peci/
|
|
|
|
- include/zephyr/drivers/peci.h
|
|
|
|
- samples/drivers/peci/
|
2023-02-15 13:30:27 +01:00
|
|
|
- doc/hardware/peripherals/peci.rst
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: PECI"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2022-02-18 00:55:25 +01:00
|
|
|
"Drivers: Pin Control":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- gmarull
|
|
|
|
files:
|
|
|
|
- doc/hardware/pinctrl/
|
|
|
|
- include/zephyr/drivers/pinctrl/
|
|
|
|
- include/zephyr/drivers/pinctrl.h
|
|
|
|
- drivers/pinctrl/
|
|
|
|
- tests/drivers/pinctrl/
|
|
|
|
- dts/bindings/pinctrl/
|
2023-02-15 13:30:27 +01:00
|
|
|
- include/zephyr/dt-bindings/pinctrl/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Pinctrl"
|
2022-02-18 00:55:25 +01:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
"Drivers: PTP Clock":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- tbursztyka
|
|
|
|
files:
|
|
|
|
- drivers/ptp_clock/
|
|
|
|
- include/zephyr/drivers/ptp_clock.h
|
|
|
|
labels:
|
|
|
|
- "area: Clocks"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2021-03-01 08:57:15 +01:00
|
|
|
"Drivers: PM CPU ops":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- carlocaione
|
2023-07-21 19:23:21 +02:00
|
|
|
collaborators:
|
|
|
|
- gdengi
|
|
|
|
- nbalabak
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- drivers/pm_cpu_ops/
|
|
|
|
- include/zephyr/drivers/pm_cpu_ops/
|
|
|
|
- include/zephyr/drivers/pm_cpu_ops.h
|
|
|
|
- include/zephyr/arch/arm64/arm-smccc.h
|
|
|
|
labels:
|
|
|
|
- "area: PM CPU ops"
|
2020-12-19 15:52:48 +01:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
"Drivers: PWM":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- anangl
|
|
|
|
collaborators:
|
|
|
|
- henrikbrixandersen
|
|
|
|
files:
|
|
|
|
- drivers/pwm/
|
|
|
|
- dts/bindings/pwm/
|
|
|
|
- tests/drivers/pwm/
|
|
|
|
- include/zephyr/*/pwms.h
|
2023-02-15 13:30:27 +01:00
|
|
|
- doc/hardware/peripherals/pwm.rst
|
|
|
|
- tests/drivers/build_all/pwm/
|
|
|
|
- include/zephyr/drivers/pwm.h
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: PWM"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2023-02-08 18:34:38 +01:00
|
|
|
"Drivers: SDHC":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- danieldegrasse
|
|
|
|
files:
|
|
|
|
- drivers/sdhc/
|
|
|
|
- tests/drivers/sdhc/
|
|
|
|
- include/zephyr/drivers/sdhc.h
|
|
|
|
- dts/bindings/sdhc/
|
|
|
|
- doc/hardware/peripherals/sdhc.rst
|
|
|
|
labels:
|
|
|
|
- "area: Disk Access"
|
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
"Drivers: Serial/UART":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- dcpleung
|
|
|
|
files:
|
|
|
|
- drivers/serial/
|
|
|
|
- include/zephyr/drivers/uart.h
|
|
|
|
- include/zephyr/drivers/uart/
|
|
|
|
- dts/bindings/serial/
|
|
|
|
- samples/drivers/uart/
|
|
|
|
- tests/drivers/uart/
|
2023-07-22 07:34:40 +02:00
|
|
|
- tests/drivers/build_all/uart/
|
2023-02-15 13:30:27 +01:00
|
|
|
- doc/hardware/peripherals/uart.rst
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: UART"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: Sensors":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- MaureenHelm
|
|
|
|
collaborators:
|
|
|
|
- avisconti
|
|
|
|
- teburd
|
2023-01-30 19:28:41 +01:00
|
|
|
- yperess
|
2023-08-04 19:30:54 +02:00
|
|
|
- tristan-google
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- drivers/sensor/
|
|
|
|
- include/zephyr/drivers/sensor.h
|
|
|
|
- samples/sensor/
|
|
|
|
- tests/drivers/sensor/
|
|
|
|
- dts/bindings/sensor/
|
2023-02-15 13:30:27 +01:00
|
|
|
- include/zephyr/drivers/sensor/
|
|
|
|
- include/zephyr/dt-bindings/sensor/
|
|
|
|
- doc/hardware/peripherals/sensor.rst
|
2023-02-20 16:49:03 +01:00
|
|
|
- tests/drivers/build_all/sensor/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Sensors"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2022-10-03 11:01:15 +02:00
|
|
|
"Drivers: SMBus":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- finikorg
|
|
|
|
files:
|
|
|
|
- drivers/smbus/
|
|
|
|
- dts/bindings/smbus/
|
|
|
|
- include/zephyr/drivers/smbus.h
|
|
|
|
- samples/drivers/smbus/
|
|
|
|
- tests/drivers/smbus/
|
|
|
|
- doc/hardware/peripherals/smbus.rst
|
|
|
|
labels:
|
|
|
|
- "area: SMBus"
|
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
"Drivers: SPI":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- tbursztyka
|
2022-10-21 04:35:37 +02:00
|
|
|
collaborators:
|
|
|
|
- teburd
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- drivers/spi/
|
|
|
|
- include/zephyr/drivers/spi.h
|
|
|
|
- tests/drivers/spi/
|
2023-02-15 13:30:27 +01:00
|
|
|
- doc/hardware/peripherals/spi.rst
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: SPI"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Drivers: System timer":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- andyross
|
|
|
|
collaborators:
|
2022-10-21 04:35:37 +02:00
|
|
|
- teburd
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- drivers/timer/
|
|
|
|
- include/zephyr/drivers/timer/
|
|
|
|
labels:
|
|
|
|
- "area: Timer"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2022-02-28 16:33:21 +01:00
|
|
|
"Drivers: Video":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- loicpoulain
|
|
|
|
files:
|
|
|
|
- drivers/video/
|
|
|
|
- include/zephyr/drivers/video.h
|
|
|
|
- include/zephyr/drivers/video-controls.h
|
|
|
|
labels:
|
|
|
|
- "area: Video"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2021-07-08 14:15:29 +02:00
|
|
|
"Drivers: W1":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- str4t0m
|
|
|
|
collaborators:
|
2023-09-12 14:41:03 +02:00
|
|
|
- casparfriedrich
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- doc/hardware/peripherals/w1.rst
|
|
|
|
- drivers/w1/
|
|
|
|
- dts/bindings/w1/
|
|
|
|
- include/zephyr/drivers/w1.h
|
|
|
|
- include/zephyr/drivers/sensor/w1_sensor.h
|
|
|
|
- tests/drivers/w1/
|
2023-02-15 13:30:27 +01:00
|
|
|
- samples/drivers/w1/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: W1"
|
2021-07-08 14:15:29 +02:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
"Drivers: Watchdog":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- katsuster
|
|
|
|
- martinjaeger
|
|
|
|
files:
|
|
|
|
- doc/hardware/peripherals/watchdog.rst
|
|
|
|
- drivers/watchdog/
|
|
|
|
- dts/bindings/watchdog/
|
|
|
|
- include/zephyr/drivers/watchdog.h
|
|
|
|
- samples/drivers/watchdog/
|
|
|
|
- tests/drivers/watchdog/
|
|
|
|
labels:
|
|
|
|
- "area: Watchdog"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2023-08-25 11:38:28 +02:00
|
|
|
"Drivers: Wi-Fi":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2023-08-23 14:12:44 +02:00
|
|
|
- jukkar
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
|
|
|
- rlubos
|
|
|
|
- kludentwo
|
2023-08-25 16:47:47 +02:00
|
|
|
- krish2718
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- drivers/wifi/
|
|
|
|
labels:
|
2023-08-25 11:38:28 +02:00
|
|
|
- "area: Wi-Fi"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2023-08-25 11:38:28 +02:00
|
|
|
"Drivers: Wi-Fi es-WiFi":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- loicpoulain
|
|
|
|
files:
|
|
|
|
- drivers/wifi/eswifi/
|
|
|
|
description: >-
|
|
|
|
Inventek es-WiFi
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
2023-08-25 11:38:28 +02:00
|
|
|
- "area: Wi-Fi"
|
2020-12-07 15:55:15 +01:00
|
|
|
|
2022-07-13 12:50:28 +02:00
|
|
|
"Drivers: Memory Management":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- dcpleung
|
|
|
|
collaborators:
|
|
|
|
- ceolin
|
|
|
|
- edersondisouza
|
|
|
|
- jxstelter
|
|
|
|
files:
|
|
|
|
- include/zephyr/drivers/mm/
|
|
|
|
- drivers/mm/
|
|
|
|
- tests/boards/intel_adsp/mm/
|
|
|
|
- dts/bindings/mm/
|
|
|
|
labels:
|
|
|
|
- "area: Memory Management"
|
2022-07-13 12:50:28 +02:00
|
|
|
|
2023-02-20 16:47:17 +01:00
|
|
|
"Drivers: Virtualization":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- tbursztyka
|
|
|
|
files:
|
|
|
|
- drivers/virtualization/
|
|
|
|
- tests/drivers/virtualization/
|
|
|
|
- dts/bindings/virtualization/
|
|
|
|
- include/zephyr/drivers/virtualization/
|
|
|
|
- doc/services/virtualization/
|
|
|
|
- include/zephyr/drivers/virtualization/ivshmem.h
|
|
|
|
labels:
|
|
|
|
- "area: Virtualization"
|
|
|
|
|
2022-11-18 13:08:33 +01:00
|
|
|
EC Host Commands:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- semihalf-niedzwiecki-dawid
|
|
|
|
files:
|
|
|
|
- subsys/mgmt/ec_host_cmd/
|
|
|
|
- include/zephyr/mgmt/ec_host_cmd/
|
|
|
|
- tests/subsys/mgmt/ec_host_cmd/
|
|
|
|
labels:
|
|
|
|
- "area: ec_host_cmd"
|
|
|
|
|
2022-06-08 11:25:18 +02:00
|
|
|
Xen Platform:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- povergoing
|
|
|
|
collaborators:
|
|
|
|
- SgrrZhf
|
|
|
|
- lorc
|
|
|
|
- firscity
|
|
|
|
- luca-fancellu
|
|
|
|
files:
|
|
|
|
- include/zephyr/xen/
|
|
|
|
- drivers/xen/
|
|
|
|
- arch/arm64/core/xen/
|
|
|
|
- soc/arm64/xenvm/
|
|
|
|
- boards/arm64/xenvm/
|
|
|
|
labels:
|
|
|
|
- "area: Xen Platform"
|
2022-06-08 11:25:18 +02:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
Filesystems:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- de-nordic
|
2022-10-18 11:56:28 +02:00
|
|
|
collaborators:
|
2022-07-20 20:09:02 +02:00
|
|
|
- Laczen
|
|
|
|
- nashif
|
|
|
|
files:
|
|
|
|
- include/zephyr/fs/
|
|
|
|
- samples/subsys/fs/
|
|
|
|
- subsys/fs/
|
|
|
|
- tests/subsys/fs/
|
|
|
|
labels:
|
|
|
|
- "area: File System"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2023-02-27 10:39:08 +01:00
|
|
|
"Filesystems: FatFs reentrant support":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- ox11
|
|
|
|
files:
|
|
|
|
- modules/fatfs/zfs_ffsystem.c
|
|
|
|
- tests/subsys/fs/fat_fs_api/src/test_fat_file_reentrant.c
|
|
|
|
labels:
|
|
|
|
- "area: File System"
|
|
|
|
|
2022-03-10 19:53:22 +01:00
|
|
|
Formatted Output:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- nordic-krch
|
|
|
|
collaborators:
|
|
|
|
- dcpleung
|
|
|
|
files:
|
|
|
|
- include/zephyr/sys/cbprintf*
|
|
|
|
- tests/unit/cbprintf/
|
|
|
|
- tests/lib/cbprintf_*/
|
|
|
|
- lib/os/cbprintf*
|
|
|
|
- lib/os/Kconfig.cbprintf
|
2023-02-24 10:26:15 +01:00
|
|
|
- doc/services/formatted_output.rst
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Formatting Output"
|
2022-03-10 19:53:22 +01:00
|
|
|
|
2022-12-13 21:33:11 +01:00
|
|
|
Google Platforms:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- fabiobaltieri
|
|
|
|
- keith-zephyr
|
|
|
|
files:
|
|
|
|
- boards/*/google_*/
|
2023-08-07 21:10:20 +02:00
|
|
|
- samples/boards/google_*/
|
2022-12-13 21:33:11 +01:00
|
|
|
|
2023-03-03 02:26:11 +01:00
|
|
|
Hash Utilities:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- cfriedt
|
|
|
|
files:
|
|
|
|
- include/zephyr/sys/hash_*
|
|
|
|
- lib/hash/
|
|
|
|
- samples/basic/hash_map/
|
|
|
|
- tests/lib/hash_*/
|
|
|
|
description: >-
|
|
|
|
Hash Functions and Hash Maps (Hash Tables)
|
|
|
|
labels:
|
|
|
|
- "area: hash utils"
|
|
|
|
|
2023-02-16 19:33:54 +01:00
|
|
|
Input:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- fabiobaltieri
|
|
|
|
collaborators:
|
|
|
|
- gmarull
|
|
|
|
files:
|
|
|
|
- doc/services/input/
|
2023-03-14 23:04:46 +01:00
|
|
|
- drivers/input/
|
2023-04-04 12:34:06 +02:00
|
|
|
- dts/bindings/input/
|
2023-02-16 19:33:54 +01:00
|
|
|
- include/zephyr/dt-bindings/input/
|
|
|
|
- include/zephyr/input/
|
|
|
|
- samples/subsys/input/
|
|
|
|
- subsys/input/
|
2023-06-21 20:33:12 +02:00
|
|
|
- tests/drivers/build_all/input/
|
2023-02-16 19:33:54 +01:00
|
|
|
- tests/subsys/input/
|
|
|
|
description: >-
|
|
|
|
Input subsystem and drivers
|
|
|
|
labels:
|
|
|
|
- "area: Input"
|
|
|
|
|
2021-09-27 10:17:55 +02:00
|
|
|
IPC:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- carlocaione
|
|
|
|
- arnopo
|
|
|
|
files:
|
|
|
|
- include/zephyr/ipc/
|
|
|
|
- samples/subsys/ipc/
|
|
|
|
- subsys/ipc/
|
2022-07-25 15:07:42 +02:00
|
|
|
- tests/subsys/ipc/
|
2022-07-20 20:09:02 +02:00
|
|
|
description: >-
|
|
|
|
Inter-Processor Communication
|
|
|
|
labels:
|
|
|
|
- "area: IPC"
|
2021-09-27 10:17:55 +02:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
JSON Web Token:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- mrfuchs
|
|
|
|
- sir-branch
|
|
|
|
files:
|
|
|
|
- subsys/jwt/
|
|
|
|
- include/zephyr/data/
|
|
|
|
- lib/os/json.c
|
2023-02-15 13:30:27 +01:00
|
|
|
- tests/subsys/jwt/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: JSON"
|
2020-12-07 15:55:15 +01:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
Kconfig:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- tejlmand
|
|
|
|
- nashif
|
|
|
|
files:
|
|
|
|
- scripts/kconfig/
|
|
|
|
- doc/build/kconfig/
|
2023-07-19 13:49:57 +02:00
|
|
|
- Kconfig.zephyr
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Kconfig"
|
|
|
|
description: >-
|
|
|
|
See https://docs.zephyrproject.org/latest/build/kconfig/index.html and
|
|
|
|
https://docs.zephyrproject.org/latest/hardware/porting/board_porting.html#default-board-configuration
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
Kernel:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- andyross
|
|
|
|
collaborators:
|
|
|
|
- nashif
|
|
|
|
- ceolin
|
|
|
|
- dcpleung
|
|
|
|
- peter-mitsis
|
2023-07-18 21:14:49 +02:00
|
|
|
- cfriedt
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- doc/kernel/
|
|
|
|
- include/zephyr/kernel*.h
|
|
|
|
- kernel/
|
|
|
|
- tests/kernel/
|
|
|
|
- include/zephyr/sys_clock.h
|
2022-07-25 15:25:56 +02:00
|
|
|
- samples/kernel/
|
2023-02-15 13:30:27 +01:00
|
|
|
- include/zephyr/kernel/
|
2023-02-20 16:39:20 +01:00
|
|
|
- tests/lib/p4workq/
|
2023-01-11 00:25:53 +01:00
|
|
|
files-exclude:
|
|
|
|
- tests/kernel/mem_protect/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Kernel"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2020-12-20 05:15:40 +01:00
|
|
|
Base OS:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- andyross
|
|
|
|
collaborators:
|
|
|
|
- dcpleung
|
|
|
|
- nashif
|
|
|
|
files:
|
|
|
|
- include/zephyr/sys/
|
|
|
|
- lib/os/
|
|
|
|
files-exclude:
|
|
|
|
- include/zephyr/sys/cbprintf*
|
|
|
|
- tests/unit/cbprintf/
|
|
|
|
- tests/lib/cbprintf_*/
|
|
|
|
- lib/os/cbprintf*
|
|
|
|
- lib/os/Kconfig.cbprintf
|
|
|
|
labels:
|
|
|
|
- "area: Base OS"
|
2020-12-20 05:15:40 +01:00
|
|
|
|
2022-06-20 14:33:55 +02:00
|
|
|
Laird Connectivity platforms:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- rerickson1
|
|
|
|
collaborators:
|
|
|
|
- greg-leach
|
|
|
|
files:
|
|
|
|
- boards/arm/bl5340_dvk/
|
|
|
|
- boards/arm/bl65*/
|
|
|
|
- boards/arm/bt510/
|
|
|
|
- boards/arm/bt610/
|
|
|
|
- boards/arm/pinnacle_100_dvk/
|
2022-09-07 05:12:56 +02:00
|
|
|
- boards/arm/mg100/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "platform: Laird Connectivity"
|
2022-06-20 14:33:55 +02:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
Little FS:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
files:
|
|
|
|
- subsys/fs/Kconfig.littlefs
|
|
|
|
- subsys/fs/littlefs_fs.c
|
|
|
|
- tests/subsys/fs/littlefs/
|
|
|
|
description: >-
|
|
|
|
Little FS
|
|
|
|
labels:
|
|
|
|
- "area: File System"
|
2020-12-07 15:55:15 +01:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
Logging:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- nordic-krch
|
|
|
|
collaborators:
|
|
|
|
- dcpleung
|
|
|
|
files:
|
|
|
|
- include/zephyr/logging/
|
|
|
|
- samples/subsys/logging/
|
|
|
|
- subsys/logging/
|
|
|
|
- tests/subsys/logging/
|
2022-07-25 15:25:56 +02:00
|
|
|
- scripts/logging/
|
2023-02-20 17:00:35 +01:00
|
|
|
- doc/services/logging/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Logging"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2023-09-22 07:17:13 +02:00
|
|
|
LoRa and LoRaWAN:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2023-09-22 07:21:27 +02:00
|
|
|
- JordanYates
|
2023-09-22 07:17:13 +02:00
|
|
|
collaborators:
|
2023-09-22 07:21:27 +02:00
|
|
|
- Mani-Sadhasivam
|
2023-09-22 07:25:49 +02:00
|
|
|
- martinjaeger
|
2023-09-22 07:17:13 +02:00
|
|
|
- mniestroj
|
|
|
|
files:
|
|
|
|
- drivers/lora/
|
|
|
|
- include/zephyr/drivers/lora.h
|
|
|
|
- samples/drivers/lora/
|
|
|
|
- include/zephyr/lorawan/
|
|
|
|
- subsys/lorawan/
|
|
|
|
- samples/subsys/lorawan/
|
|
|
|
- doc/connectivity/lora_lorawan/index.rst
|
|
|
|
labels:
|
|
|
|
- "area: LoRa"
|
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
MAINTAINERS file:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- MaureenHelm
|
|
|
|
collaborators:
|
|
|
|
- nashif
|
|
|
|
- stephanosio
|
|
|
|
files:
|
|
|
|
- MAINTAINERS.yml
|
|
|
|
labels:
|
|
|
|
- "area: Process"
|
|
|
|
description: >-
|
|
|
|
Zephyr Maintainers File
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2021-10-19 17:35:47 +02:00
|
|
|
Mbed TLS:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- d3zd3z
|
|
|
|
- ceolin
|
|
|
|
files:
|
|
|
|
- tests/crypto/mbedtls/
|
2023-02-24 10:26:15 +01:00
|
|
|
- doc/services/crypto/
|
2023-02-24 12:28:57 +01:00
|
|
|
- tests/benchmarks/mbedtls/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Crypto / RNG"
|
|
|
|
description: >-
|
|
|
|
Mbed TLS module implementing the PSA Crypto API and TLS.
|
2021-10-19 17:35:47 +02:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
MCU Manager:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2022-08-09 09:23:26 +02:00
|
|
|
- nordicjm
|
2023-05-11 11:30:38 +02:00
|
|
|
collaborators:
|
|
|
|
- de-nordic
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- subsys/mgmt/mcumgr/
|
|
|
|
- include/zephyr/mgmt/mcumgr/
|
|
|
|
- samples/subsys/mgmt/mcumgr/
|
2022-09-09 22:10:18 +02:00
|
|
|
- tests/subsys/mgmt/mcumgr/
|
2023-01-26 18:00:29 +01:00
|
|
|
- doc/services/device_mgmt/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: mcumgr"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2022-07-25 15:05:46 +02:00
|
|
|
Modbus:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- jfischer-no
|
|
|
|
files:
|
|
|
|
- samples/subsys/modbus/
|
|
|
|
- include/zephyr/modbus/
|
|
|
|
- tests/subsys/modbus/
|
|
|
|
- subsys/modbus/
|
|
|
|
- doc/services/modbus/
|
|
|
|
labels:
|
|
|
|
- "area: modbus"
|
|
|
|
|
2023-08-18 19:11:17 +02:00
|
|
|
Modem Modules:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- bjarki-trackunit
|
|
|
|
files:
|
|
|
|
- subsys/modem/
|
|
|
|
- include/zephyr/modem/
|
|
|
|
- tests/subsys/modem/
|
|
|
|
|
2020-09-09 05:35:45 +02:00
|
|
|
OSDP:
|
2022-06-10 23:35:25 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2022-07-20 20:09:02 +02:00
|
|
|
- sidcha
|
2022-06-10 23:35:25 +02:00
|
|
|
collaborators:
|
|
|
|
- adakus
|
|
|
|
- r2r0
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- subsys/mgmt/osdp/
|
|
|
|
- include/zephyr/mgmt/osdp.h
|
|
|
|
- samples/subsys/mgmt/osdp/
|
|
|
|
labels:
|
|
|
|
- "area: OSDP"
|
2020-09-09 05:35:45 +02:00
|
|
|
|
2021-10-02 09:59:01 +02:00
|
|
|
hawkBit:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- ycsin
|
|
|
|
files:
|
|
|
|
- subsys/mgmt/hawkbit/
|
|
|
|
- include/zephyr/mgmt/hawkbit.h
|
|
|
|
- samples/subsys/mgmt/hawkbit/
|
|
|
|
labels:
|
|
|
|
- "area: hawkBit"
|
2021-10-02 09:59:01 +02:00
|
|
|
|
2021-11-19 01:27:14 +01:00
|
|
|
"mgmt: updatehub":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- nandojve
|
|
|
|
files:
|
|
|
|
- subsys/mgmt/updatehub/
|
|
|
|
- samples/subsys/mgmt/updatehub/
|
|
|
|
labels:
|
|
|
|
- "area: updatehub"
|
|
|
|
description: >-
|
|
|
|
UpdateHub embedded Firmware Over-The-Air (FOTA) upgrade agent
|
2021-11-19 01:27:14 +01:00
|
|
|
|
2023-06-21 14:06:47 +02:00
|
|
|
Native POSIX/Sim and POSIX arch:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- aescolar
|
|
|
|
files:
|
|
|
|
- arch/posix/
|
2023-06-21 14:06:47 +02:00
|
|
|
- boards/posix/native_*/
|
2023-02-16 09:27:09 +01:00
|
|
|
- boards/posix/doc/
|
|
|
|
- boards/posix/*.rst
|
2023-06-21 14:06:47 +02:00
|
|
|
- drivers/*/*posix*
|
|
|
|
- drivers/*/*native*
|
|
|
|
- drivers/*/*/*posix*
|
|
|
|
- drivers/*/*/*native*
|
2022-07-20 20:09:02 +02:00
|
|
|
- dts/posix/
|
|
|
|
- include/zephyr/arch/posix/
|
2023-07-18 01:13:57 +02:00
|
|
|
- scripts/native_simulator/
|
2022-07-20 20:09:02 +02:00
|
|
|
- scripts/valgrind.supp
|
|
|
|
- soc/posix/
|
|
|
|
- tests/boards/native_posix/
|
|
|
|
labels:
|
|
|
|
- "area: native port"
|
|
|
|
description: >-
|
2023-06-21 14:06:47 +02:00
|
|
|
POSIX architecture and SOC, native_posix & native_sim boards, and related drivers
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
Networking:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- rlubos
|
2023-08-23 14:12:44 +02:00
|
|
|
- jukkar
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
|
|
|
- tbursztyka
|
2023-06-27 20:13:14 +02:00
|
|
|
- ssharks
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- drivers/net/
|
|
|
|
- include/zephyr/net/
|
|
|
|
- samples/net/
|
|
|
|
- subsys/net/
|
|
|
|
- doc/connectivity/networking/
|
2022-07-25 15:14:49 +02:00
|
|
|
- tests/net/
|
2022-07-20 20:09:02 +02:00
|
|
|
files-exclude:
|
2023-08-23 21:29:43 +02:00
|
|
|
- doc/connectivity/networking/api/gptp.rst
|
2023-08-24 09:17:49 +02:00
|
|
|
- doc/connectivity/networking/api/ieee802154.rst
|
2023-08-25 11:07:00 +02:00
|
|
|
- doc/connectivity/networking/api/wifi.rst
|
2023-08-23 21:29:43 +02:00
|
|
|
- include/zephyr/net/gptp.h
|
2023-08-24 09:17:49 +02:00
|
|
|
- include/zephyr/net/ieee802154*.h
|
2023-08-25 11:07:00 +02:00
|
|
|
- include/zephyr/net/wifi*.h
|
2023-08-23 21:29:43 +02:00
|
|
|
- samples/net/gptp/
|
2022-07-20 20:09:02 +02:00
|
|
|
- samples/net/sockets/coap_*/
|
|
|
|
- samples/net/lwm2m_client/
|
2023-08-25 11:07:00 +02:00
|
|
|
- samples/net/wifi/
|
2023-08-23 21:29:43 +02:00
|
|
|
- subsys/net/l2/ethernet/gptp/
|
2023-08-24 09:17:49 +02:00
|
|
|
- subsys/net/l2/ieee802154/
|
2023-08-25 11:07:00 +02:00
|
|
|
- subsys/net/l2/wifi/
|
2022-07-20 20:09:02 +02:00
|
|
|
- subsys/net/lib/coap/
|
2023-08-24 09:17:49 +02:00
|
|
|
- subsys/net/lib/config/ieee802154*
|
2022-07-20 20:09:02 +02:00
|
|
|
- subsys/net/lib/lwm2m/
|
|
|
|
- subsys/net/lib/tls_credentials/
|
2023-08-24 09:17:49 +02:00
|
|
|
- tests/net/ieee802154/
|
2023-08-25 11:07:00 +02:00
|
|
|
- tests/net/wifi/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Networking"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Networking: BSD sockets":
|
2023-01-18 18:40:47 +01:00
|
|
|
status: odd fixes
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
|
|
|
- rlubos
|
2023-08-23 14:12:44 +02:00
|
|
|
- jukkar
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- samples/net/sockets/
|
|
|
|
- subsys/net/lib/sockets/
|
|
|
|
- tests/net/socket/
|
|
|
|
labels:
|
|
|
|
- "area: Sockets"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Networking: Buffers":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- jhedberg
|
|
|
|
collaborators:
|
|
|
|
- rlubos
|
|
|
|
- tbursztyka
|
2023-08-23 14:12:44 +02:00
|
|
|
- jukkar
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- include/zephyr/net/buf.h
|
|
|
|
- subsys/net/buf.c
|
|
|
|
- tests/net/buf/
|
|
|
|
labels:
|
|
|
|
- "area: Networking"
|
2020-12-07 15:55:15 +01:00
|
|
|
|
2023-08-10 21:01:43 +02:00
|
|
|
"Networking: Connection Manager":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- rlubos
|
|
|
|
collaborators:
|
|
|
|
- glarsennordic
|
2023-08-23 14:12:44 +02:00
|
|
|
- jukkar
|
2023-08-10 21:01:43 +02:00
|
|
|
files:
|
|
|
|
- include/zephyr/net/conn_mgr*.h
|
|
|
|
- subsys/net/conn_mgr/
|
2023-08-23 22:35:41 +02:00
|
|
|
- tests/net/conn_mgr_monitor/
|
2023-08-10 21:01:43 +02:00
|
|
|
- tests/net/conn_mgr_conn/
|
2023-09-15 00:52:13 +02:00
|
|
|
- doc/connectivity/networking/conn_mgr/
|
2023-08-10 21:01:43 +02:00
|
|
|
labels:
|
|
|
|
- "area: Networking"
|
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
"Networking: CoAP":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- rlubos
|
|
|
|
collaborators:
|
|
|
|
- pdgendt
|
|
|
|
files:
|
|
|
|
- subsys/net/lib/coap/
|
|
|
|
- samples/net/sockets/coap_*/
|
|
|
|
- tests/net/lib/coap/
|
|
|
|
labels:
|
|
|
|
- "area: Networking"
|
2021-04-27 22:15:07 +02:00
|
|
|
|
2023-08-23 21:29:43 +02:00
|
|
|
"Networking: gPTP":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- jukkar
|
|
|
|
collaborators:
|
|
|
|
- fgrandel
|
|
|
|
files:
|
|
|
|
- doc/connectivity/networking/api/gptp.rst
|
|
|
|
- include/zephyr/net/gptp.h
|
|
|
|
- samples/net/gptp/
|
|
|
|
- subsys/net/l2/ethernet/gptp/
|
|
|
|
labels:
|
|
|
|
- "area: Networking"
|
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
"Networking: LWM2M":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- rlubos
|
|
|
|
collaborators:
|
|
|
|
- SeppoTakalo
|
|
|
|
files:
|
|
|
|
- samples/net/lwm2m_client/
|
2023-01-27 11:37:15 +01:00
|
|
|
- tests/net/lib/lwm2m/
|
2022-07-20 20:09:02 +02:00
|
|
|
- subsys/net/lib/lwm2m/
|
|
|
|
labels:
|
|
|
|
- "area: LWM2M"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
"Networking: MQTT":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- rlubos
|
|
|
|
files:
|
|
|
|
- subsys/net/lib/mqtt/
|
2022-07-25 14:35:52 +02:00
|
|
|
- tests/net/lib/mqtt_*/
|
|
|
|
- samples/net/cloud/mqtt_azure/
|
2022-07-20 20:09:02 +02:00
|
|
|
- samples/net/mqtt_publisher/
|
2022-10-30 15:24:21 +01:00
|
|
|
files-exclude:
|
|
|
|
- tests/net/lib/mqtt_sn*/
|
|
|
|
labels:
|
|
|
|
- "area: Networking"
|
|
|
|
|
|
|
|
"Networking: MQTT-SN":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- rlubos
|
|
|
|
collaborators:
|
|
|
|
- BeckmaR
|
|
|
|
files:
|
|
|
|
- subsys/net/lib/mqtt_sn/
|
|
|
|
- tests/net/lib/mqtt_sn*/
|
|
|
|
- samples/net/mqtt_sn_publisher/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Networking"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2023-07-02 17:15:41 +02:00
|
|
|
"Networking: Native IEEE 802.15.4":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2023-09-05 22:08:16 +02:00
|
|
|
- fgrandel
|
2023-07-02 17:15:41 +02:00
|
|
|
collaborators:
|
|
|
|
- rlubos
|
2023-08-23 14:12:44 +02:00
|
|
|
- jukkar
|
2023-07-02 17:15:41 +02:00
|
|
|
files:
|
|
|
|
- doc/connectivity/networking/api/ieee802154.rst
|
2023-08-24 09:17:49 +02:00
|
|
|
- include/zephyr/net/ieee802154*.h
|
2023-07-02 17:15:41 +02:00
|
|
|
- subsys/net/l2/ieee802154/
|
2023-08-24 09:17:49 +02:00
|
|
|
- subsys/net/lib/config/ieee802154*
|
2023-07-02 17:15:41 +02:00
|
|
|
- tests/net/ieee802154/
|
|
|
|
labels:
|
|
|
|
- "area: IEEE 802.15.4"
|
|
|
|
|
2021-10-14 14:46:34 +02:00
|
|
|
"Networking: OpenThread":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- rlubos
|
|
|
|
collaborators:
|
|
|
|
- pdgendt
|
2023-03-29 12:44:24 +02:00
|
|
|
- canisLupus1313
|
|
|
|
- mariuszpos
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- subsys/net/l2/openthread/
|
|
|
|
- samples/net/openthread/
|
2022-07-25 14:33:02 +02:00
|
|
|
- tests/subsys/openthread/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Networking"
|
|
|
|
- "area: OpenThread"
|
2021-10-14 14:46:34 +02:00
|
|
|
|
2023-08-25 11:07:00 +02:00
|
|
|
"Networking: Wi-Fi":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- jukkar
|
|
|
|
collaborators:
|
|
|
|
- rlubos
|
2023-08-25 16:47:47 +02:00
|
|
|
- krish2718
|
2023-08-25 11:07:00 +02:00
|
|
|
files:
|
|
|
|
- doc/connectivity/networking/api/wifi.rst
|
|
|
|
- include/zephyr/net/wifi*.h
|
|
|
|
- subsys/net/l2/wifi/
|
|
|
|
- samples/net/wifi/
|
|
|
|
- tests/net/wifi/
|
|
|
|
labels:
|
|
|
|
- "area: Networking"
|
2023-08-25 11:38:28 +02:00
|
|
|
- "area: Wi-Fi"
|
2023-08-25 11:07:00 +02:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
NIOS-2 arch:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- nashif
|
|
|
|
files:
|
|
|
|
- arch/nios2/
|
2022-07-25 15:25:56 +02:00
|
|
|
- soc/nios2/
|
2022-07-20 20:09:02 +02:00
|
|
|
- include/zephyr/arch/nios2/
|
2022-07-25 15:25:56 +02:00
|
|
|
- tests/boards/altera_max10/
|
2023-02-15 13:30:27 +01:00
|
|
|
- boards/nios2/qemu_nios2/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: NIOS2"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2023-09-12 10:48:10 +02:00
|
|
|
nRF BSIM:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- aescolar
|
|
|
|
files:
|
2023-09-12 10:48:10 +02:00
|
|
|
- boards/posix/nrf_bsim/
|
2023-02-24 12:28:57 +01:00
|
|
|
- tests/boards/nrf52_bsim/
|
2023-03-22 10:01:02 +01:00
|
|
|
- tests/bsim/
|
|
|
|
files-exclude:
|
|
|
|
- tests/bsim/*/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
2023-09-12 10:48:10 +02:00
|
|
|
- "platform: nRF BSIM"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
POSIX API layer:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- cfriedt
|
|
|
|
files:
|
|
|
|
- include/zephyr/posix/
|
|
|
|
- lib/posix/
|
|
|
|
- tests/posix/
|
2023-02-15 13:30:27 +01:00
|
|
|
- samples/posix/
|
2023-02-20 16:38:54 +01:00
|
|
|
- tests/lib/fdtable/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: POSIX"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
Power management:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- ceolin
|
|
|
|
collaborators:
|
|
|
|
- nashif
|
|
|
|
- teburd
|
2023-01-04 15:55:24 +01:00
|
|
|
- tmleman
|
2023-07-14 14:22:37 +02:00
|
|
|
- JordanYates
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- include/zephyr/pm/
|
|
|
|
- samples/subsys/pm/
|
|
|
|
- subsys/pm/
|
|
|
|
- tests/subsys/pm/
|
2023-02-15 13:30:27 +01:00
|
|
|
- doc/services/pm/
|
|
|
|
- drivers/power_domain/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Power Management"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
RISCV arch:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2022-09-20 13:28:08 +02:00
|
|
|
- fkokosinski
|
2022-07-20 20:09:02 +02:00
|
|
|
- kgugala
|
|
|
|
- tgorochowik
|
|
|
|
collaborators:
|
|
|
|
- mgielda
|
|
|
|
- katsuster
|
|
|
|
- edersondisouza
|
2022-08-03 09:10:06 +02:00
|
|
|
- carlocaione
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- arch/riscv/
|
|
|
|
- boards/riscv/
|
|
|
|
- dts/bindings/riscv/
|
|
|
|
- include/zephyr/arch/riscv/
|
|
|
|
- soc/riscv/
|
2023-02-15 13:30:27 +01:00
|
|
|
- tests/arch/riscv/
|
2023-02-24 10:26:15 +01:00
|
|
|
- doc/hardware/arch/risc-v.rst
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: RISCV"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2023-02-23 13:41:25 +01:00
|
|
|
Retention:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- nordicjm
|
|
|
|
files:
|
|
|
|
- dts/bindings/retention/
|
|
|
|
- include/zephyr/retention/
|
|
|
|
- subsys/retention/
|
|
|
|
labels:
|
|
|
|
- "area: Retention"
|
|
|
|
|
2023-02-24 08:48:02 +01:00
|
|
|
Sensor Subsystem:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- lixuzha
|
|
|
|
- ghu0510
|
|
|
|
- yperess
|
|
|
|
collaborators:
|
|
|
|
- qianruh
|
|
|
|
files:
|
|
|
|
- dts/bindings/sensor/zephyr,sensing.yaml
|
|
|
|
- dts/bindings/sensor/zephyr,sensing*.yaml
|
|
|
|
- include/zephyr/sensing/
|
|
|
|
- doc/services/sensing/
|
|
|
|
- subsys/sensing/
|
|
|
|
- samples/subsys/sensing/
|
|
|
|
labels:
|
|
|
|
- "area: Sensor Subsystem"
|
|
|
|
|
2020-12-07 17:49:58 +01:00
|
|
|
Twister:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- nashif
|
|
|
|
collaborators:
|
|
|
|
- galak
|
|
|
|
- PerMac
|
|
|
|
- hakehuang
|
|
|
|
- gopiotr
|
2023-04-03 19:38:12 +02:00
|
|
|
- golowanow
|
2023-06-21 13:09:35 +02:00
|
|
|
- gchwier
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- scripts/twister
|
|
|
|
- scripts/pylib/twister/
|
|
|
|
- scripts/tests/twister/
|
2023-08-21 16:12:36 +02:00
|
|
|
- scripts/tests/twister_blackbox/
|
2023-01-30 16:25:00 +01:00
|
|
|
- doc/develop/test/twister.rst
|
2023-06-21 13:09:35 +02:00
|
|
|
- scripts/pylib/pytest-twister-harness/
|
|
|
|
- doc/develop/test/pytest.rst
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Twister"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
Settings:
|
2022-10-18 11:56:28 +02:00
|
|
|
status: odd fixes
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- include/zephyr/settings/
|
|
|
|
- subsys/settings/
|
|
|
|
- tests/subsys/settings/
|
2022-07-25 15:25:56 +02:00
|
|
|
- samples/subsys/settings/
|
2023-01-26 18:00:29 +01:00
|
|
|
- doc/services/settings/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Settings"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
Shell:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- jakub-uC
|
|
|
|
collaborators:
|
|
|
|
- carlescufi
|
|
|
|
files:
|
|
|
|
- include/zephyr/shell/
|
|
|
|
- samples/subsys/shell/
|
|
|
|
- subsys/shell/
|
|
|
|
- tests/subsys/shell/
|
2023-02-15 13:30:27 +01:00
|
|
|
- doc/services/shell/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Shell"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
Shields:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- erwango
|
|
|
|
collaborators:
|
|
|
|
- avisconti
|
|
|
|
- jfischer-no
|
2023-08-23 13:56:22 +02:00
|
|
|
- kartben
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- boards/shields/
|
|
|
|
- doc/hardware/porting/shields.rst
|
2023-02-15 13:30:27 +01:00
|
|
|
- samples/shields/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Shields"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2020-11-13 09:52:02 +01:00
|
|
|
SPARC arch:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- julius-barendt
|
|
|
|
files:
|
|
|
|
- arch/sparc/
|
|
|
|
- include/zephyr/arch/sparc/
|
2022-07-25 15:25:56 +02:00
|
|
|
- soc/sparc/
|
2023-02-15 13:30:27 +01:00
|
|
|
- boards/sparc/
|
|
|
|
- dts/sparc/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: SPARC"
|
2020-11-13 09:52:02 +01:00
|
|
|
|
2021-10-26 22:21:19 +02:00
|
|
|
State machine framework:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- sambhurst
|
|
|
|
collaborators:
|
|
|
|
- keith-zephyr
|
|
|
|
files:
|
|
|
|
- doc/services/smf/
|
|
|
|
- include/zephyr/smf.h
|
|
|
|
- lib/smf/
|
|
|
|
- tests/lib/smf/
|
|
|
|
labels:
|
|
|
|
- "area: State Machine Framework"
|
2021-10-26 22:21:19 +02:00
|
|
|
|
2023-08-25 22:01:28 +02:00
|
|
|
ADI Platforms:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- MaureenHelm
|
|
|
|
collaborators:
|
|
|
|
- galak
|
|
|
|
- microbuilder
|
|
|
|
files:
|
|
|
|
- drivers/*/max*
|
|
|
|
- drivers/*/*max*/
|
|
|
|
- drivers/dac/dac_ltc*
|
|
|
|
- drivers/ethernet/eth_adin*
|
|
|
|
- drivers/mdio/mdio_adin*
|
|
|
|
- drivers/regulator/regulator_adp5360*
|
|
|
|
- drivers/sensor/adt*/
|
|
|
|
- drivers/sensor/adxl*/
|
|
|
|
- dts/bindings/*/adi,*
|
|
|
|
- dts/bindings/*/lltc,*
|
|
|
|
- dts/bindings/*/maxim,*
|
|
|
|
labels:
|
|
|
|
- "platform: ADI"
|
|
|
|
|
2021-11-18 21:46:13 +01:00
|
|
|
GD32 Platforms:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2022-10-31 14:12:34 +01:00
|
|
|
- cameled
|
2022-07-20 20:09:02 +02:00
|
|
|
- nandojve
|
|
|
|
collaborators:
|
2022-10-26 10:10:02 +02:00
|
|
|
- gmarull
|
2022-07-20 20:09:02 +02:00
|
|
|
- soburi
|
|
|
|
files:
|
|
|
|
- boards/arm/gd32*/
|
|
|
|
- boards/riscv/gd32*/
|
|
|
|
- boards/riscv/longan_nano/
|
|
|
|
- drivers/*/*gd32*
|
|
|
|
- dts/*/gigadevice/
|
|
|
|
- dts/bindings/*/*gd32*
|
|
|
|
- soc/arm/gigadevice/
|
2023-06-09 10:40:43 +02:00
|
|
|
- soc/riscv/riscv-privileged/gd32vf103/
|
2022-07-20 20:09:02 +02:00
|
|
|
- scripts/west_commands/*/*gd32*
|
|
|
|
labels:
|
|
|
|
- "platform: GD32"
|
|
|
|
description: >-
|
|
|
|
GigaDevice GD32 SOCs, dts files and related drivers. Starter and eval
|
|
|
|
boards.
|
2021-11-18 21:46:13 +01:00
|
|
|
|
2020-12-20 05:15:40 +01:00
|
|
|
Synopsys Platforms:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- ruuddw
|
|
|
|
collaborators:
|
|
|
|
- abrodkin
|
|
|
|
- evgeniy-paltsev
|
|
|
|
- IRISZZW
|
|
|
|
files:
|
|
|
|
- soc/arc/
|
|
|
|
- boards/arc/
|
2023-02-24 12:28:57 +01:00
|
|
|
- samples/boards/arc_secure_services/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "platform: Synopsys"
|
2020-12-20 05:15:40 +01:00
|
|
|
|
2022-05-13 16:18:30 +02:00
|
|
|
Nuvoton NPCX Platforms:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- MulinChao
|
|
|
|
- ChiHuaL
|
|
|
|
collaborators:
|
|
|
|
- MulinChao
|
|
|
|
- ChiHuaL
|
|
|
|
- sjg20
|
|
|
|
- keith-zephyr
|
|
|
|
- jackrosenthal
|
|
|
|
- fabiobaltieri
|
|
|
|
files:
|
|
|
|
- soc/arm/nuvoton_npcx/
|
|
|
|
- boards/arm/npcx*/
|
|
|
|
- dts/arm/nuvoton/
|
|
|
|
- dts/bindings/*/*npcx*
|
|
|
|
- drivers/*/*_npcx*.c
|
|
|
|
labels:
|
|
|
|
- "platform: Nuvoton NPCX"
|
2021-02-02 14:55:53 +01:00
|
|
|
|
2022-05-13 16:23:06 +02:00
|
|
|
Nuvoton Numicro Platforms:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- ssekar15
|
|
|
|
files:
|
|
|
|
- soc/arm/nuvoton_numicro/
|
|
|
|
- boards/arm/nuvoton_pfm*/
|
|
|
|
- dts/arm/nuvoton/
|
|
|
|
- dts/bindings/*/*numicro*
|
|
|
|
- drivers/*/*_numicro*
|
|
|
|
labels:
|
|
|
|
- "platform: Nuvoton Numicro"
|
2021-08-05 03:50:27 +02:00
|
|
|
|
2023-02-08 21:57:38 +01:00
|
|
|
Raspberry Pi Pico Platforms:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- yonsch
|
|
|
|
collaborators:
|
|
|
|
- soburi
|
|
|
|
files:
|
|
|
|
- boards/arm/rpi_pico/
|
|
|
|
- boards/arm/adafruit_kb2040/
|
|
|
|
- boards/arm/sparkfun_pro_micro_rp2040/
|
|
|
|
- dts/arm/rpi_pico/
|
|
|
|
- dts/bindings/*/raspberrypi,pico*
|
|
|
|
- drivers/*/*rpi_pico
|
|
|
|
- drivers/*/*rpi_pico*/
|
|
|
|
- drivers/*/*rpi_pico*.c
|
|
|
|
- soc/arm/rpi_pico/
|
|
|
|
labels:
|
|
|
|
- "platform: Raspberry Pi Pico"
|
|
|
|
|
2021-02-02 14:55:53 +01:00
|
|
|
SiLabs Platforms:
|
2023-03-07 14:00:39 +01:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- fkokosinski
|
|
|
|
collaborators:
|
|
|
|
- tgorochowik
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- soc/arm/silabs_*/
|
|
|
|
- boards/arm/ef*/
|
|
|
|
- dts/arm/silabs/
|
|
|
|
- dts/bindings/*/silabs*
|
|
|
|
- drivers/*/*_gecko*
|
|
|
|
labels:
|
|
|
|
- "platform: SiLabs"
|
2021-02-02 14:55:53 +01:00
|
|
|
|
2020-12-20 05:15:40 +01:00
|
|
|
Intel Platforms (X86):
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- jhedberg
|
2022-12-02 11:58:05 +01:00
|
|
|
collaborators:
|
|
|
|
- tbursztyka
|
2022-07-20 20:09:02 +02:00
|
|
|
- laurenmurphyx64
|
|
|
|
files:
|
|
|
|
- boards/x86/
|
2023-02-15 13:30:27 +01:00
|
|
|
- dts/x86/intel/
|
2022-07-20 20:09:02 +02:00
|
|
|
- soc/x86/
|
2023-02-15 13:30:27 +01:00
|
|
|
- samples/boards/up_squared/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "platform: X86"
|
2020-12-20 05:15:40 +01:00
|
|
|
|
|
|
|
Intel Platforms (Xtensa):
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- nashif
|
|
|
|
collaborators:
|
|
|
|
- andyross
|
|
|
|
- dcpleung
|
|
|
|
- lyakh
|
|
|
|
- lgirdwood
|
|
|
|
- marc-hb
|
|
|
|
- kv2019i
|
|
|
|
- ceolin
|
2023-01-04 15:58:45 +01:00
|
|
|
- aborisovich
|
|
|
|
- tmleman
|
|
|
|
- softwarecki
|
|
|
|
- jxstelter
|
|
|
|
- marcinszkudlinski
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- boards/xtensa/intel_*/
|
|
|
|
- soc/xtensa/intel_*/
|
|
|
|
- dts/xtensa/intel/
|
2022-07-25 15:09:06 +02:00
|
|
|
- tests/boards/intel_adsp/
|
2023-02-24 12:28:57 +01:00
|
|
|
- samples/boards/intel_adsp/
|
2023-03-16 10:35:52 +01:00
|
|
|
- dts/bindings/*/intel,adsp*
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "platform: Intel ADSP"
|
2020-12-20 05:15:40 +01:00
|
|
|
|
2023-08-03 13:08:47 +02:00
|
|
|
Intel Platforms (ISH):
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- kwd-doodling
|
|
|
|
collaborators:
|
|
|
|
- teburd
|
|
|
|
- likongintel
|
|
|
|
files:
|
|
|
|
- boards/x86/intel_ish/
|
|
|
|
- soc/x86/intel_ish/
|
|
|
|
- dts/x86/intel/intel_ish*
|
|
|
|
- dts/bindings/*/intel,sedi*
|
|
|
|
- drivers/*/*sedi*
|
|
|
|
labels:
|
|
|
|
- "platform: Intel ISH"
|
|
|
|
|
2023-07-21 19:23:21 +02:00
|
|
|
Intel Platforms (Agilex):
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- gdengi
|
|
|
|
collaborators:
|
|
|
|
- nbalabak
|
|
|
|
- chongteikheng
|
|
|
|
files:
|
|
|
|
- boards/arm64/intel_*/
|
|
|
|
- soc/arm64/intel_*/
|
|
|
|
- dts/arm64/intel/
|
|
|
|
- samples/boards/intel_adsp/
|
|
|
|
- dts/bindings/*/intel,agilex*
|
|
|
|
labels:
|
|
|
|
- "platform: Intel SoC FPGA Agilex"
|
|
|
|
|
2020-12-20 05:15:40 +01:00
|
|
|
NXP Platforms:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2021-09-20 16:19:27 +02:00
|
|
|
- dleach02
|
2021-03-31 00:06:52 +02:00
|
|
|
collaborators:
|
|
|
|
- mmahadevan108
|
2021-12-13 19:46:00 +01:00
|
|
|
- danieldegrasse
|
2022-08-19 20:15:10 +02:00
|
|
|
- DerekSnell
|
|
|
|
- yvanderv
|
|
|
|
- EmilioCBen
|
|
|
|
- decsny
|
2022-10-20 22:56:05 +02:00
|
|
|
- manuargue
|
2023-08-09 02:36:56 +02:00
|
|
|
- PetervdPerk-NXP
|
|
|
|
- bperseghetti
|
2023-05-08 16:22:28 +02:00
|
|
|
- dbaluta
|
|
|
|
- iuliana-prodan
|
2023-09-21 06:57:39 +02:00
|
|
|
- Dat-NguyenDuy
|
2020-12-20 05:15:40 +01:00
|
|
|
files:
|
|
|
|
- boards/arm/mimx*/
|
|
|
|
- boards/arm/frdm_k*/
|
|
|
|
- boards/arm/lpcxpress*/
|
2021-09-15 23:21:15 +02:00
|
|
|
- boards/arm/twr_*/
|
2023-07-31 07:15:15 +02:00
|
|
|
- boards/arm/s32*/
|
|
|
|
- boards/arm/mr_canhubk3/
|
2023-08-09 02:36:56 +02:00
|
|
|
- boards/arm/vmu_rt*/
|
2020-12-20 05:15:40 +01:00
|
|
|
- soc/arm/nxp_*/
|
|
|
|
- drivers/*/*imx*
|
2021-09-15 23:21:15 +02:00
|
|
|
- drivers/*/*lpc*.c
|
|
|
|
- drivers/*/*mcux*.c
|
2023-07-31 07:15:15 +02:00
|
|
|
- drivers/*/*nxp*
|
2020-12-20 05:15:40 +01:00
|
|
|
- dts/arm/nxp/
|
2021-01-15 21:58:58 +01:00
|
|
|
- dts/bindings/*/nxp*
|
2022-07-25 15:25:56 +02:00
|
|
|
- soc/xtensa/nxp_adsp/
|
2023-07-31 07:15:15 +02:00
|
|
|
- samples/boards/nxp*/
|
|
|
|
- include/zephyr/dt-bindings/*/nxp*
|
|
|
|
- include/zephyr/drivers/*/*nxp*
|
2020-12-20 05:15:40 +01:00
|
|
|
labels:
|
|
|
|
- "platform: NXP"
|
|
|
|
|
2022-05-13 15:56:55 +02:00
|
|
|
Microchip MEC Platforms:
|
2020-12-20 05:15:40 +01:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2022-01-04 18:42:39 +01:00
|
|
|
- jvasanth1
|
2020-12-20 05:15:40 +01:00
|
|
|
collaborators:
|
|
|
|
- VenkatKotakonda
|
|
|
|
- albertofloyd
|
|
|
|
files:
|
|
|
|
- boards/arm/mec*/
|
|
|
|
- dts/arm/microchip/
|
|
|
|
- soc/arm/microchip_mec/
|
2021-09-15 23:21:15 +02:00
|
|
|
- drivers/*/*mchp*.c
|
2022-07-25 15:25:56 +02:00
|
|
|
- tests/boards/mec15xxevb_assy6853/
|
2023-02-14 17:13:15 +01:00
|
|
|
- tests/boards/mec172xevb_assy6906/
|
|
|
|
- dts/bindings/*/microchip,*
|
2020-12-20 05:15:40 +01:00
|
|
|
labels:
|
2022-05-13 15:56:55 +02:00
|
|
|
- "platform: Microchip MEC"
|
2020-12-20 05:15:40 +01:00
|
|
|
|
2022-05-13 16:05:45 +02:00
|
|
|
Microchip SAM Platforms:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- nandojve
|
|
|
|
collaborators:
|
2022-11-06 14:05:50 +01:00
|
|
|
- attie-argentum
|
2023-03-16 16:36:21 +01:00
|
|
|
- pdgendt
|
2022-05-13 16:05:45 +02:00
|
|
|
- mnkp
|
|
|
|
- stephanosio
|
|
|
|
files:
|
|
|
|
- boards/arm/atsam*/
|
|
|
|
- boards/arm/sam*/
|
|
|
|
- dts/arm/atmel/
|
|
|
|
- soc/arm/atmel_sam*/
|
|
|
|
- drivers/*/*sam*.c
|
2023-02-14 17:13:15 +01:00
|
|
|
- dts/bindings/*/atmel,*
|
2022-05-13 16:05:45 +02:00
|
|
|
labels:
|
|
|
|
- "platform: Microchip SAM"
|
|
|
|
|
2020-12-20 05:15:40 +01:00
|
|
|
nRF Platforms:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- anangl
|
|
|
|
files:
|
|
|
|
- boards/arm/*nrf*/
|
|
|
|
- drivers/*/*nrfx*.c
|
|
|
|
- soc/arm/nordic_nrf/
|
|
|
|
- samples/boards/nrf/
|
|
|
|
- dts/arm/nordic/
|
2023-02-14 17:13:15 +01:00
|
|
|
- dts/bindings/*/nordic,*
|
2023-02-24 12:28:57 +01:00
|
|
|
- tests/drivers/timer/nrf_rtc_timer/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "platform: nRF"
|
2020-12-20 05:15:40 +01:00
|
|
|
|
2023-02-24 12:01:09 +01:00
|
|
|
Renesas SmartBond Platforms:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- andrzej-kaczmarek
|
|
|
|
- blauret
|
|
|
|
files:
|
|
|
|
- boards/arm/da14*/
|
|
|
|
- drivers/*/*smartbond*
|
|
|
|
- dts/arm/renesas/smartbond/
|
|
|
|
- dts/bindings/*/renesas,smartbond*
|
|
|
|
- soc/arm/renesas_smartbond/
|
|
|
|
labels:
|
|
|
|
- "platform: Renesas SmartBond"
|
|
|
|
description: >-
|
|
|
|
Renesas SmartBond SOCs, dts files, and related drivers. Renesas boards based
|
|
|
|
on SmartBond SoCs.
|
|
|
|
|
2021-12-02 10:21:44 +01:00
|
|
|
Renesas R-Car Platforms:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- aaillet
|
2023-08-01 14:29:06 +02:00
|
|
|
- lorc
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
2023-08-01 14:29:06 +02:00
|
|
|
- xakep-amatop
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- boards/arm/rcar_*/
|
2023-08-01 14:29:06 +02:00
|
|
|
- boards/arm64/rcar_*/
|
2022-07-20 20:09:02 +02:00
|
|
|
- drivers/*/*rcar*
|
|
|
|
- drivers/clock_control/*cpg_mssr*
|
2023-02-07 17:06:16 +01:00
|
|
|
- dts/arm/renesas/rcar/
|
2023-08-01 14:29:06 +02:00
|
|
|
- dts/arm64/renesas/
|
2022-07-20 20:09:02 +02:00
|
|
|
- dts/bindings/*/*rcar*
|
|
|
|
- soc/arm/renesas_rcar/
|
2023-06-27 12:37:50 +02:00
|
|
|
- soc/arm64/renesas_rcar/
|
|
|
|
labels:
|
2023-08-01 14:29:06 +02:00
|
|
|
- "platform: Renesas R-Car"
|
2023-06-27 12:37:50 +02:00
|
|
|
description: >-
|
2023-08-01 14:29:06 +02:00
|
|
|
Renesas R-Car SOCs, dts files (Cortex-R and Cortex-A sides).
|
|
|
|
Renesas boards based on R-Car SOCs (Cortex-R and Cortex-A sides).
|
|
|
|
Renesas R-Car related drivers.
|
2023-06-27 12:37:50 +02:00
|
|
|
|
2020-12-20 05:15:40 +01:00
|
|
|
STM32 Platforms:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- erwango
|
|
|
|
collaborators:
|
|
|
|
- ABOSTM
|
|
|
|
- FRASTM
|
2022-11-14 13:33:14 +01:00
|
|
|
- gautierg-st
|
2023-02-22 13:55:41 +01:00
|
|
|
- Desvauxm-st
|
2022-07-20 20:09:02 +02:00
|
|
|
- GeorgeCGV
|
|
|
|
files:
|
|
|
|
- boards/arm/nucleo_*/
|
|
|
|
- boards/arm/stm32*_disco/
|
|
|
|
- boards/arm/stm32*_dk*/
|
|
|
|
- boards/arm/stm32*_eval/
|
|
|
|
- drivers/*/*stm32*/
|
|
|
|
- drivers/*/*stm32*.c
|
|
|
|
- drivers/*/*stm32*.h
|
|
|
|
- drivers/*/*/*stm32*
|
|
|
|
- dts/arm/st/
|
|
|
|
- dts/bindings/*/*stm32*
|
|
|
|
- soc/arm/st_stm32/
|
2023-02-24 12:28:57 +01:00
|
|
|
- samples/boards/stm32/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "platform: STM32"
|
|
|
|
description: >-
|
|
|
|
STM32 SOCs, dts files and related drivers. ST nucleo, disco and eval
|
|
|
|
boards.
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2021-03-12 14:12:31 +01:00
|
|
|
Espressif Platforms:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- sylvioalves
|
2022-07-14 05:06:19 +02:00
|
|
|
collaborators:
|
|
|
|
- LucasTambor
|
2022-10-26 14:22:57 +02:00
|
|
|
- marekmatej
|
2022-11-30 12:15:18 +01:00
|
|
|
- uLipe
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- drivers/*/*esp32*.c
|
|
|
|
- boards/xtensa/esp32*/
|
2023-07-25 19:52:54 +02:00
|
|
|
- soc/xtensa/espressif_esp32*/
|
2022-07-20 20:09:02 +02:00
|
|
|
- boards/riscv/esp32*/
|
2023-07-25 19:52:54 +02:00
|
|
|
- soc/riscv/espressif_esp32*/
|
2022-07-20 20:09:02 +02:00
|
|
|
- dts/xtensa/espressif/
|
|
|
|
- dts/riscv/espressif/
|
|
|
|
- dts/bindings/*/*esp32*
|
|
|
|
- samples/boards/esp32*/
|
2022-07-25 15:25:56 +02:00
|
|
|
- tests/boards/espressif_esp32/
|
2023-02-09 17:25:40 +01:00
|
|
|
- drivers/wifi/esp32/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "platform: ESP32"
|
2021-03-12 14:12:31 +01:00
|
|
|
|
2021-05-14 04:25:55 +02:00
|
|
|
ITE Platforms:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- Dino-Li
|
|
|
|
- GTLin08
|
|
|
|
- RuibinChang
|
|
|
|
collaborators:
|
|
|
|
- jackrosenthal
|
|
|
|
- keith-zephyr
|
|
|
|
- brockus-zephyr
|
|
|
|
- sjg20
|
|
|
|
files:
|
2023-06-26 14:48:29 +02:00
|
|
|
- boards/riscv/it8*_evb/
|
2022-07-20 20:09:02 +02:00
|
|
|
- drivers/*/*/*it8xxx2*.c
|
|
|
|
- drivers/*/*it8xxx2*.c
|
|
|
|
- dts/bindings/*/*ite*
|
|
|
|
- dts/riscv/ite/
|
|
|
|
- soc/riscv/riscv-ite/
|
|
|
|
labels:
|
|
|
|
- "platform: ITE"
|
2021-05-14 04:25:55 +02:00
|
|
|
|
2023-02-01 20:23:31 +01:00
|
|
|
TI SimpleLink Platforms:
|
2023-02-01 17:02:37 +01:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- vaishnavachath
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
|
|
|
- vanti
|
|
|
|
- cfriedt
|
|
|
|
files:
|
|
|
|
- boards/arm/cc13*/
|
|
|
|
- boards/arm/cc26*/
|
|
|
|
- boards/arm/cc32*/
|
|
|
|
- boards/*/msp*/
|
2023-07-25 20:14:53 +02:00
|
|
|
- drivers/*/*cc13*
|
|
|
|
- drivers/*/*cc25*
|
|
|
|
- drivers/*/*cc26*
|
|
|
|
- drivers/*/*cc32*
|
2023-02-01 20:23:31 +01:00
|
|
|
- dts/arm/ti/
|
2022-07-20 20:09:02 +02:00
|
|
|
- dts/bindings/*/ti,*
|
|
|
|
- soc/arm/ti*/
|
2023-02-14 17:13:15 +01:00
|
|
|
- dts/bindings/*/ti,*
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
2023-02-01 20:23:31 +01:00
|
|
|
- "platform: TI SimpleLink"
|
|
|
|
|
2023-07-21 05:13:38 +02:00
|
|
|
TI K3 Platforms:
|
2023-02-01 20:23:31 +01:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- vaishnavachath
|
|
|
|
collaborators:
|
|
|
|
- gramsay0
|
|
|
|
files:
|
2023-07-21 05:40:57 +02:00
|
|
|
- boards/*/*phycore_am6*/
|
2023-08-05 17:04:53 +02:00
|
|
|
- boards/*/am6*/
|
2023-07-25 20:14:53 +02:00
|
|
|
- drivers/*/*ti_k3*
|
2023-07-21 05:40:57 +02:00
|
|
|
- dts/bindings/*/ti,k3*
|
|
|
|
- soc/*/ti_k3/
|
2023-02-01 20:23:31 +01:00
|
|
|
labels:
|
2023-07-21 05:13:38 +02:00
|
|
|
- "platform: TI K3"
|
2022-04-05 13:50:21 +02:00
|
|
|
|
2022-05-30 14:53:12 +02:00
|
|
|
Xilinx Platforms:
|
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- henrikbrixandersen
|
|
|
|
- ibirnbaum
|
|
|
|
files:
|
|
|
|
- drivers/*/*xlnx*
|
|
|
|
- dts/*/xilinx/
|
|
|
|
- dts/bindings/*/*xlnx*
|
|
|
|
- include/zephyr/*/*/*xlnx*
|
|
|
|
- soc/arm/xilinx*/
|
|
|
|
labels:
|
|
|
|
- "platform: Xilinx"
|
2023-03-07 20:25:03 +01:00
|
|
|
|
|
|
|
Infineon Platforms:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- ifyall
|
|
|
|
collaborators:
|
|
|
|
- npal-cy
|
|
|
|
- talih0
|
|
|
|
files:
|
|
|
|
- boards/arm/cy8ckit_*/
|
|
|
|
- boards/arm/cy8cproto_*/
|
|
|
|
- boards/arm/xmc*_relax*/
|
|
|
|
- drivers/*/*ifx_cat1*
|
|
|
|
- drivers/*/*xmc*/
|
|
|
|
- drivers/*/*xmc*.c
|
|
|
|
- drivers/*/*/*xmc*
|
|
|
|
- dts/arm/infineon/
|
|
|
|
- dts/bindings/*/*infineon*
|
|
|
|
- soc/arm/infineon_*/
|
|
|
|
labels:
|
|
|
|
- "platform: Infineon"
|
|
|
|
description: >-
|
|
|
|
Infineon SOCs, dts files and related drivers. Infineon Proto, Pioneer, Eval and Relax
|
|
|
|
boards.
|
2022-05-30 14:53:12 +02:00
|
|
|
|
2022-07-25 15:13:31 +02:00
|
|
|
RTIO:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- teburd
|
2023-04-11 00:17:57 +02:00
|
|
|
collaborators:
|
|
|
|
- yperess
|
2022-07-25 15:13:31 +02:00
|
|
|
files:
|
|
|
|
- samples/subsys/rtio/
|
|
|
|
- include/zephyr/rtio/
|
|
|
|
- tests/subsys/rtio/
|
|
|
|
- subsys/rtio/
|
|
|
|
- doc/services/rtio/
|
|
|
|
labels:
|
|
|
|
- "area: RTIO"
|
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
Storage:
|
2022-10-18 11:56:28 +02:00
|
|
|
status: odd fixes
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- subsys/storage/
|
|
|
|
- include/zephyr/storage/
|
|
|
|
- tests/subsys/storage/
|
2023-02-15 13:30:27 +01:00
|
|
|
- doc/services/storage/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Storage"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2023-03-08 10:53:11 +01:00
|
|
|
Sysbuild:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- tejlmand
|
|
|
|
collaborators:
|
|
|
|
- nordicjm
|
2023-08-16 16:22:11 +02:00
|
|
|
- "57300"
|
2023-03-08 10:53:11 +01:00
|
|
|
files:
|
|
|
|
- share/sysbuild/
|
|
|
|
- samples/application_development/sysbuild/
|
|
|
|
- doc/build/sysbuild/
|
|
|
|
labels:
|
|
|
|
- "area: Sysbuild"
|
|
|
|
|
2021-11-08 14:00:49 +01:00
|
|
|
Task Watchdog:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- martinjaeger
|
|
|
|
files:
|
|
|
|
- include/zephyr/task_wdt/
|
|
|
|
- samples/subsys/task_wdt/
|
|
|
|
- subsys/task_wdt/
|
2023-02-24 10:26:15 +01:00
|
|
|
- doc/services/task_wdt/index.rst
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Task Watchdog"
|
2021-11-08 14:00:49 +01:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
TF-M Integration:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2023-07-07 15:46:21 +02:00
|
|
|
- d3zd3z
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
|
|
|
- joerchan
|
|
|
|
files:
|
|
|
|
- samples/tfm_integration/
|
|
|
|
- modules/trusted-firmware-m/
|
2023-02-24 10:26:15 +01:00
|
|
|
- doc/services/tfm/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: TF-M"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2022-04-27 19:37:32 +02:00
|
|
|
Toolchain Integration:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- tejlmand
|
|
|
|
collaborators:
|
|
|
|
- stephanosio
|
|
|
|
files:
|
|
|
|
- cmake/bintools/
|
|
|
|
- cmake/compiler/
|
|
|
|
- cmake/linker/
|
|
|
|
- cmake/toolchain/
|
|
|
|
labels:
|
|
|
|
- "area: Toolchains"
|
2022-04-27 19:37:32 +02:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
Tracing:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- nashif
|
|
|
|
collaborators:
|
|
|
|
- teburd
|
|
|
|
files:
|
|
|
|
- subsys/tracing/
|
|
|
|
- include/zephyr/tracing/
|
|
|
|
- subsys/timing/
|
|
|
|
- samples/subsys/tracing/
|
|
|
|
- doc/services/tracing/
|
|
|
|
- tests/subsys/tracing/
|
|
|
|
labels:
|
|
|
|
- "area: tracing"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
USB:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- jfischer-no
|
2022-10-18 13:18:37 +02:00
|
|
|
collaborators:
|
2023-01-26 11:01:37 +01:00
|
|
|
- tmon-nordic
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- drivers/usb/
|
|
|
|
- dts/bindings/usb/
|
|
|
|
- include/zephyr/*/usb/
|
|
|
|
- include/zephyr/usb/
|
|
|
|
- samples/subsys/usb/
|
|
|
|
- subsys/usb/
|
|
|
|
- tests/subsys/usb/
|
2021-09-07 18:15:51 +02:00
|
|
|
- tests/drivers/udc/
|
2023-06-07 13:42:50 +02:00
|
|
|
- doc/connectivity/usb/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: USB"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2022-08-30 16:50:58 +02:00
|
|
|
USB-C:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- sambhurst
|
|
|
|
collaborators:
|
|
|
|
- keith-zephyr
|
|
|
|
files:
|
|
|
|
- drivers/usb_c/
|
|
|
|
- dts/bindings/usb-c/
|
|
|
|
- include/zephyr/*/usb_c/
|
|
|
|
- include/zephyr/usb_c/
|
|
|
|
- samples/subsys/usb_c/
|
|
|
|
- subsys/usb/usb_c/
|
2023-06-14 18:18:15 +02:00
|
|
|
- doc/connectivity/usb/pd/
|
2022-08-30 16:50:58 +02:00
|
|
|
labels:
|
|
|
|
- "area: USB-C"
|
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
Userspace:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- dcpleung
|
|
|
|
collaborators:
|
2023-01-04 15:55:24 +01:00
|
|
|
- ceolin
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- doc/kernel/usermode/kernelobjects.rst
|
|
|
|
- include/zephyr/app_memory/
|
|
|
|
- include/zephyr/linker/app_smem*.ld
|
|
|
|
- tests/kernel/mem_protect/
|
|
|
|
- samples/userspace/
|
|
|
|
- include/zephyr/syscall.h
|
|
|
|
- kernel/userspace*
|
|
|
|
- scripts/build/gen_app_partitions.py
|
|
|
|
- scripts/build/gen_kobject_list.py
|
|
|
|
- scripts/build/gen_syscalls.py
|
|
|
|
- scripts/build/process_gperf.py
|
|
|
|
- scripts/build/gen_relocate_app.py
|
|
|
|
- include/zephyr/sys/kobject.h
|
|
|
|
labels:
|
|
|
|
- "area: Userspace"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
VFS:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- de-nordic
|
|
|
|
files:
|
|
|
|
- subsys/fs/fat_fs.c
|
|
|
|
- tests/subsys/fs/fat_fs_api/
|
|
|
|
description: >-
|
|
|
|
VFS implementation
|
|
|
|
|
|
|
|
labels:
|
|
|
|
- "area: File System"
|
2020-12-07 15:55:15 +01:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
West:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2023-07-28 22:41:14 +02:00
|
|
|
- mbolivar-ampere
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
|
|
|
- carlescufi
|
|
|
|
- swinslow
|
|
|
|
files:
|
|
|
|
- scripts/west-commands.yml
|
|
|
|
- scripts/west_commands/
|
|
|
|
- doc/develop/west/
|
|
|
|
labels:
|
|
|
|
- "area: West"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2023-08-15 13:51:13 +02:00
|
|
|
"West project: acpica":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- najumon1980
|
|
|
|
files:
|
|
|
|
- modules/acpica/
|
|
|
|
labels:
|
|
|
|
- manifest-acpica
|
|
|
|
|
2022-04-08 18:25:49 +02:00
|
|
|
"West project: canopennode":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- henrikbrixandersen
|
|
|
|
files:
|
|
|
|
- modules/canopennode/
|
|
|
|
labels:
|
|
|
|
- "area: CAN"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
2023-01-25 20:05:14 +01:00
|
|
|
"West project: chre":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- yperess
|
|
|
|
files:
|
|
|
|
- samples/modules/chre/
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: CHRE"
|
2023-01-25 20:05:14 +01:00
|
|
|
|
2022-04-08 18:25:49 +02:00
|
|
|
"West project: cmsis":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- stephanosio
|
|
|
|
collaborators:
|
|
|
|
- microbuilder
|
|
|
|
- povergoing
|
|
|
|
files:
|
2023-06-29 16:30:05 +02:00
|
|
|
- modules/cmsis/Kconfig
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: ARM"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
2023-04-16 02:26:09 +02:00
|
|
|
"West project: cmsis-dsp":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- XenuIsWatching
|
|
|
|
collaborators:
|
|
|
|
- stephanosio
|
|
|
|
files:
|
2023-09-26 20:49:04 +02:00
|
|
|
- modules/cmsis-dsp/
|
2023-04-16 02:26:09 +02:00
|
|
|
labels:
|
|
|
|
- "area: ARM"
|
|
|
|
|
2023-04-19 21:58:43 +02:00
|
|
|
"West project: cmsis-nn":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- XenuIsWatching
|
|
|
|
collaborators:
|
|
|
|
- stephanosio
|
|
|
|
files:
|
2023-09-26 20:49:04 +02:00
|
|
|
- modules/cmsis-nn/
|
2023-04-19 21:58:43 +02:00
|
|
|
labels:
|
|
|
|
- "area: ARM"
|
|
|
|
|
2022-04-08 18:25:49 +02:00
|
|
|
"West project: edtt":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- aescolar
|
|
|
|
collaborators:
|
|
|
|
- wopu-ot
|
|
|
|
- thoh-ot
|
|
|
|
files: []
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Tests"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: fatfs":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- de-nordic
|
2023-02-15 13:30:27 +01:00
|
|
|
files:
|
|
|
|
- modules/fatfs/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Storage"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: hal_altera":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- nashif
|
|
|
|
files:
|
|
|
|
- modules/Kconfig.altera
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: Altera"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
2023-06-20 14:28:46 +02:00
|
|
|
"West project: hal_ambiq":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- fkokosinski
|
|
|
|
collaborators:
|
|
|
|
- tgorochowik
|
|
|
|
- msobkowski
|
|
|
|
files: []
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: Ambiq"
|
2023-06-20 14:28:46 +02:00
|
|
|
|
2022-04-08 18:25:49 +02:00
|
|
|
"West project: hal_atmel":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- nandojve
|
2023-03-16 16:36:21 +01:00
|
|
|
collaborators:
|
|
|
|
- pdgendt
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- modules/Kconfig.atmel
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: Microchip SAM"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: hal_cypress":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- ifyall
|
|
|
|
collaborators:
|
|
|
|
- nashif
|
2023-02-08 17:47:13 +01:00
|
|
|
- npal-cy
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- modules/Kconfig.cypress
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: Infineon"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: hal_espressif":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- sylvioalves
|
2022-07-14 05:06:19 +02:00
|
|
|
collaborators:
|
|
|
|
- LucasTambor
|
2023-09-12 14:40:59 +02:00
|
|
|
- marekmatej
|
2022-07-20 20:09:02 +02:00
|
|
|
files: []
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: ESP32"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
2023-08-15 13:51:13 +02:00
|
|
|
"West project: hal_ethos_u":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- kristofer-jonsson-arm
|
|
|
|
files:
|
2023-09-14 17:53:02 +02:00
|
|
|
- drivers/misc/ethos_u/
|
2023-08-15 13:51:13 +02:00
|
|
|
- modules/hal_ethos_u/
|
|
|
|
labels:
|
|
|
|
- manifest-hal_ethos_u
|
|
|
|
|
2022-04-08 18:25:49 +02:00
|
|
|
"West project: hal_gigadevice":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- nandojve
|
|
|
|
collaborators:
|
2022-10-26 10:10:02 +02:00
|
|
|
- gmarull
|
2022-07-20 20:09:02 +02:00
|
|
|
- soburi
|
|
|
|
files:
|
|
|
|
- modules/hal_gigadevice/
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: GD32"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: hal_infineon":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- ifyall
|
|
|
|
collaborators:
|
|
|
|
- parthitce
|
2022-10-18 06:21:45 +02:00
|
|
|
- talih0
|
2023-02-08 17:47:13 +01:00
|
|
|
- npal-cy
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- modules/Kconfig.infineon
|
2023-02-15 13:30:27 +01:00
|
|
|
- modules/hal_infineon/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: Infineon"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: hal_microchip":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- jvasanth1
|
|
|
|
collaborators:
|
|
|
|
- VenkatKotakonda
|
|
|
|
- albertofloyd
|
|
|
|
files:
|
|
|
|
- modules/Kconfig.microchip
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: Microchip SAM"
|
|
|
|
- "platform: Microchip MEC"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: hal_nordic":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- anangl
|
|
|
|
collaborators:
|
|
|
|
- hubertmis
|
|
|
|
- nordic-krch
|
|
|
|
files:
|
|
|
|
- modules/hal_nordic/
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: nRF"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: hal_nuvoton":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2022-09-01 12:58:23 +02:00
|
|
|
- ssekar15
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- modules/Kconfig.nuvoton
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: Nuvoton"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: hal_nxp":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- dleach02
|
|
|
|
collaborators:
|
|
|
|
- mmahadevan108
|
|
|
|
- danieldegrasse
|
2023-07-17 21:29:06 +02:00
|
|
|
- manuargue
|
2023-08-09 02:36:56 +02:00
|
|
|
- PetervdPerk-NXP
|
|
|
|
- bperseghetti
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- modules/hal_nxp/
|
|
|
|
- modules/Kconfig.imx
|
|
|
|
- modules/Kconfig.mcux
|
2023-08-06 07:46:58 +02:00
|
|
|
- modules/Kconfig.nxp_s32
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: NXP"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: hal_openisa":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- dleach02
|
|
|
|
files:
|
|
|
|
- modules/Kconfig.vega
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: openisa/RV32M1"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: hal_quicklogic":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
2022-08-09 09:59:23 +02:00
|
|
|
- fkokosinski
|
2022-07-20 20:09:02 +02:00
|
|
|
files: []
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: Quicklogic"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
2022-09-20 16:55:29 +02:00
|
|
|
"West project: hal_renesas":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- andrzej-kaczmarek
|
|
|
|
files: []
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: Renesas"
|
2022-09-20 16:55:29 +02:00
|
|
|
|
2022-04-08 18:25:49 +02:00
|
|
|
"West project: hal_rpi_pico":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- yonsch
|
|
|
|
files:
|
|
|
|
- modules/hal_rpi_pico/
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: Raspberry Pi Pico"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: hal_silabs":
|
2022-09-28 15:24:04 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- fkokosinski
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
2022-09-28 15:24:04 +02:00
|
|
|
- sateeshkotapati
|
2022-07-20 20:09:02 +02:00
|
|
|
- yonsch
|
|
|
|
- mnkp
|
|
|
|
files:
|
|
|
|
- modules/Kconfig.silabs
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: SiLabs"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: hal_st":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- avisconti
|
|
|
|
collaborators:
|
|
|
|
- erwango
|
|
|
|
files:
|
|
|
|
- modules/Kconfig.st
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Sensors"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: hal_stm32":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- erwango
|
|
|
|
collaborators:
|
|
|
|
- FRASTM
|
|
|
|
- ABOSTM
|
2023-02-22 13:55:41 +01:00
|
|
|
- gautierg-st
|
|
|
|
- Desvauxm-st
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- modules/Kconfig.stm32
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: STM32"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: hal_telink":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- andy-liu-telink
|
|
|
|
files:
|
|
|
|
- modules/Kconfig.telink
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: Telink"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: hal_ti":
|
2023-07-07 19:00:08 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- vaishnavachath
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
|
|
|
- cfriedt
|
|
|
|
files: []
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: TI"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
2022-09-20 16:59:34 +02:00
|
|
|
"West project: hal_wurthelektronik":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- mah-eiSmart
|
|
|
|
files:
|
|
|
|
- modules/Kconfig.wurthelektronik
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Sensors"
|
2022-09-20 16:59:34 +02:00
|
|
|
|
2022-04-08 18:25:49 +02:00
|
|
|
"West project: hal_xtensa":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- dcpleung
|
|
|
|
collaborators:
|
|
|
|
- andyross
|
|
|
|
- nashif
|
|
|
|
files:
|
|
|
|
- modules/Kconfig.xtensa
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Xtensa"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
2023-08-03 13:08:47 +02:00
|
|
|
"West project: hal_intel":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- kwd-doodling
|
|
|
|
collaborators:
|
|
|
|
- teburd
|
|
|
|
- likongintel
|
|
|
|
files:
|
|
|
|
- modules/Kconfig.intel
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "platform: Intel"
|
2023-08-03 13:08:47 +02:00
|
|
|
|
2022-04-08 18:25:49 +02:00
|
|
|
"West project: libmetal":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- carlocaione
|
|
|
|
- arnopo
|
|
|
|
files:
|
|
|
|
- modules/Kconfig.libmetal
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: AMP"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
2022-08-22 14:48:27 +02:00
|
|
|
"West project: liblc3":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- Casper-Bonde-Bose
|
2022-08-19 13:10:17 +02:00
|
|
|
- MariuszSkamra
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
|
|
|
- thalley
|
|
|
|
- asbjornsabo
|
|
|
|
files:
|
2022-08-22 14:48:27 +02:00
|
|
|
- modules/liblc3/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Audio"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: littlefs":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
files:
|
|
|
|
- modules/littlefs/
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Storage"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: loramac-node":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- Mani-Sadhasivam
|
|
|
|
files:
|
|
|
|
- modules/loramac-node/
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: LoRa"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: lvgl":
|
2023-08-18 11:22:40 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- faxe1008
|
2023-01-02 08:56:08 +01:00
|
|
|
collaborators:
|
2022-07-20 20:09:02 +02:00
|
|
|
- brgl
|
2023-02-01 08:59:46 +01:00
|
|
|
- pdgendt
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
2023-07-28 15:46:31 +02:00
|
|
|
- modules/lvgl/
|
2023-02-20 16:40:53 +01:00
|
|
|
- tests/lib/gui/lvgl/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: LVGL"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: lz4":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- Navin-Sankar
|
|
|
|
files:
|
|
|
|
- modules/lz4/
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Compression"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: mbedtls":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- d3zd3z
|
|
|
|
- ceolin
|
|
|
|
files:
|
|
|
|
- modules/mbedtls/
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Crypto / RNG"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: mcuboot":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- d3zd3z
|
2022-10-18 11:56:28 +02:00
|
|
|
collaborators:
|
|
|
|
- de-nordic
|
|
|
|
- nordicjm
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
2023-05-19 09:05:23 +02:00
|
|
|
- modules/Kconfig.mcuboot
|
2023-02-24 12:28:57 +01:00
|
|
|
- tests/boot/test_mcuboot/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: MCUBoot"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: mipi-sys-t":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- dcpleung
|
|
|
|
files:
|
|
|
|
- modules/Kconfig.syst
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Tracing"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: nanopb":
|
2023-09-14 21:11:54 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2022-07-20 20:09:02 +02:00
|
|
|
- pdgendt
|
|
|
|
files:
|
|
|
|
- modules/nanopb/
|
2023-02-15 13:30:27 +01:00
|
|
|
- samples/modules/nanopb/
|
2023-09-14 21:11:54 +02:00
|
|
|
- tests/modules/nanopb/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Serialization"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: net-tools":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
maintainers:
|
|
|
|
- jukkar
|
2023-08-23 14:12:44 +02:00
|
|
|
collaborators:
|
|
|
|
- rlubos
|
2022-07-20 20:09:02 +02:00
|
|
|
files: []
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Networking"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: nrf_hw_models":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- aescolar
|
|
|
|
collaborators:
|
|
|
|
- wopu-ot
|
|
|
|
- thoh-ot
|
|
|
|
files: []
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: native port"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: open-amp":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- carlocaione
|
|
|
|
files:
|
|
|
|
- modules/Kconfig.open-amp
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: AMP"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: openthread":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- rlubos
|
|
|
|
collaborators:
|
|
|
|
- pdgendt
|
2023-03-29 12:44:24 +02:00
|
|
|
- canisLupus1313
|
|
|
|
- mariuszpos
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- modules/openthread/
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: OpenThread"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
2023-09-07 10:08:56 +02:00
|
|
|
"West project: percepio":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- eriktamlin
|
|
|
|
- aronlander-pe
|
|
|
|
files:
|
|
|
|
- modules/percepio/
|
|
|
|
labels:
|
|
|
|
- "area: Tracing"
|
|
|
|
|
2022-06-22 13:22:37 +02:00
|
|
|
"West project: picolibc":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- keith-packard
|
|
|
|
collaborators:
|
|
|
|
- stephanosio
|
|
|
|
files: []
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: C Library"
|
|
|
|
- "area: picolibc"
|
2022-06-22 13:22:37 +02:00
|
|
|
|
2022-04-08 18:25:49 +02:00
|
|
|
"West project: segger":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- nordic-krch
|
2023-02-15 13:30:27 +01:00
|
|
|
files:
|
|
|
|
- modules/segger/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Debugging"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: sof":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2022-07-22 13:45:02 +02:00
|
|
|
- kv2019i
|
|
|
|
collaborators:
|
2022-07-20 20:09:02 +02:00
|
|
|
- andyross
|
|
|
|
- nashif
|
2022-07-22 13:45:02 +02:00
|
|
|
- lyakh
|
|
|
|
- lgirdwood
|
|
|
|
- marc-hb
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- modules/Kconfig.sof
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Audio"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: tflite-micro":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- laurenmurphyx64
|
|
|
|
files:
|
|
|
|
- modules/tflite-micro/
|
2022-07-25 15:25:56 +02:00
|
|
|
- samples/modules/tflite-micro/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Neural Networks"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
2023-01-26 14:40:36 +01:00
|
|
|
"West project: thrift":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- cfriedt
|
|
|
|
files:
|
2023-02-15 13:30:27 +01:00
|
|
|
- modules/thrift/
|
2023-01-26 14:40:36 +01:00
|
|
|
- samples/modules/thrift/
|
|
|
|
- tests/lib/thrift/
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Thrift"
|
|
|
|
- "area: Serialization"
|
2023-01-26 14:40:36 +01:00
|
|
|
|
2022-04-08 18:25:49 +02:00
|
|
|
"West project: tinycrypt":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
files:
|
|
|
|
- modules/Kconfig.tinycrypt
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Crypto / RNG"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: trusted-firmware-m":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2023-07-07 15:46:21 +02:00
|
|
|
- d3zd3z
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
|
|
|
- joerchan
|
|
|
|
- SebastianBoe
|
|
|
|
files:
|
|
|
|
- modules/trusted-firmware-m/
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: TF-M"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: tf-m-tests":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2023-07-07 15:46:21 +02:00
|
|
|
- d3zd3z
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
|
|
|
- joerchan
|
|
|
|
- SebastianBoe
|
|
|
|
files: []
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: TF-M"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
2022-07-08 04:32:56 +02:00
|
|
|
"West project: trusted-firmware-a":
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- povergoing
|
|
|
|
- sgrrzhf
|
|
|
|
collaborators:
|
|
|
|
- carlocaione
|
|
|
|
files:
|
|
|
|
- modules/trusted-firmware-a/
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: TF-A"
|
2022-07-08 04:32:56 +02:00
|
|
|
|
2022-04-08 18:25:49 +02:00
|
|
|
"West project: psa-arch-tests":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2023-07-07 15:46:21 +02:00
|
|
|
- d3zd3z
|
2022-07-20 20:09:02 +02:00
|
|
|
collaborators:
|
|
|
|
- joerchan
|
|
|
|
- SebastianBoe
|
|
|
|
files: []
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: TF-M"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
2022-07-07 16:41:48 +02:00
|
|
|
"West project: uoscore-uedhoc":
|
2023-01-03 20:24:04 +01:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- rlubos
|
|
|
|
- StefanHri
|
|
|
|
files:
|
|
|
|
- modules/uoscore-uedhoc/
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Networking"
|
|
|
|
- "area: Crypto / RNG"
|
2022-07-07 16:41:48 +02:00
|
|
|
|
2022-04-08 18:25:49 +02:00
|
|
|
"West project: zcbor":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- de-nordic
|
|
|
|
files:
|
|
|
|
- modules/zcbor/
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: CBOR"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
|
|
|
"West project: zscilib":
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- microbuilder
|
|
|
|
files: []
|
|
|
|
labels:
|
2023-08-28 14:25:54 +02:00
|
|
|
- "area: Sensors"
|
2022-04-08 18:25:49 +02:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
Xtensa arch:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- dcpleung
|
|
|
|
collaborators:
|
|
|
|
- andyross
|
|
|
|
- nashif
|
2023-09-12 19:41:00 +02:00
|
|
|
- ceolin
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- arch/xtensa/
|
|
|
|
- include/zephyr/arch/xtensa/
|
|
|
|
- dts/xtensa/
|
2023-02-15 13:30:27 +01:00
|
|
|
- boards/xtensa/qemu_xtensa/
|
|
|
|
- boards/xtensa/xt-sim/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Xtensa"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
|
|
|
x86 arch:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- jhedberg
|
|
|
|
collaborators:
|
2022-12-02 11:58:05 +01:00
|
|
|
- tbursztyka
|
2022-07-20 20:09:02 +02:00
|
|
|
- andyross
|
|
|
|
- nashif
|
|
|
|
- dcpleung
|
|
|
|
- ceolin
|
|
|
|
- laurenmurphyx64
|
|
|
|
files:
|
|
|
|
- arch/x86/
|
|
|
|
- include/zephyr/arch/x86/
|
|
|
|
- tests/arch/x86/
|
|
|
|
- drivers/interrupt_controller/*intel*
|
|
|
|
- drivers/interrupt_controller/*ioapic*
|
|
|
|
- drivers/interrupt_controller/*loapic*
|
2023-02-15 13:30:27 +01:00
|
|
|
- doc/hardware/arch/x86.rst
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: X86"
|
2020-04-07 15:34:09 +02:00
|
|
|
|
2022-02-28 16:33:21 +01:00
|
|
|
Continuous Integration:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
2023-02-02 13:36:59 +01:00
|
|
|
- stephanosio
|
2022-07-20 20:09:02 +02:00
|
|
|
- nashif
|
|
|
|
- galak
|
|
|
|
files:
|
|
|
|
- .github/
|
|
|
|
- scripts/ci/
|
|
|
|
- .checkpatch.conf
|
|
|
|
- scripts/gitlint/
|
|
|
|
labels:
|
|
|
|
- "area: Continuous Integration"
|
2020-12-20 05:15:40 +01:00
|
|
|
|
2020-04-07 15:34:09 +02:00
|
|
|
ZTest:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- nashif
|
|
|
|
collaborators:
|
|
|
|
- aaronemassey
|
|
|
|
- jeremybettis
|
|
|
|
- yperess
|
2022-08-10 17:21:46 +02:00
|
|
|
- asemjonovs
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- subsys/testsuite/
|
|
|
|
- tests/ztest/
|
|
|
|
- tests/unit/util/
|
2022-07-25 15:25:56 +02:00
|
|
|
- samples/subsys/testsuite/
|
2023-02-24 10:26:15 +01:00
|
|
|
- doc/develop/test/ztest.rst
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: Testsuite"
|
2022-03-10 05:54:04 +01:00
|
|
|
|
2022-07-13 18:59:53 +02:00
|
|
|
Emulation:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- yperess
|
|
|
|
collaborators:
|
|
|
|
- aaronemassey
|
|
|
|
- jeremybettis
|
|
|
|
- alevkoy
|
2022-08-10 17:21:46 +02:00
|
|
|
- asemjonovs
|
2023-08-04 19:30:54 +02:00
|
|
|
- tristan-google
|
2022-07-20 20:09:02 +02:00
|
|
|
files:
|
|
|
|
- subsys/emul/
|
|
|
|
- include/zephyr/drivers/emul.h
|
|
|
|
- include/zephyr/drivers/espi_emul.h
|
|
|
|
- include/zephyr/drivers/i2c_emul.h
|
|
|
|
- include/zephyr/drivers/spi_emul.h
|
2023-02-15 13:30:27 +01:00
|
|
|
- tests/subsys/emul/
|
|
|
|
- doc/hardware/emulator/
|
2022-07-20 20:09:02 +02:00
|
|
|
labels:
|
|
|
|
- "area: HW Emulation"
|
2022-07-13 18:59:53 +02:00
|
|
|
|
2022-03-10 05:54:04 +01:00
|
|
|
Random:
|
2022-07-20 20:09:02 +02:00
|
|
|
status: odd fixes
|
|
|
|
collaborators:
|
|
|
|
- ceolin
|
|
|
|
files:
|
|
|
|
- subsys/random/
|
|
|
|
- include/zephyr/random/
|
|
|
|
labels:
|
|
|
|
- "area: Random"
|
2022-08-09 10:00:12 +02:00
|
|
|
|
|
|
|
# This area is to be converted to a subarea
|
|
|
|
Testing with Renode:
|
|
|
|
status: maintained
|
|
|
|
collaborators:
|
|
|
|
- mateusz-holenko
|
|
|
|
- fkokosinski
|
|
|
|
files:
|
|
|
|
- cmake/emu/renode.cmake
|
|
|
|
- boards/*/*/support/*.repl
|
|
|
|
- boards/*/*/support/*.resc
|
|
|
|
labels:
|
|
|
|
- "area: Renode"
|
2023-01-31 20:02:06 +01:00
|
|
|
|
|
|
|
zbus:
|
|
|
|
status: maintained
|
|
|
|
maintainers:
|
|
|
|
- rodrigopex
|
|
|
|
files:
|
|
|
|
- samples/subsys/zbus/
|
|
|
|
- include/zephyr/zbus/
|
|
|
|
- tests/subsys/zbus/
|
|
|
|
- subsys/zbus/
|
|
|
|
- doc/services/zbus/
|
|
|
|
labels:
|
|
|
|
- "area: zbus"
|