flipperzero-firmware/.github/CODEOWNERS
DrZlo13 f94633863c
[FL-520] Filesystem Api and App (#280)
* update fatfs integer types
* fix sector size to 512
* fix sector size calculation
* common fs api
* fs api realization (sd card + fat fs)
* better sector size definition
* more api realization fns
* add error description api, add common api
* fix api flag naming, run app
* add fs_info call
* disable fatfs strfuncs, enable fatfs chmod
* rework filesystem app
* sd detect cycle, sd menu, sd eject feature
* fix sd detect cycle
* sd card format routine
* ui improvements, sd info routine
* properly unmount card
* separate mode flags
* add api folder, move app, rename app
* fix api naming
* update st-card-test to use api
* update path to app
* fixed potential problem of using sizeof union
* updated api documentation, new time/date fns
* update codeowners
* changed app requirements
* changed app order
* sd insert/remove log
2021-01-11 20:52:35 +06:00

85 lines
1.3 KiB
Plaintext

# CTO owns all the code by default
* @glitchcore
# unknow applications
applications/** @glitchcore
# assets and asset generator
assets/** @skotopes
# bootloader
bootloader/** @skotopes
firmware/targets/f4/api-hal/api-hal-boot.c @skotopes
# debug tools
debug/** @skotopes
# local target
firmware/targets/local/** @glitchcore
# BLE
firmware/targets/f4/ble-glue/** @skotopes
applications/bt/** @skotopes
# Sub-GHz
applications/cc1101-workaround/** @glitchcore
# Dolphin
applications/dolphin/** @skotopes
# GUI Stuff
applications/gui/** @skotopes
# iButton
applications/ibutton/** @DrZlo13
lib/cyfral/** @DrZlo13
lib/onewire/** @DrZlo13
# IR
applications/irda/** @DrZlo13
# LF RFID
applications/lf-rfid/** @glitchcore
# Menu
applications/menu/** @skotopes
# NFC
applications/nfc/** @skotopes
lib/ST25RFAL002/** @skotopes
# SD Card and filesystem
applications/sd-card-test/** @DrZlo13
applications/sd-filesystem/** @DrZlo13
lib/common-api/filesystem-api.h @DrZlo13
lib/fatfs/** @DrZlo13
# Power control app
applications/power/** @skotopes
# Some applications
applications/music-player/** @DrZlo13
applications/floopper-bloopper/** @glitchcore
applications/gpio-tester/** @glitchcore
lib/app-template/** @DrZlo13
lib/qrcode/** @DrZlo13
lib/callback-connector/** @DrZlo13