No description
Find a file
2022-06-02 19:12:27 +03:00
.github Github: update runner config (#1236) 2022-05-17 05:01:57 +10:00
applications Merge latest fz-dev into dev 2022-06-02 18:43:38 +03:00
assets forgot to add some things 2022-06-01 21:51:19 +03:00
core [FL-2245] Introduce Mifare Classic Emulation (#1242) 2022-05-24 17:00:15 +03:00
debug [FL-2198], [FL-2161] NFC emulation refactoring (#968) 2022-02-02 22:59:28 +03:00
docker Naming and coding style convention, new linter tool. (#945) 2022-01-05 19:10:18 +03:00
documentation [FL-2521] Added OTA-related docs (#1219) 2022-05-11 16:50:46 +03:00
firmware fix icon & compiler flags 2022-06-01 20:17:44 +03:00
lib Merge last fz-dev into dev 2022-06-01 16:20:10 +03:00
make big merge with fz main repo 2022-06-01 16:07:53 +03:00
scripts Compile commands generator (#1223) 2022-05-12 14:38:33 +03:00
.clang-format [FL-2520] FW build with -Wextra (#1185) 2022-05-06 16:37:10 +03:00
.drone.yml modify readme, add about pages 2022-06-02 02:15:39 +03:00
.editorconfig Create .editorconfig (#889) 2021-12-15 14:33:52 +03:00
.gitattributes [FL-2156] Switch to smaller radio stack. (#923) 2021-12-23 19:24:09 +03:00
.gitignore [FL-2430] Automatic Desktop Locking (#1101) 2022-04-14 15:20:41 +03:00
.gitmodules Update .gitmodules 2022-05-30 04:01:12 +03:00
Brewfile Gui: refactor text input module and fix debug on MacOS 12.3 (#1045) 2022-03-22 11:03:26 +03:00
CHANGELOG.md Update CHANGELOG.md 2022-05-28 23:13:49 +03:00
CODE_OF_CONDUCT.md Code of Conduct (#739) 2021-10-02 20:32:18 +03:00
CODING_STYLE.md [FL-2230] SubGhz: protocol API refactoring (#969) 2022-03-03 12:48:56 +03:00
CONTRIBUTING.md Naming and coding style convention, new linter tool. (#945) 2022-01-05 19:10:18 +03:00
docker-compose.yml [FL-2520] FW build with -Wextra (#1185) 2022-05-06 16:37:10 +03:00
LICENSE Add LICENSE (#644) 2021-08-13 21:19:42 +03:00
Makefile Compile commands generator (#1223) 2022-05-12 14:38:33 +03:00
ReadMe.md fix link in readme 2022-06-02 19:12:27 +03:00
RoadMap.md Fixed README formatting & outdated information (#1123) 2022-04-15 21:26:23 +04:00

Flipper Zero Unleashed Firmware

fzCUSTOM

Welcome to Flipper Zero's Custom Firmware repo! Our goal is to make any features possible in this device without any limitations!

Please help us realize emulation for all dynamic (rolling codes) protocols and brute-force app!

Please use for experimental purposes only!



Our Discord Community:
Unofficial Discord Community


Update firmware

Get Latest Firmware from GitHub Releases



With offline update on flipper

Replace (CURRENT VERSION) with version that you downloaded from releases

  • Unpack flipper-z-f7-update-(CURRENT VERSION).tgz (or .zip) into any free folder on your PC or smartphone

  • You should find folder named f7-update-(CURRENT VERSION) that contains files like update.fuf, resources.tar and etc..

  • Remove microSD card from flipper and insert it into PC or smartphone (you can skip this step and upload all files using qFlipper)

  • Create new folder update on the root of the microSD card and move folder that you previously extracted from archive - f7-update-(CURRENT VERSION) into update on microSD card

  • So result should look like update/f7-update-(CURRENT VERSION)/ with all files in this folder on microSD card, remember iOS default Files app doesnt show all files properly (3 instead of 5), so you need to use another app for unpacking or use PC or Android

  • Verify that all files are present on your microSD card:

    • update/f7-update-(CURRENT VERSION)/flipper-z-f7-full-(CURRENT VERSION).dfu
    • update/f7-update-(CURRENT VERSION)/flipper-z-f7-updater-(CURRENT VERSION).bin
    • update/f7-update-(CURRENT VERSION)/resources.tar
    • update/f7-update-(CURRENT VERSION)/stm32wb5x_BLE_Stack_light_fw.bin
    • update/f7-update-(CURRENT VERSION)/update.fuf
  • After all you need to insert microSD card back into flipper, navigate into filebrowser, open this file update/f7-update-(CURRENT VERSION)/update.fuf

  • Update will start, wait for all stages, and when flipper started after update, you can upload any custom IR libs, and other stuff using qFlipper or directly into microSD card



With qFlipper

Replace (CURRENT VERSION) with version that you downloaded from releases

  • Connect your device and select Update from file then select flipper-z-f7-full-(CURRENT VERSION).dfu

  • And wait, if all flashed successfully - you can manually upload IR libs and other stuff to sd card

  • If you doing install for first time or migrating from official fw, unpack 3 folders from archive sd-card-(CURRENT VERSION).zip onto your microSD card



With USB DFU

  1. Download latest Firmware

  2. Reboot Flipper to Bootloader

  • Press and hold ← Left + ↩ Back for reset
  • Release ↩ Back and keep holding ← Left until blue LED lights up
  • Release ← Left

Replace (CURRENT VERSION) with version that you downloaded from releases

  1. Run dfu-util -D flipper-z-f7-full-(CURRENT VERSION).dfu -a 0

  2. If you doing install for first time or migrating from official fw, unpack 3 folders from archive sd-card-(CURRENT VERSION).zip onto your microSD card



Where I can find IR, SubGhz, ... DBs, and other stuff?

Awesome Flipper Zero - Github



How to Build by yourself:

Clone the Repository

You should clone with

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

Build with Docker

Prerequisites

  1. Install Docker Engine and Docker Compose
  2. Prepare the container:
docker-compose up -d

Compile everything for development

docker-compose exec dev make

Compile everything for release + get updater package to update from microSD card

docker-compose exec dev make updater_package TARGET=f7 DEBUG=0 COMPACT=1

Check dist/ for build outputs.

Use flipper-z-{target}-full-{suffix}.dfu to flash your device.

If compilation fails, make sure all submodules are all initialized. Either clone with --recursive or use git submodule update --init --recursive.

Links

Project structure

  • applications - Applications and services used in firmware
  • assets - Assets used by applications and services
  • core - Furi Core: os level primitives and helpers
  • debug - Debug tool: GDB-plugins, SVD-file and etc
  • docker - Docker image sources (used for firmware build automation)
  • documentation - Documentation generation system configs and input files
  • firmware - Firmware source code
  • lib - Our and 3rd party libraries, drivers and etc...
  • make - Make helpers
  • scripts - Supplementary scripts and python libraries home

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