├── .github ├── CODEOWNERS └── workflows │ └── generate.yml ├── .gitignore ├── Changelog ├── application.options ├── application.proto ├── desktop.proto ├── flipper.options ├── flipper.proto ├── gpio.options ├── gpio.proto ├── gui.options ├── gui.proto ├── property.options ├── property.proto ├── storage.options ├── storage.proto ├── system.options └── system.proto /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipperdevices/flipperzero-protobuf/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/generate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipperdevices/flipperzero-protobuf/HEAD/.github/workflows/generate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipperdevices/flipperzero-protobuf/HEAD/.gitignore -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipperdevices/flipperzero-protobuf/HEAD/Changelog -------------------------------------------------------------------------------- /application.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipperdevices/flipperzero-protobuf/HEAD/application.options -------------------------------------------------------------------------------- /application.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipperdevices/flipperzero-protobuf/HEAD/application.proto -------------------------------------------------------------------------------- /desktop.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipperdevices/flipperzero-protobuf/HEAD/desktop.proto -------------------------------------------------------------------------------- /flipper.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipperdevices/flipperzero-protobuf/HEAD/flipper.options -------------------------------------------------------------------------------- /flipper.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipperdevices/flipperzero-protobuf/HEAD/flipper.proto -------------------------------------------------------------------------------- /gpio.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gpio.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipperdevices/flipperzero-protobuf/HEAD/gpio.proto -------------------------------------------------------------------------------- /gui.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipperdevices/flipperzero-protobuf/HEAD/gui.options -------------------------------------------------------------------------------- /gui.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipperdevices/flipperzero-protobuf/HEAD/gui.proto -------------------------------------------------------------------------------- /property.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipperdevices/flipperzero-protobuf/HEAD/property.options -------------------------------------------------------------------------------- /property.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipperdevices/flipperzero-protobuf/HEAD/property.proto -------------------------------------------------------------------------------- /storage.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipperdevices/flipperzero-protobuf/HEAD/storage.options -------------------------------------------------------------------------------- /storage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipperdevices/flipperzero-protobuf/HEAD/storage.proto -------------------------------------------------------------------------------- /system.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipperdevices/flipperzero-protobuf/HEAD/system.options -------------------------------------------------------------------------------- /system.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipperdevices/flipperzero-protobuf/HEAD/system.proto --------------------------------------------------------------------------------