Go to file
rusdacent b7210eaf0e
Sh runner (#295)
* set self-hosted runner
* set GH runner for pylint
* fix upload to storage
2021-01-07 13:32:19 +06:00
.github Sh runner (#295) 2021-01-07 13:32:19 +06:00
applications Power: more info (#274) 2020-12-23 00:16:32 +06:00
assets Rename Irukagotchi to Dolphin. Add basic game state structures. (#268) 2020-12-19 02:15:29 +06:00
bootloader Bootloader: LSE/RTC shenanigans, morse error codes, new LED color scheme (#293) 2021-01-07 01:45:31 +06:00
core FL-262 Interrupt manager (#270) 2020-12-19 01:26:03 +06:00
core-rs Target refactoring and cube update (#161) 2020-10-07 12:37:43 +03:00
debug Debug: adjust openocd config for max speed (#278) 2020-12-28 13:20:58 +06:00
docker add dfu util to container, enable usb in container (#229) 2020-11-10 19:42:18 +03:00
firmware Power: set smps clock according to used inductor. RTC: do not reset clock on each start. (#281) 2021-01-07 02:03:37 +06:00
flp [WIP] Flipper Devtool (#113) 2020-10-29 11:10:46 +03:00
lib FL-549 Reading iButton "Cyfral" by HW comparator (#273) 2020-12-22 20:44:38 +06:00
make Fix OK button in F4 (#259) 2020-12-08 12:51:59 +03:00
.clang-format update AllowShortBlocksOnASingleLine param (not work) 2020-10-21 12:08:23 +03:00
.gitattributes Refactor F2/local before F3 merge (#220) 2020-11-06 11:31:59 +03:00
.gitignore [WIP] Flipper Devtool (#113) 2020-10-29 11:10:46 +03:00
.gitmodules Floopper bloopper (#245) 2020-11-18 11:01:51 +03:00
docker-compose.yml add dfu util to container, enable usb in container (#229) 2020-11-10 19:42:18 +03:00
flipper-zero-cla.md Update flipper-zero-cla.md 2020-08-01 19:42:32 +03:00
ReadMe.md Remove obsolete target. Cleanup and update ReadMe. (#279) 2020-12-28 11:52:35 +06:00
syntax_check.sh [WIP] Add syntax check for rust and C\C++ code (#108) 2020-09-30 02:18:30 +03:00

Flipper Zero Firmware community repo

Discord

Welcome to Flipper Zero's Firmware repo! Our goal is to create nice and clean code along with good documentation, to make it a pleasure for everyone to work with. This repo will become completely public closer to the device shipping date.

Update firmware

Flipper Zero's firmware consists of two components: Bootloader and main firmware. Bootloader controls firmware update process over USB. You need working bootloader installed before update firmware over USB.

  1. Download latest Firmware

  2. Reboot Flipper to Bootloader

  • Press and hold ← Left + ↩ Back for reset
  • Release ← Left and keep holding ↩ Back until blue LED lights up
  • Release ↩ Back
  1. Run dfu-util -D firmware.bin -a 0 -s 0x08008000:leave

Build from source

You can run firmware locally (with HAL stub):

  • docker-compose exec dev make -C firmware TARGET=local APP_TEST=1 run for running tests
  • docker-compose exec dev make -C firmware TARGET=local APP_*=1 run for running examples (see applications/applications.mk for list of applications/examples)

Or on your flipper:

docker-compose exec dev make -C firmware TARGET=f4 APP_*=1 flash for build and flash dev board (see applications/applications.mk for list of applications/examples)

Links