Go to file
DrZlo13 b32c5f3897
FL-549 Reading iButton "Cyfral" by HW comparator (#273)
* new comparator-based reader
* working comparator reader
* add keys "integrity" check
* reset events queue
2020-12-22 20:44:38 +06:00
.github F2 F3 deprecate (#267) 2020-12-14 19:36:07 +03:00
applications FL-549 Reading iButton "Cyfral" by HW comparator (#273) 2020-12-22 20:44:38 +06:00
assets Rename Irukagotchi to Dolphin. Add basic game state structures. (#268) 2020-12-19 02:15:29 +06:00
bootloader Bootloader: do not configure clock on start, just minimum LL init. (#269) 2020-12-18 23:51:08 +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: Add PyCortexDebug. Core and peripheral register database and decoder. (#251) 2020-11-19 18:48:34 +03:00
docker add dfu util to container, enable usb in container (#229) 2020-11-10 19:42:18 +03:00
firmware FL-443 Move sd card to second spi (#271) 2020-12-19 13:52:17 +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 Refactoring firmware uploading to update server (#238) 2020-11-15 13:14:52 +03: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 you can use your dev. board:

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

Links