1 Star 0 Fork 40

yajun/zephyr

forked from Zephyr RTOS/zephyr 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
MAINTAINERS.yml 52.06 KB
一键复制 编辑 原始数据 按行查看 历史
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805
# 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.
#
# * odd fixes:
# The area gets odd fixes and may have collaborators.
#
# * 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:
status: maintained
maintainers:
- ruuddw
collaborators:
- abrodkin
- evgeniy-paltsev
- IRISZZW
files:
- arch/arc/
- include/zephyr/arch/arc/
labels:
- "area: ARC"
ARM arch:
status: maintained
maintainers:
- microbuilder
collaborators:
- carlocaione
- galak
- MaureenHelm
- stephanosio
- bbolen
- povergoing
files:
- arch/arm/
- arch/arm/core/offsets/
- include/zephyr/arch/arm/aarch32/
- include/zephyr/arch/arm/
- tests/arch/arm/
labels:
- "area: ARM"
ARM64 arch:
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"
Bluetooth:
status: maintained
maintainers:
- jhedberg
collaborators:
- hermabe
- jori-nordic
- alwa-nordic
- Vudentz
- Thalley
- asbjornsabo
- sjanc
files:
- doc/connectivity/bluetooth/
- drivers/bluetooth/
- include/zephyr/bluetooth/
- include/zephyr/drivers/bluetooth/
- samples/bluetooth/
- subsys/bluetooth/
- subsys/bluetooth/common/
- subsys/bluetooth/host/
- subsys/bluetooth/services/
- subsys/bluetooth/shell/
- tests/bluetooth/
files-exclude:
- include/zephyr/bluetooth/mesh/
- subsys/bluetooth/controller/
- subsys/bluetooth/mesh/
- samples/bluetooth/mesh/
- subsys/bluetooth/audio/
- include/zephyr/bluetooth/audio/
- tests/bluetooth/bsim_bt/bsim_test_audio/
- tests/bluetooth/controller/
- tests/bluetooth/mesh_*/
- tests/bluetooth/mesh/
- tests/bluetooth/shell/audio*
labels:
- "area: Bluetooth"
Bluetooth controller:
status: maintained
maintainers:
- cvinayak
collaborators:
- carlescufi
- thoh-ot
- kruithofa
- ppryga
- mtpr-ot
- wopu-ot
- erbr-ot
files:
- subsys/bluetooth/controller/
- tests/bluetooth/controller/
labels:
- "area: Bluetooth Controller"
- "area: Bluetooth"
Bluetooth Mesh:
status: maintained
maintainers:
- PavelVPV
collaborators:
- jhedberg
- LingaoM
- alxelax
- Andrewpini
files:
- subsys/bluetooth/mesh/
- include/zephyr/bluetooth/mesh/
- tests/bluetooth/mesh*/
labels:
- "area: Bluetooth Mesh"
- "area: Bluetooth"
Bluetooth Audio:
status: maintained
maintainers:
- Thalley
collaborators:
- Vudentz
- jhedberg
- Casper-Bonde-Bose
- MariuszSkamra
- rymanluk
- sjanc
- asbjornsabo
files:
- subsys/bluetooth/audio/
- include/zephyr/bluetooth/audio/
- tests/bluetooth/bsim_bt/bsim_test_audio/
- tests/bluetooth/shell/audio*
labels:
- "area: Bluetooth Audio"
- "area: Bluetooth"
Build system:
status: maintained
maintainers:
- tejlmand
collaborators:
- jeremybettis
- nashif
files:
- cmake/
- CMakeLists.txt
- scripts/zephyr_module.py
- share/
- doc/build/
- doc/develop/modules.rst
- scripts/build/
labels:
- "area: Build System"
"C++":
status: maintained
maintainers:
- stephanosio
collaborators:
- alexanderwachter
- cfriedt
files:
- subsys/cpp/
- tests/subsys/cpp/
- samples/subsys/cpp/
labels:
- "area: C++"
C library:
status: maintained
maintainers:
- stephanosio
collaborators:
- nashif
- enjiamai
- KangJianX
- keith-packard
- cfriedt
files:
- lib/libc/
- tests/lib/c_lib/
- tests/lib/newlib/
labels:
- "area: C Library"
CMSIS API layer:
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*/
labels:
- "area: CMSIS API Layer"
- "area: Portability"
CMSIS-DSP integration:
status: maintained
maintainers:
- stephanosio
collaborators:
- galak
files:
- modules/Kconfig.cmsis_dsp
- tests/benchmarks/cmsis_dsp/
- tests/lib/cmsis_dsp/
labels:
- "area: CMSIS-DSP"
CMSIS-NN integration:
status: maintained
maintainers:
- JordanYates
collaborators:
- stephanosio
files:
- modules/Kconfig.cmsis_nn
- tests/lib/cmsis_nn/
labels:
- "area: CMSIS-NN"
Common Architecture Interface:
status: odd fixes
collaborators:
- dcpleung
- nashif
files:
- arch/common/
- include/zephyr/arch/common/
labels:
- "area: Architectures"
Console:
status: maintained
maintainers:
- pfalcon
files:
- include/zephyr/console/
- subsys/console/
labels:
- "area: Console"
Debug:
status: maintained
maintainers:
- nashif
collaborators:
- dcpleung
- chen-png
- mrkhldn
files:
- include/zephyr/debug/
- subsys/debug/
- tests/subsys/debug/
- scripts/coredump/
- samples/subsys/debug/
labels:
- "area: Debugging"
Device Driver Model:
status: maintained
maintainers:
- tbursztyka
collaborators:
- dcpleung
- nashif
files:
- include/zephyr/device.h
- kernel/device.c
- include/zephyr/init.h
- tests/kernel/device/
- doc/kernel/drivers/
labels:
- "area: Device Model"
DFU:
status: maintained
maintainers:
- nvlsianpu
files:
- include/zephyr/dfu/
- subsys/dfu/
- tests/subsys/dfu/
labels:
- "area: DFU"
Devicetree:
status: maintained
maintainers:
- mbolivar-nordic
- galak
files:
- scripts/dts/
- dts/common/
- tests/lib/devicetree/
- doc/build/dts/
- include/zephyr/devicetree/
- scripts/kconfig/kconfigfunctions.py
labels:
- "area: Devicetree"
Devicetree Bindings:
status: maintained
maintainers:
- galak
files:
- dts/bindings/
labels:
- "area: Devicetree Binding"
Disk:
status: maintained
maintainers:
- danieldegrasse
collaborators:
- jfischer-no
files:
- include/zephyr/storage/disk_access.h
- include/zephyr/drivers/disk.h
- drivers/disk/
- subsys/disk/
- subsys/sd/
- tests/subsys/sd/
- tests/drivers/disk/
labels:
- "area: Disk Access"
Display drivers:
status: odd fixes
collaborators:
- jfischer-no
- gmarull
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"
Documentation:
status: maintained
maintainers:
- carlescufi
collaborators:
- nashif
files:
- doc/contribute/
- doc/develop/
- doc/introduction/
- doc/project/
- doc/releases/
- doc/security/
- README.rst
labels:
- "area: Documentation"
Documentation Infrastructure:
status: maintained
maintainers:
- gmarull
collaborators:
- carlescufi
- nashif
files:
- doc/_*/
- doc/CMakeLists.txt
- doc/conf.py
- doc/Makefile
- doc/zephyr.doxyfile.in
labels:
- "area: Documentation Infrastructure"
Release Notes:
status: maintained
maintainers:
- laurenmurphyx64
- stephanosio
files:
- doc/releases/release-notes-*
labels:
- "Release Notes"
"Drivers: ADC":
status: maintained
maintainers:
- anangl
files:
- drivers/adc/
- include/zephyr/drivers/adc.h
- tests/drivers/adc/
- samples/drivers/adc/
labels:
- "area: ADC"
"Drivers: Audio":
status: odd fixes
collaborators:
- lyakh
- lgirdwood
- mengxianglinx
- marc-hb
- kv2019i
files:
- drivers/audio/
- include/zephyr/audio/
labels:
- "area: Audio"
"Drivers: CAN":
status: maintained
maintainers:
- henrikbrixandersen
collaborators:
- alexanderwachter
- karstenkoenig
- martinjaeger
- str4t0m
files:
- doc/hardware/peripherals/canbus/
- drivers/can/
- drivers/net/canbus.c
- dts/bindings/can/
- include/zephyr/canbus/
- include/zephyr/devicetree/can.h
- include/zephyr/drivers/can.h
- include/zephyr/drivers/can/
- include/zephyr/net/canbus.h
- include/zephyr/net/socketcan.h
- samples/drivers/can/
- samples/modules/canopennode/
- samples/net/sockets/can/
- samples/subsys/canbus/
- subsys/canbus/
- subsys/net/l2/canbus/
- tests/drivers/can/
- tests/net/socket/can/
- tests/subsys/canbus/
labels:
- "area: CAN"
"Drivers: Clock control":
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/
labels:
- "area: Clock control"
"Drivers: Console":
status: odd fixes
collaborators:
- pfalcon
files:
- drivers/console/
- include/zephyr/drivers/console/
- tests/drivers/console/
- samples/subsys/console/
labels:
- "area: Console"
"Drivers: Coredump":
status: maintained
maintainers:
- mrkhldn
files:
- drivers/coredump/
- dts/bindings/coredump/
- include/zephyr/drivers/coredump.h
- tests/drivers/coredump/
labels:
- "area: Coredump"
"Drivers: Counter":
status: maintained
maintainers:
- nordic-krch
files:
- drivers/counter/
- include/zephyr/drivers/counter.h
- tests/drivers/counter/
labels:
- "area: Counter"
"Drivers: Crypto":
status: maintained
maintainers:
- ceolin
files:
- drivers/crypto/
- dts/bindings/crypto/
- include/zephyr/crypto/
- samples/drivers/crypto/
- tests/crypto/
labels:
- "area: Crypto / RNG"
"Drivers: DAC":
status: maintained
maintainers:
- martinjaeger
files:
- drivers/dac/
- include/zephyr/drivers/dac.h
- tests/drivers/dac/
- samples/drivers/dac/
labels:
- "area: DAC"
"Drivers: DAI":
status: maintained
maintainers:
- juimonen
collaborators:
- lgirdwood
- kv2019i
files:
- drivers/dai/
- doc/hardware/peripherals/audio/dai.rst
- include/zephyr/drivers/dai.h
labels:
- "area: DAI"
"Drivers: DMA":
status: maintained
maintainers:
- teburd
files:
- drivers/dma/
- tests/drivers/dma/
labels:
- "area: DMA"
"Drivers: EDAC":
status: maintained
maintainers:
- finikorg
files:
- drivers/edac/
- dts/bindings/edac/
- include/zephyr/drivers/edac.h
- samples/subsys/edac/
- tests/subsys/edac/
labels:
- "area: EDAC"
"Drivers: EEPROM":
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"
"Drivers: Entropy":
status: maintained
maintainers:
- ceolin
files:
- drivers/entropy/
- include/zephyr/drivers/entropy.h
- tests/drivers/entropy/
labels:
- "area: Crypto / RNG"
"Drivers: ESPI":
status: maintained
maintainers:
- albertofloyd
collaborators:
- VenkatKotakonda
- jvasanth1
files:
- drivers/espi/
- include/zephyr/drivers/espi.h
- include/zephyr/dt-bindings/espi/
- samples/drivers/espi/
- dts/bindings/espi/
- doc/hardware/peripherals/espi.rst
labels:
- "area: eSPI"
"Drivers: Ethernet":
status: maintained
maintainers:
- tbursztyka
collaborators:
- pfalcon
files:
- drivers/ethernet/
- include/zephyr/dt-bindings/ethernet/
- tests/drivers/build_all/ethernet/
- dts/bindings/ethernet/
labels:
- "area: Ethernet"
"Drivers: Flash":
status: maintained
maintainers:
- nvlsianpu
files:
- drivers/flash/
- dts/bindings/flash_controller/
- include/zephyr/drivers/flash.h
- samples/drivers/flash_shell/
- tests/drivers/flash/
labels:
- "area: Flash"
"Drivers: GPIO":
status: maintained
maintainers:
- mnkp
collaborators:
- henrikbrixandersen
- cfriedt
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/
labels:
- "area: GPIO"
"Drivers: HW Info":
status: maintained
maintainers:
- alexanderwachter
files:
- drivers/hwinfo/
- dts/bindings/hwinfo/
- include/zephyr/drivers/hwinfo.h
- tests/drivers/hwinfo/
labels:
- "area: HWINFO"
"Drivers: I2C":
status: maintained
maintainers:
- teburd
files:
- drivers/i2c/
- include/zephyr/drivers/i2c/
- dts/bindings/i2c/
- include/zephyr/drivers/i2c.h
- tests/drivers/i2c/
- doc/hardware/peripherals/i2c.rst
labels:
- "area: I2C"
"Drivers: I2S":
status: maintained
maintainers:
- anangl
files:
- doc/hardware/peripherals/audio/i2s.rst
- drivers/i2s/
- dts/bindings/i2s/
- include/zephyr/drivers/i2s.h
- tests/drivers/i2s/
labels:
- "area: I2S"
"Drivers: I3C":
status: maintained
maintainers:
- dcpleung
files:
- drivers/i3c/
- dts/bindings/i3c/
- include/zephyr/drivers/i3c.h
- include/zephyr/drivers/i3c/
labels:
- "area: I3C"
"Drivers: IEEE 802.15.4":
status: maintained
maintainers:
- tbursztyka
collaborators:
- rlubos
- jciupis
files:
- drivers/ieee802154/
labels:
- "area: IEEE 802.15.4"
"Drivers: Interrupt controllers":
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"
"Drivers: IPM":
status: odd fixes
collaborators:
- dcpleung
files:
- drivers/ipm/
- samples/drivers/ipm/
- dts/bindings/ipm/
- tests/drivers/ipm/
- doc/hardware/peripherals/ipm.rst
description: >-
Inter-processor mailboxes
labels:
- "area: IPM"
"Drivers: kscan":
status: maintained
maintainers:
- albertofloyd
collaborators:
- VenkatKotakonda
- gmarull
files:
- drivers/kscan/
- include/zephyr/drivers/kscan.h
- samples/drivers/espi/
- samples/drivers/kscan/
- tests/drivers/kscan/
- tests/drivers/espi/
- dts/bindings/kscan/
- doc/hardware/peripherals/kscan.rst
labels:
- "area: Kscan"
"Drivers: LED":
status: maintained
maintainers:
- Mani-Sadhasivam
collaborators:
- simonguinot
files:
- drivers/led/
- include/zephyr/drivers/led/
- include/zephyr/drivers/led.h
- samples/drivers/led_*/
labels:
- "area: LED"
"Drivers: LED Strip":
status: maintained
maintainers:
- mbolivar-nordic
files:
- drivers/led_strip/
- dts/bindings/led_strip/
- include/zephyr/drivers/led_strip.h
labels:
- "area: LED"
"Drivers: lora":
status: maintained
maintainers:
- Mani-Sadhasivam
collaborators:
- mniestroj
- JordanYates
files:
- drivers/lora/
- include/zephyr/drivers/lora.h
- samples/drivers/lora/
- include/zephyr/lorawan/
- subsys/lorawan/
- samples/subsys/lorawan/
labels:
- "area: LoRa"
"Drivers: Modem":
status: maintained
maintainers:
- rerickson1
files:
- drivers/modem/
labels:
- "area: Modem"
"Drivers: Neural Networks":
status: odd fixes
collaborators:
- nashif
files:
- drivers/neural_net/
labels:
- "area: Neural Networks"
"Drivers: PCI":
status: maintained
maintainers:
- dcpleung
collaborators:
- jhedberg
- finikorg
- tbursztyka
files:
- drivers/pcie/
- include/zephyr/drivers/pcie/
labels:
- "area: PCI"
"Drivers: PECI":
status: maintained
maintainers:
- albertofloyd
collaborators:
- VenkatKotakonda
files:
- drivers/peci/
- include/zephyr/drivers/peci.h
- samples/drivers/peci/
labels:
- "area: PECI"
"Drivers: Pin Control":
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/
labels:
- "area: Pinctrl"
"Drivers: Pinmux":
status: maintained
maintainers:
- mnkp
collaborators:
- gmarull
files:
- doc/hardware/peripherals/pinmux.rst
- drivers/pinmux/
- include/zephyr/drivers/pinmux.h
labels:
- "area: Pinmux"
"Drivers: PTP Clock":
status: maintained
maintainers:
- tbursztyka
files:
- drivers/ptp_clock/
- include/zephyr/drivers/ptp_clock.h
labels:
- "area: Clocks"
"Drivers: PM CPU ops":
status: maintained
maintainers:
- carlocaione
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"
"Drivers: PWM":
status: maintained
maintainers:
- anangl
collaborators:
- henrikbrixandersen
- gmarull
files:
- drivers/pwm/
- dts/bindings/pwm/
- tests/drivers/pwm/
- include/zephyr/*/pwms.h
labels:
- "area: PWM"
"Drivers: Serial/UART":
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/
labels:
- "area: UART"
"Drivers: Sensors":
status: maintained
maintainers:
- MaureenHelm
collaborators:
- avisconti
- gmarull
- teburd
files:
- drivers/sensor/
- include/zephyr/drivers/sensor.h
- samples/sensor/
- tests/drivers/sensor/
- dts/bindings/sensor/
labels:
- "area: Sensors"
"Drivers: SPI":
status: maintained
maintainers:
- tbursztyka
files:
- drivers/spi/
- include/zephyr/drivers/spi.h
- tests/drivers/spi/
labels:
- "area: SPI"
"Drivers: System timer":
status: maintained
maintainers:
- andyross
collaborators:
- KangJianX
files:
- drivers/timer/
- include/zephyr/drivers/timer/
labels:
- "area: Timer"
"Drivers: Video":
status: odd fixes
collaborators:
- loicpoulain
files:
- drivers/video/
- include/zephyr/drivers/video.h
- include/zephyr/drivers/video-controls.h
labels:
- "area: Video"
"Drivers: W1":
status: maintained
maintainers:
- str4t0m
collaborators:
- dp7hgh7
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/
labels:
- "area: W1"
"Drivers: Watchdog":
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"
"Drivers: WiFi":
status: maintained
maintainers:
- tbursztyka
collaborators:
- rlubos
- kludentwo
files:
- drivers/wifi/
labels:
- "area: Wifi"
"Drivers: WiFi es-WiFi":
status: odd fixes
collaborators:
- loicpoulain
files:
- drivers/wifi/eswifi/
description: >-
Inventek es-WiFi
labels:
- "area: Wifi"
"Drivers: Memory Management":
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"
Xen Platform:
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"
Filesystems:
status: maintained
maintainers:
- nvlsianpu
collaborators:
- de-nordic
- Laczen
- nashif
files:
- include/zephyr/fs/
- samples/subsys/fs/
- subsys/fs/
- tests/subsys/fs/
labels:
- "area: File System"
Formatted Output:
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
labels:
- "area: Formatting Output"
IPC:
status: maintained
maintainers:
- carlocaione
- arnopo
files:
- include/zephyr/ipc/
- samples/subsys/ipc/
- subsys/ipc/
- tests/subsys/ipc/
description: >-
Inter-Processor Communication
labels:
- "area: IPC"
JSON Web Token:
status: odd fixes
collaborators:
- mrfuchs
- sir-branch
files:
- subsys/jwt/
- include/zephyr/data/
- lib/os/json.c
labels:
- "area: JSON"
Kconfig:
status: odd fixes
collaborators:
- tejlmand
- nashif
files:
- scripts/kconfig/
- doc/build/kconfig/
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
Kernel:
status: maintained
maintainers:
- andyross
collaborators:
- nashif
- ceolin
- dcpleung
- peter-mitsis
files:
- doc/kernel/
- include/zephyr/kernel*.h
- kernel/
- tests/kernel/
- include/zephyr/sys_clock.h
- samples/kernel/
labels:
- "area: Kernel"
Base OS:
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"
Laird Connectivity platforms:
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/
- boards/arm/mg100/
labels:
- "platform: Laird Connectivity"
Little FS:
status: odd fixes
files:
- subsys/fs/Kconfig.littlefs
- subsys/fs/littlefs_fs.c
- tests/subsys/fs/littlefs/
description: >-
Little FS
labels:
- "area: File System"
Logging:
status: maintained
maintainers:
- nordic-krch
collaborators:
- chen-png
- aasthagr
- dcpleung
files:
- include/zephyr/logging/
- samples/subsys/logging/
- subsys/logging/
- tests/subsys/logging/
- scripts/logging/
labels:
- "area: Logging"
MAINTAINERS file:
status: maintained
maintainers:
- MaureenHelm
collaborators:
- nashif
- stephanosio
files:
- MAINTAINERS.yml
labels:
- "area: Process"
description: >-
Zephyr Maintainers File
Mbed TLS:
status: maintained
maintainers:
- d3zd3z
- ceolin
files:
- tests/crypto/mbedtls/
labels:
- "area: Crypto / RNG"
description: >-
Mbed TLS module implementing the PSA Crypto API and TLS.
MCU Manager:
status: maintained
maintainers:
- de-nordic
collaborators:
- nordicjm
files:
- subsys/mgmt/mcumgr/
- include/zephyr/mgmt/mcumgr/
- samples/subsys/mgmt/mcumgr/
- tests/subsys/mgmt/mcumgr/
labels:
- "area: mcumgr"
Modbus:
status: maintained
maintainers:
- jfischer-no
files:
- samples/subsys/modbus/
- include/zephyr/modbus/
- tests/subsys/modbus/
- subsys/modbus/
- doc/services/modbus/
labels:
- "area: modbus"
OSDP:
status: odd fixes
collaborators:
- sidcha
files:
- subsys/mgmt/osdp/
- include/zephyr/mgmt/osdp.h
- samples/subsys/mgmt/osdp/
labels:
- "area: OSDP"
hawkBit:
status: odd fixes
collaborators:
- ycsin
files:
- subsys/mgmt/hawkbit/
- include/zephyr/mgmt/hawkbit.h
- samples/subsys/mgmt/hawkbit/
labels:
- "area: hawkBit"
"mgmt: updatehub":
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
Native POSIX and POSIX arch:
status: maintained
maintainers:
- aescolar
files:
- arch/posix/
- boards/posix/native_posix/
- drivers/*/*native_posix*
- drivers/*/*/*native_posix*
- dts/posix/
- include/zephyr/arch/posix/
- scripts/valgrind.supp
- soc/posix/
- tests/boards/native_posix/
labels:
- "area: native port"
description: >-
POSIX architecture and SOC, native_posix board, and related drivers
Networking:
status: maintained
maintainers:
- rlubos
collaborators:
- tbursztyka
- pfalcon
- mengxianglinx
files:
- drivers/net/
- include/zephyr/net/
- samples/net/
- subsys/net/
- doc/connectivity/networking/
- tests/net/
files-exclude:
- samples/net/sockets/coap_*/
- samples/net/lwm2m_client/
- subsys/net/lib/coap/
- subsys/net/lib/lwm2m/
- subsys/net/lib/tls_credentials/
labels:
- "area: Networking"
"Networking: BSD sockets":
status: maintained
maintainers:
- pfalcon
collaborators:
- rlubos
files:
- samples/net/sockets/
- subsys/net/lib/sockets/
- tests/net/socket/
labels:
- "area: Sockets"
"Networking: Buffers":
status: maintained
maintainers:
- jhedberg
collaborators:
- rlubos
- tbursztyka
files:
- include/zephyr/net/buf.h
- subsys/net/buf.c
- tests/net/buf/
labels:
- "area: Networking"
"Networking: CoAP":
status: maintained
maintainers:
- rlubos
collaborators:
- pdgendt
files:
- subsys/net/lib/coap/
- samples/net/sockets/coap_*/
- tests/net/lib/coap/
labels:
- "area: Networking"
"Networking: LWM2M":
status: maintained
maintainers:
- rlubos
collaborators:
- SeppoTakalo
files:
- samples/net/lwm2m_client/
- subsys/net/lib/lwm2m/
labels:
- "area: LWM2M"
"Networking: MQTT":
status: maintained
maintainers:
- rlubos
files:
- subsys/net/lib/mqtt/
- tests/net/lib/mqtt_*/
- samples/net/cloud/mqtt_azure/
- samples/net/mqtt_publisher/
labels:
- "area: Networking"
"Networking: OpenThread":
status: maintained
maintainers:
- rlubos
collaborators:
- pdgendt
files:
- subsys/net/l2/openthread/
- samples/net/openthread/
- tests/subsys/openthread/
labels:
- "area: Networking"
- "area: OpenThread"
NIOS-2 arch:
status: maintained
maintainers:
- nashif
files:
- arch/nios2/
- soc/nios2/
- include/zephyr/arch/nios2/
- tests/boards/altera_max10/
labels:
- "area: NIOS2"
nRF52 BSIM:
status: maintained
maintainers:
- aescolar
files:
- boards/posix/nrf52_bsim/
labels:
- "platform: nRF52 BSIM"
POSIX API layer:
status: maintained
maintainers:
- cfriedt
collaborators:
- pfalcon
- enjiamai
- KangJianX
files:
- include/zephyr/posix/
- lib/posix/
- tests/posix/
labels:
- "area: POSIX"
Power management:
status: maintained
maintainers:
- ceolin
collaborators:
- nashif
- mengxianglinx
- gmarull
- teburd
- yinfangw
files:
- include/zephyr/pm/
- samples/subsys/pm/
- subsys/pm/
- tests/subsys/pm/
labels:
- "area: Power Management"
RISCV arch:
status: maintained
maintainers:
- fkokosinski
- kgugala
- tgorochowik
collaborators:
- mgielda
- katsuster
- edersondisouza
- carlocaione
files:
- arch/riscv/
- boards/riscv/
- dts/bindings/riscv/
- include/zephyr/arch/riscv/
- soc/riscv/
labels:
- "area: RISCV"
Twister:
status: maintained
maintainers:
- nashif
collaborators:
- chen-png
- galak
- PerMac
- enjiamai
- hakehuang
- gopiotr
files:
- scripts/twister
- scripts/pylib/twister/
- scripts/tests/twister/
labels:
- "area: Twister"
Settings:
status: maintained
maintainers:
- nvlsianpu
files:
- include/zephyr/settings/
- subsys/settings/
- tests/subsys/settings/
- samples/subsys/settings/
labels:
- "area: Settings"
Shell:
status: maintained
maintainers:
- jakub-uC
collaborators:
- carlescufi
files:
- include/zephyr/shell/
- samples/subsys/shell/
- subsys/shell/
- tests/subsys/shell/
labels:
- "area: Shell"
Shields:
status: maintained
maintainers:
- erwango
collaborators:
- avisconti
- jfischer-no
files:
- boards/shields/
- doc/hardware/porting/shields.rst
labels:
- "area: Shields"
SPARC arch:
status: odd fixes
collaborators:
- julius-barendt
files:
- arch/sparc/
- include/zephyr/arch/sparc/
- soc/sparc/
labels:
- "area: SPARC"
State machine framework:
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"
GD32 Platforms:
status: maintained
maintainers:
- nandojve
- gmarull
collaborators:
- soburi
- cameled
files:
- boards/arm/gd32*/
- boards/riscv/gd32*/
- boards/riscv/longan_nano/
- drivers/*/*gd32*/
- drivers/*/*gd32*
- dts/*/gigadevice/
- dts/bindings/*/*gd32*
- soc/arm/gigadevice/
- soc/riscv/riscv-privilege/gd32vf103/
- scripts/west_commands/*/*gd32*
labels:
- "platform: GD32"
description: >-
GigaDevice GD32 SOCs, dts files and related drivers. Starter and eval
boards.
Synopsys Platforms:
status: maintained
maintainers:
- ruuddw
collaborators:
- abrodkin
- evgeniy-paltsev
- IRISZZW
files:
- soc/arc/
- boards/arc/
labels:
- "platform: Synopsys"
Nuvoton NPCX Platforms:
status: maintained
maintainers:
- MulinChao
- ChiHuaL
collaborators:
- MulinChao
- ChiHuaL
- sjg20
- keith-zephyr
- jackrosenthal
- fabiobaltieri
- yperess
files:
- soc/arm/nuvoton_npcx/
- boards/arm/npcx*/
- dts/arm/nuvoton/
- dts/bindings/*/*npcx*
- drivers/*/*_npcx*.c
labels:
- "platform: Nuvoton NPCX"
Nuvoton Numicro Platforms:
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"
SiLabs Platforms:
status: odd fixes
files:
- soc/arm/silabs_*/
- boards/arm/ef*/
- dts/arm/silabs/
- dts/bindings/*/silabs*
- drivers/*/*_gecko*
labels:
- "platform: SiLabs"
Intel Platforms (X86):
status: maintained
maintainers:
- enjiamai
collaborators:
- jhedberg
- aasthagr
- laurenmurphyx64
- MaureenHelm
files:
- boards/x86/
- soc/x86/
labels:
- "platform: X86"
Intel Platforms (Xtensa):
status: maintained
maintainers:
- nashif
collaborators:
- andyross
- dcpleung
- lyakh
- lgirdwood
- mengxianglinx
- marc-hb
- kv2019i
- MaureenHelm
- ceolin
files:
- boards/xtensa/intel_*/
- soc/xtensa/intel_*/
- dts/xtensa/intel/
- tests/boards/intel_adsp/
labels:
- "platform: Intel ADSP"
NXP Platforms:
status: maintained
maintainers:
- dleach02
collaborators:
- mmahadevan108
- danieldegrasse
- DerekSnell
- yvanderv
- EmilioCBen
- decsny
files:
- boards/arm/mimx*/
- boards/arm/frdm_k*/
- boards/arm/lpcxpress*/
- boards/arm/twr_*/
- soc/arm/nxp_*/
- drivers/*/*imx*
- drivers/*/*lpc*.c
- drivers/*/*mcux*.c
- dts/arm/nxp/
- dts/bindings/*/nxp*
- soc/xtensa/nxp_adsp/
labels:
- "platform: NXP"
Microchip MEC Platforms:
status: maintained
maintainers:
- jvasanth1
collaborators:
- VenkatKotakonda
- albertofloyd
files:
- boards/arm/mec*/
- dts/arm/microchip/
- soc/arm/microchip_mec/
- drivers/*/*mchp*.c
- tests/boards/mec15xxevb_assy6853/
labels:
- "platform: Microchip MEC"
Microchip SAM Platforms:
status: maintained
maintainers:
- nandojve
collaborators:
- mnkp
- stephanosio
files:
- boards/arm/atsam*/
- boards/arm/sam*/
- dts/arm/atmel/
- soc/arm/atmel_sam*/
- drivers/*/*sam*.c
labels:
- "platform: Microchip SAM"
nRF Platforms:
status: maintained
maintainers:
- anangl
files:
- boards/arm/*nrf*/
- drivers/*/*nrfx*.c
- soc/arm/nordic_nrf/
- samples/boards/nrf/
- dts/arm/nordic/
labels:
- "platform: nRF"
Renesas R-Car Platforms:
status: maintained
maintainers:
- aaillet
collaborators:
- pmarzin
files:
- boards/arm/rcar_*/
- drivers/*/*rcar*
- drivers/clock_control/*cpg_mssr*
- dts/arm/renesas/
- dts/bindings/*/*rcar*
- soc/arm/renesas_rcar/
labels:
- "platform: Renesas R-Car"
description: >-
Renesas R-Car SOCs, dts files and related drivers. Renesas boards based
on R-Car SOCs.
STM32 Platforms:
status: maintained
maintainers:
- erwango
collaborators:
- ABOSTM
- FRASTM
- gmarull
- 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/
labels:
- "platform: STM32"
description: >-
STM32 SOCs, dts files and related drivers. ST nucleo, disco and eval
boards.
Espressif Platforms:
status: maintained
maintainers:
- sylvioalves
- glaubermaroto
- uLipe
collaborators:
- LucasTambor
files:
- drivers/*/*esp32*.c
- boards/xtensa/esp32*/
- soc/xtensa/esp32*/
- boards/riscv/esp32*/
- soc/riscv/esp32*/
- dts/xtensa/espressif/
- dts/riscv/espressif/
- dts/bindings/*/*esp32*
- samples/boards/esp32*/
- tests/boards/espressif_esp32/
labels:
- "platform: ESP32"
ITE Platforms:
status: maintained
maintainers:
- Dino-Li
- GTLin08
- RuibinChang
collaborators:
- Dino-Li
- GTLin08
- RuibinChang
- jackrosenthal
- keith-zephyr
- brockus-zephyr
- yperess
- sjg20
files:
- boards/riscv/it8xxx2_evb/
- drivers/*/*/*it8xxx2*.c
- drivers/*/*it8xxx2*.c
- dts/bindings/*/*ite*
- dts/riscv/ite/
- soc/riscv/riscv-ite/
labels:
- "platform: ITE"
TI Platforms:
status: odd fixes
collaborators:
- vanti
- cfriedt
files:
- boards/arm/cc13*/
- boards/arm/cc26*/
- boards/arm/cc32*/
- boards/*/msp*/
- drivers/*/*cc13*/
- drivers/*/*cc25*/
- drivers/*/*cc26*/
- drivers/*/*cc32*/
- dts/*/ti/
- dts/bindings/*/ti,*
- soc/arm/ti*/
labels:
- "platform: TI"
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"
RTIO:
status: maintained
maintainers:
- teburd
files:
- samples/subsys/rtio/
- include/zephyr/rtio/
- tests/subsys/rtio/
- subsys/rtio/
- doc/services/rtio/
labels:
- "area: RTIO"
Storage:
status: maintained
maintainers:
- nvlsianpu
files:
- subsys/storage/
- include/zephyr/storage/
- tests/subsys/storage/
labels:
- "area: Storage"
Task Watchdog:
status: maintained
maintainers:
- martinjaeger
files:
- include/zephyr/task_wdt/
- samples/subsys/task_wdt/
- subsys/task_wdt/
labels:
- "area: Task Watchdog"
TF-M Integration:
status: maintained
maintainers:
- microbuilder
collaborators:
- joerchan
files:
- samples/tfm_integration/
- modules/trusted-firmware-m/
labels:
- "area: TF-M"
Toolchain Integration:
status: maintained
maintainers:
- tejlmand
collaborators:
- stephanosio
files:
- cmake/bintools/
- cmake/compiler/
- cmake/linker/
- cmake/toolchain/
labels:
- "area: Toolchains"
Tracing:
status: maintained
maintainers:
- nashif
collaborators:
- teburd
- tleksell-pe
files:
- subsys/tracing/
- include/zephyr/tracing/
- subsys/timing/
- samples/subsys/tracing/
- doc/services/tracing/
- tests/subsys/tracing/
labels:
- "area: tracing"
USB:
status: maintained
maintainers:
- jfischer-no
files:
- drivers/usb/
- dts/bindings/usb/
- include/zephyr/*/usb/
- include/zephyr/usb/
- samples/subsys/usb/
- subsys/usb/
- tests/subsys/usb/
labels:
- "area: USB"
Userspace:
status: maintained
maintainers:
- dcpleung
collaborators:
- enjiamai
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"
VFS:
status: maintained
maintainers:
- de-nordic
files:
- subsys/fs/fat_fs.c
- tests/subsys/fs/fat_fs_api/
description: >-
VFS implementation
labels:
- "area: File System"
West:
status: maintained
maintainers:
- mbolivar-nordic
collaborators:
- carlescufi
- swinslow
files:
- scripts/west-commands.yml
- scripts/west_commands/
- doc/develop/west/
labels:
- "area: West"
"West project: canopennode":
status: maintained
maintainers:
- henrikbrixandersen
files:
- modules/canopennode/
labels:
- manifest-canopennode
- "area: CAN"
"West project: cmsis":
status: maintained
maintainers:
- stephanosio
collaborators:
- microbuilder
- povergoing
files:
- modules/Kconfig.cmsis
- modules/Kconfig.cmsis_dsp
- modules/Kconfig.cmsis_nn
labels:
- manifest-cmsis
"West project: edtt":
status: maintained
maintainers:
- aescolar
collaborators:
- wopu-ot
- thoh-ot
files: []
labels:
- manifest-edtt
"West project: fatfs":
status: maintained
maintainers:
- de-nordic
files: []
labels:
- manifest-fatfs
"West project: hal_altera":
status: odd fixes
collaborators:
- nashif
files:
- modules/Kconfig.altera
labels:
- manifest-hal_altera
"West project: hal_atmel":
status: maintained
maintainers:
- nandojve
files:
- modules/Kconfig.atmel
labels:
- manifest-hal_atmel
"West project: hal_cypress":
status: maintained
maintainers:
- ifyall
collaborators:
- nandojve
- nashif
files:
- modules/Kconfig.cypress
labels:
- manifest-hal_cypress
"West project: hal_espressif":
status: maintained
maintainers:
- sylvioalves
- glaubermaroto
- uLipe
collaborators:
- LucasTambor
files: []
labels:
- manifest-hal_espressif
"West project: hal_gigadevice":
status: maintained
maintainers:
- nandojve
- gmarull
collaborators:
- soburi
files:
- modules/hal_gigadevice/
labels:
- manifest-hal_gigadevice
"West project: hal_infineon":
status: maintained
maintainers:
- ifyall
collaborators:
- parthitce
files:
- modules/Kconfig.infineon
labels:
- manifest-hal_infineon
"West project: hal_microchip":
status: maintained
maintainers:
- jvasanth1
collaborators:
- VenkatKotakonda
- albertofloyd
files:
- modules/Kconfig.microchip
labels:
- manifest-hal_microchip
"West project: hal_nordic":
status: maintained
maintainers:
- anangl
collaborators:
- hubertmis
- nordic-krch
files:
- modules/hal_nordic/
labels:
- manifest-hal_nordic
"West project: hal_nuvoton":
status: maintained
maintainers:
- ssekar15
files:
- modules/Kconfig.nuvoton
labels:
- manifest-hal_nuvoton
"West project: hal_nxp":
status: maintained
maintainers:
- dleach02
collaborators:
- mmahadevan108
- danieldegrasse
files:
- modules/hal_nxp/
- modules/Kconfig.imx
- modules/Kconfig.mcux
labels:
- manifest-hal_nxp
"West project: hal_openisa":
status: odd fixes
collaborators:
- dleach02
files:
- modules/Kconfig.vega
labels:
- manifest-hal_openisa
"West project: hal_quicklogic":
status: odd fixes
collaborators:
- fkokosinski
files: []
labels:
- manifest-hal_quicklogic
"West project: hal_renesas":
status: maintained
maintainers:
- andrzej-kaczmarek
files: []
labels:
- manifest-hal_renesas
"West project: hal_rpi_pico":
status: maintained
maintainers:
- yonsch
files:
- modules/hal_rpi_pico/
labels:
- manifest-hal_rpi_pico
"West project: hal_silabs":
status: odd fixes
collaborators:
- yonsch
- mnkp
files:
- modules/Kconfig.silabs
labels:
- manifest-hal_silabs
"West project: hal_st":
status: maintained
maintainers:
- avisconti
collaborators:
- erwango
files:
- modules/Kconfig.st
labels:
- manifest-hal_st
"West project: hal_stm32":
status: maintained
maintainers:
- erwango
collaborators:
- FRASTM
- ABOSTM
files:
- modules/Kconfig.stm32
labels:
- manifest-hal_stm32
"West project: hal_telink":
status: maintained
maintainers:
- andy-liu-telink
files:
- modules/Kconfig.telink
labels:
- manifest-hal_telink
"West project: hal_ti":
status: odd fixes
collaborators:
- cfriedt
- gmarull
files: []
labels:
- manifest-hal_ti
"West project: hal_wurthelektronik":
status: maintained
maintainers:
- mah-eiSmart
files:
- modules/Kconfig.wurthelektronik
labels:
- manifest-hal_wurthelektronik
"West project: hal_xtensa":
status: maintained
maintainers:
- dcpleung
collaborators:
- andyross
- nashif
files:
- modules/Kconfig.xtensa
labels:
- manifest-hal_xtensa
"West project: libmetal":
status: odd fixes
collaborators:
- carlocaione
- arnopo
files:
- modules/Kconfig.libmetal
labels:
- manifest-libmetal
"West project: liblc3":
status: maintained
maintainers:
- Casper-Bonde-Bose
- MariuszSkamra
collaborators:
- thalley
- asbjornsabo
files:
- modules/liblc3/
labels:
- manifest-liblc3
"West project: littlefs":
status: odd fixes
files:
- modules/littlefs/
labels:
- manifest-littlefs
"West project: loramac-node":
status: maintained
maintainers:
- Mani-Sadhasivam
files:
- modules/loramac-node/
labels:
- manifest-loramac-node
"West project: lvgl":
status: maintained
maintainers:
- brgl
files:
- modules/Kconfig.lvgl
labels:
- manifest-lvgl
"West project: lz4":
status: odd fixes
collaborators:
- Navin-Sankar
files:
- modules/lz4/
labels:
- manifest-lz4
"West project: mbedtls":
status: maintained
maintainers:
- d3zd3z
- ceolin
files:
- modules/mbedtls/
labels:
- manifest-mbedtls
"West project: mcuboot":
status: maintained
maintainers:
- d3zd3z
- nvlsianpu
files:
- modules/Kconfig.mcuboot_bootutil
labels:
- manifest-mcuboot
"West project: mipi-sys-t":
status: odd fixes
collaborators:
- dcpleung
files:
- modules/Kconfig.syst
labels:
- manifest-mipi-sys-t
"West project: nanopb":
status: odd fixes
collaborators:
- pdgendt
files:
- modules/nanopb/
labels:
- manifest-nanopb
"West project: net-tools":
status: odd fixes
maintainers:
- rlubos
collaborators:
- jukkar
files: []
labels:
- manifest-net-tools
"West project: nrf_hw_models":
status: maintained
maintainers:
- aescolar
collaborators:
- wopu-ot
- thoh-ot
files: []
labels:
- manifest-nrf_hw_models
"West project: open-amp":
status: odd fixes
collaborators:
- carlocaione
files:
- modules/Kconfig.open-amp
labels:
- manifest-open-amp
"West project: openthread":
status: maintained
maintainers:
- rlubos
collaborators:
- pdgendt
files:
- modules/openthread/
labels:
- manifest-openthread
"West project: picolibc":
status: maintained
maintainers:
- keith-packard
collaborators:
- stephanosio
files: []
labels:
- manifest-picolibc
"West project: segger":
status: odd fixes
collaborators:
- nordic-krch
files: []
labels:
- manifest-segger
"West project: sof":
status: maintained
maintainers:
- kv2019i
collaborators:
- andyross
- nashif
- lyakh
- lgirdwood
- marc-hb
files:
- modules/Kconfig.sof
labels:
- manifest-sof
"West project: tflite-micro":
status: odd fixes
collaborators:
- laurenmurphyx64
files:
- modules/tflite-micro/
- samples/modules/tflite-micro/
labels:
- manifest-tflite-micro
"West project: tinycbor":
status: obsolete
files:
- modules/Kconfig.tinycbor
labels:
- manifest-tinycbor
"West project: tinycrypt":
status: odd fixes
files:
- modules/Kconfig.tinycrypt
labels:
- manifest-tinycrypt
"West project: TraceRecorderSource":
status: maintained
maintainers:
- tleksell-pe
files:
- modules/TraceRecorder/
labels:
- manifest-TraceRecorderSource
"West project: trusted-firmware-m":
status: maintained
maintainers:
- microbuilder
collaborators:
- joerchan
- SebastianBoe
- theotherjimmy
files:
- modules/trusted-firmware-m/
labels:
- manifest-trusted-firmware-m
"West project: tf-m-tests":
status: maintained
maintainers:
- microbuilder
collaborators:
- joerchan
- SebastianBoe
- theotherjimmy
files: []
labels:
- manifest-tf-m-tests
"West project: trusted-firmware-a":
status: maintained
maintainers:
- povergoing
- sgrrzhf
collaborators:
- carlocaione
files:
- modules/trusted-firmware-a/
labels:
- manifest-trusted-firmware-a
"West project: psa-arch-tests":
status: maintained
maintainers:
- microbuilder
collaborators:
- joerchan
- SebastianBoe
- theotherjimmy
files: []
labels:
- manifest-psa-arch-tests
"West project: uoscore-uedhoc":
status: maintained
maintainers:
- rlubos
- StefanHri
files:
- modules/uoscore-uedhoc/
labels:
- manifest-uoscore-uedhoc
"West project: zcbor":
status: maintained
maintainers:
- de-nordic
files:
- modules/zcbor/
labels:
- manifest-zcbor
"West project: zscilib":
status: maintained
maintainers:
- microbuilder
files: []
labels:
- manifest-zscilib
Xtensa arch:
status: maintained
maintainers:
- dcpleung
collaborators:
- andyross
- nashif
files:
- arch/xtensa/
- include/zephyr/arch/xtensa/
- dts/xtensa/
labels:
- "area: Xtensa"
x86 arch:
status: maintained
maintainers:
- jhedberg
collaborators:
- andyross
- nashif
- dcpleung
- ceolin
- enjiamai
- aasthagr
- laurenmurphyx64
files:
- arch/x86/
- include/zephyr/arch/x86/
- tests/arch/x86/
- drivers/interrupt_controller/*intel*
- drivers/interrupt_controller/*ioapic*
- drivers/interrupt_controller/*loapic*
labels:
- "area: X86"
Continuous Integration:
status: maintained
maintainers:
- nashif
- galak
- stephanosio
files:
- .github/
- scripts/ci/
- .checkpatch.conf
- scripts/gitlint/
labels:
- "area: Continuous Integration"
ZTest:
status: maintained
maintainers:
- nashif
collaborators:
- aaronemassey
- jeremybettis
- yperess
- asemjonovs
files:
- subsys/testsuite/
- tests/ztest/
- tests/unit/util/
- samples/subsys/testsuite/
labels:
- "area: Testsuite"
Emulation:
status: maintained
maintainers:
- yperess
collaborators:
- aaronemassey
- jeremybettis
- alevkoy
- asemjonovs
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
labels:
- "area: HW Emulation"
Random:
status: odd fixes
collaborators:
- ceolin
files:
- subsys/random/
- include/zephyr/random/
labels:
- "area: Random"
# 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"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/yajunzhi/zephyr.git
git@gitee.com:yajunzhi/zephyr.git
yajunzhi
zephyr
zephyr
main

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385