Нет описания

Georgii Surkov 95f8895b43 Add float_tools to SDK api (#2225) 3 лет назад
.github 27ee0f73f7 Fixing various typos in readme files #2208 3 лет назад
.vscode 1fa4c646e6 VSCode: add task 'Serial console' and group task with sequence calling (#2121) 3 лет назад
applications 06cf1bb868 Gui: change data ownership model in submenu, own text by default (#2217) 3 лет назад
applications_user b9a766d909 [FL-2627] Flipper applications: SDK, build and debug system (#1387) 3 лет назад
assets 27ee0f73f7 Fixing various typos in readme files #2208 3 лет назад
debug 8582670a34 [FL-2811] Fix PVS-Studio warnings (#2142) 3 лет назад
documentation 4accce93cf Update KeyCombo.md (#2213) 3 лет назад
firmware 95f8895b43 Add float_tools to SDK api (#2225) 3 лет назад
furi 8582670a34 [FL-2811] Fix PVS-Studio warnings (#2142) 3 лет назад
lib 95f8895b43 Add float_tools to SDK api (#2225) 3 лет назад
scripts 27ee0f73f7 Fixing various typos in readme files #2208 3 лет назад
site_scons 669822cdd2 Fix typos in various outputs (#2032) 3 лет назад
.clang-format b9a766d909 [FL-2627] Flipper applications: SDK, build and debug system (#1387) 3 лет назад
.editorconfig f6db5dd2a8 Create .editorconfig (#889) 4 лет назад
.gitattributes fd498bdfcf [FL-2554] Embedded arm-none-eabi toolchain (#1351) 3 лет назад
.gitignore 2d6c2886ae fbt: compile_db fixes (#1981) 3 лет назад
.gitmodules 0adad32418 fbt fixes pt4 (#1899) 3 лет назад
.pvsconfig 8582670a34 [FL-2811] Fix PVS-Studio warnings (#2142) 3 лет назад
.pvsoptions 8582670a34 [FL-2811] Fix PVS-Studio warnings (#2142) 3 лет назад
CODE_OF_CONDUCT.md 1208a5077f Code of Conduct (#739) 4 лет назад
CODING_STYLE.md 27ee0f73f7 Fixing various typos in readme files #2208 3 лет назад
CONTRIBUTING.md 27ee0f73f7 Fixing various typos in readme files #2208 3 лет назад
LICENSE dd6be78f44 Add LICENSE (#644) 4 лет назад
ReadMe.md d7735a1efb Drop brewfile, drop makefile, update readme and documentation (#2205) 3 лет назад
SConstruct 3108dc7c8c Splitting units and updater benches (#2165) 3 лет назад
fbt 0adad32418 fbt fixes pt4 (#1899) 3 лет назад
fbt.cmd 0adad32418 fbt fixes pt4 (#1899) 3 лет назад
fbt_options.py 7fb1af07b8 [FL- 3014] Untangle NFC from Unit Tests (#2106) 3 лет назад
firmware.scons f9730bcafe fbt: lint fixes (#2008) 3 лет назад

ReadMe.md

<source media="(prefers-color-scheme: dark)" srcset="/.github/assets/dark_theme_banner.png">
<source media="(prefers-color-scheme: light)" srcset="/.github/assets/light_theme_banner.png">
<img
    alt="A pixel art of a Dophin with text: Flipper Zero Official Repo"
    src="/.github/assets/light_theme_banner.png">

Flipper Zero Firmware

Contributing

Our main goal is to build a healthy, sustainable community around the Flipper and be open to any new ideas and contributions. We also have some rules and taboos here, so please read this page and our Code Of Conduct carefully.

I need help

The best place to search for answers is our User Documentation. If you can't find the answer there, you can check our Discord Server or our Forum.

I want to report an issue

If you've found an issue and want to report it, please check our Issues page. Make sure that the description contains information about the firmware version you're using, your platform, and the proper steps to reproduce the issue.

I want to contribute code

Before opening a PR, please confirm that your changes must be contained in the firmware. Many ideas can easily be implemented as external applications and published in the Flipper Application Catalog (coming soon). If you are unsure, you can ask on the Discord Server or the Issues page, and we'll help you find the right place for your code.

Also, please read our Contribution Guide, and our Coding Style, and ensure that your code is compatible with our project License.

Finally, open a Pull Request and ensure that CI/CD statuses are all green.

Development

The Flipper Zero Firmware is written in C, with some bits and pieces written in C++ and armv7m assembly languages. An intermediate level of C knowledge is recommended for comfortable programming. For Flipper applications, we support C, C++, and armv7m assembly languages.

Requirements

Supported development platforms:

  • Windows 10+ with PowerShell and Git (x86_64)
  • macOS 12+ with Command Line tools (x86_64, arm64)
  • Ubuntu 20.04+ with build-essential and Git (x86_64)

Supported in-circuit debuggers (optional but highly recommended):

Everything else will be taken care of by Flipper Build System.

Cloning Source Code

Ensure that you have enough space and clone source code with Git:

git clone --recursive https://github.com/flipperdevices/flipperzero-firmware.git

Building

Build firmware using Flipper Build Tool:

./fbt

Flashing Firmware using an in-circuit debugger

Connect your in-circuit debugger to the Flipper and flash firmware using Flipper Build Tool:

./fbt flash

Flashing Firmware using USB

Ensure that your Flipper is working, connect it using a USB cable and flash firmware using Flipper Build Tool:

./fbt flash_usb

Documentation

Links

Project structure

  • applications - Applications and services used in firmware
  • assets - Assets used by applications and services
  • furi - Furi Core: OS-level primitives and helpers
  • debug - Debug tool: GDB-plugins, SVD-file and etc
  • documentation - Documentation generation system configs and input files
  • firmware - Firmware source code
  • lib - Our and 3rd party libraries, drivers, etc.
  • scripts - Supplementary scripts and python libraries home

Also, pay attention to ReadMe.md files inside those directories.