2021-08-16 20:22:30 +00:00
# Flipper Zero Firmware
2020-09-17 07:43:04 +00:00
[![Discord ](https://img.shields.io/discord/740930220399525928.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2 )](http://flipperzero.one/discord)
2020-08-17 22:10:34 +00:00
2021-08-17 10:38:47 +00:00
![Show me the code ](https://habrastorage.org/webt/eo/m0/e4/eom0e4btudte7nrhnyic-laiog0.png )
2020-08-01 19:54:58 +00:00
2021-01-29 11:18:10 +00:00
Welcome to [Flipper Zero ](https://flipperzero.one/ )'s Firmware repo!
2021-08-16 20:22:30 +00:00
Our goal is to create nice and clean code with good documentation, to make it a pleasure for everyone to work with.
2020-08-01 19:47:07 +00:00
2022-05-23 18:19:41 +00:00
# Clone the Repository
You should clone with
```shell
$ git clone --recursive https://github.com/flipperdevices/flipperzero-firmware.git
```
2022-09-14 16:11:38 +00:00
# Read the Docs
Check out details on [how to build firmware ](documentation/fbt.md ), [write applications ](documentation/AppsOnSDCard.md ), [un-brick your device ](documentation/KeyCombo.md ) and more in `documentation` folder.
2020-11-04 09:49:35 +00:00
# Update firmware
2020-08-07 06:51:41 +00:00
2021-08-17 10:38:47 +00:00
[Get Latest Firmware from Update Server ](https://update.flipperzero.one/ )
2020-08-07 06:51:41 +00:00
2022-04-13 20:50:25 +00:00
Flipper Zero's firmware consists of two components:
2021-01-29 11:18:10 +00:00
2021-12-05 11:47:02 +00:00
- Core2 firmware set - proprietary components by ST: FUS + radio stack. FUS is flashed at factory and you should never update it.
- Core1 Firmware - HAL + OS + Drivers + Applications.
2021-01-29 11:18:10 +00:00
2022-07-17 10:09:47 +00:00
They both must be flashed in the order described.
2021-01-29 11:18:10 +00:00
2022-06-26 12:00:03 +00:00
## With offline update package
2022-06-30 16:06:12 +00:00
With Flipper attached over USB:
2022-08-02 13:46:43 +00:00
`./fbt flash_usb`
2022-06-30 16:06:12 +00:00
Just building the package:
2022-08-02 13:46:43 +00:00
`./fbt updater_package`
2022-06-26 12:00:03 +00:00
2022-06-30 16:06:12 +00:00
To update, copy the resulting directory to Flipper's SD card and navigate to `update.fuf` file in Archive app.
2022-06-26 12:00:03 +00:00
2021-01-29 11:18:10 +00:00
## With STLink
2022-04-13 20:50:25 +00:00
### Core1 Firmware
2021-01-29 11:18:10 +00:00
Prerequisites:
2021-08-16 20:22:30 +00:00
- Linux / macOS
2021-01-29 11:18:10 +00:00
- Terminal
2021-12-05 11:47:02 +00:00
- [arm-gcc-none-eabi ](https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads )
- openocd
2021-01-29 11:18:10 +00:00
2022-06-26 12:00:03 +00:00
One liner: `./fbt firmware_flash`
2021-01-29 11:18:10 +00:00
## With USB DFU
2020-10-23 08:42:53 +00:00
2021-07-24 13:53:02 +00:00
1. Download latest [Firmware ](https://update.flipperzero.one )
2020-10-23 08:42:53 +00:00
2021-12-05 11:47:02 +00:00
2. Reboot Flipper to Bootloader
2020-11-04 09:49:35 +00:00
- Press and hold `← Left` + `↩ Back` for reset
2021-10-21 12:52:06 +00:00
- Release `↩ Back` and keep holding `← Left` until blue LED lights up
- Release `← Left`
2020-10-23 08:42:53 +00:00
2021-10-21 12:52:06 +00:00
3. Run `dfu-util -D full.dfu -a 0`
2020-10-23 08:42:53 +00:00
2021-11-18 08:46:47 +00:00
# Build on Linux/macOS
2022-06-26 12:00:03 +00:00
Check out `documentation/fbt.md` for details on building and flashing firmware.
2021-11-18 08:46:47 +00:00
## macOS Prerequisites
2021-10-21 12:24:34 +00:00
2021-11-18 08:46:47 +00:00
Make sure you have [brew ](https://brew.sh ) and install all the dependencies:
2021-10-21 12:24:34 +00:00
```sh
2021-11-18 08:46:47 +00:00
brew bundle --verbose
2021-10-21 12:24:34 +00:00
```
2021-11-18 08:46:47 +00:00
## Linux Prerequisites
2022-08-28 15:39:08 +00:00
The FBT tool handles everything, only `git` is required.
2021-08-16 20:22:30 +00:00
2021-11-18 08:46:47 +00:00
### Optional dependencies
2021-08-16 20:22:30 +00:00
2021-11-18 08:46:47 +00:00
- openocd (debugging/flashing over SWD)
- heatshrink (compiling image assets)
- clang-format (code formatting)
- dfu-util (flashing over USB DFU)
- protobuf (compiling proto sources)
2021-08-16 20:22:30 +00:00
2021-11-18 08:46:47 +00:00
For example, to install them on Debian, use:
2021-08-16 20:22:30 +00:00
```sh
2021-11-18 08:46:47 +00:00
apt update
apt install openocd clang-format-13 dfu-util protobuf-compiler
2021-08-16 20:22:30 +00:00
```
2021-11-18 08:46:47 +00:00
heatshrink has to be compiled [from sources ](https://github.com/atomicobject/heatshrink ).
2021-08-16 20:22:30 +00:00
2021-11-18 08:46:47 +00:00
## Compile everything
2021-08-16 20:22:30 +00:00
2021-11-18 08:46:47 +00:00
```sh
2022-06-26 12:00:03 +00:00
./fbt
2021-11-18 08:46:47 +00:00
```
2021-08-16 20:22:30 +00:00
2021-11-18 08:46:47 +00:00
Check `dist/` for build outputs.
2021-08-16 20:22:30 +00:00
2021-11-18 08:46:47 +00:00
Use ** `flipper-z-{target}-full-{suffix}.dfu` ** to flash your device.
## Flash everything
2021-08-16 20:22:30 +00:00
2021-11-18 08:46:47 +00:00
Connect your device via ST-Link and run:
```sh
2022-06-26 12:00:03 +00:00
./fbt firmware_flash
2021-11-18 08:46:47 +00:00
```
2020-08-18 17:18:09 +00:00
2020-08-15 06:59:22 +00:00
# Links
2022-01-05 16:10:18 +00:00
2021-08-16 20:22:30 +00:00
* Discord: [flipp.dev/discord ](https://flipp.dev/discord )
* Website: [flipperzero.one ](https://flipperzero.one )
2020-08-15 06:59:22 +00:00
* Kickstarter page: [kickstarter.com ](https://www.kickstarter.com/projects/flipper-devices/flipper-zero-tamagochi-for-hackers )
2020-08-17 09:02:31 +00:00
* Forum: [forum.flipperzero.one ](https://forum.flipperzero.one/ )
2021-08-08 18:03:25 +00:00
2022-01-10 19:46:20 +00:00
# Project structure
- `applications` - Applications and services used in firmware
- `assets` - Assets used by applications and services
2022-07-20 10:56:33 +00:00
- `furi` - Furi Core: os level primitives and helpers
2022-01-10 19:46:20 +00:00
- `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 and etc...
- `scripts` - Supplementary scripts and python libraries home
Also pay attention to `ReadMe.md` files inside of those directories.