2022-03-23 20:30:34 +00:00
# Flipper Zero Unleashed Firmware
2020-09-17 07:43:04 +00:00
2022-04-09 00:58:03 +00:00
< a href = "https://ibb.co/5Fgtgmg" > < img src = "https://i.ibb.co/rsRTRYR/image.png" alt = "image" border = "0" > < / a > (https://discord.gg/58D6E8BtTU)
2020-08-17 22:10:34 +00:00
2022-03-23 20:30:17 +00:00
< a href = "https://ibb.co/wQ12PVc" > < img src = "https://i.ibb.co/wQ12PVc/fzCUSTOM.png" alt = "fzCUSTOM" border = "0" > < / a >
2020-08-01 19:54:58 +00:00
2022-03-23 20:32:22 +00:00
Welcome to [Flipper Zero ](https://flipperzero.one/ )'s Custom Firmware repo!
2022-03-23 20:32:58 +00:00
Our goal is to make any features possible in this device without any stupid limitations! Please help us realize emulation for all dynamic (rolling codes) protocols and brute-force app!
2020-08-01 19:47:07 +00:00
2020-11-04 09:49:35 +00:00
# Update firmware
2020-08-07 06:51:41 +00:00
2022-03-23 20:30:17 +00:00
[Get Latest Firmware from Update Server ](https://github.com/Eng1n33r/flipperzero-firmware )
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-04-15 17:26:23 +00:00
They both must be flashed in order described.
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
2021-12-05 11:47:02 +00:00
One liner: `make flash`
2021-01-29 11:18:10 +00:00
2021-12-05 11:47:02 +00:00
### Core2 flashing procedures
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
- STM32_Programmer_CLI (v2.5.0) added to $PATH
2021-01-29 11:18:10 +00:00
2021-12-05 11:47:02 +00:00
One liner: `make flash_radio`
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`
<!-- ![Switch to DFU sequence ](https://habrastorage.org/webt/uu/c3/g2/uuc3g2n36f2sju19rskcvjzjf6w.png ) -->
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 with Docker
2020-08-18 17:18:09 +00:00
2021-08-16 20:22:30 +00:00
## Prerequisites
1. Install [Docker Engine and Docker Compose ](https://www.docker.com/get-started )
2021-11-18 08:46:47 +00:00
2. Prepare the container:
2021-12-05 11:47:02 +00:00
```sh
docker-compose up -d
```
2021-08-16 20:22:30 +00:00
2021-10-21 12:24:34 +00:00
## Compile everything
```sh
2021-11-18 08:46:47 +00:00
docker-compose exec dev make
2021-10-21 12:24:34 +00:00
```
2021-11-18 08:46:47 +00:00
Check `dist/` for build outputs.
Use ** `flipper-z-{target}-full-{suffix}.dfu` ** to flash your device.
# Build on Linux/macOS
## 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
### gcc-arm-none-eabi
2021-08-16 20:22:30 +00:00
```sh
2021-11-18 08:46:47 +00:00
toolchain="gcc-arm-none-eabi-10.3-2021.10"
toolchain_package="$toolchain-$(uname -m)-linux"
wget -P /opt "https://developer.arm.com/-/media/Files/downloads/gnu-rm/10.3-2021.10/$toolchain_package.tar.bz2"
tar xjf /opt/$toolchain_package.tar.bz2 -C /opt
rm /opt/$toolchain_package.tar.bz2
for file in /opt/$toolchain/bin/* ; do ln -s "${file}" "/usr/bin/$(basename ${file})" ; done
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
make
```
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
make whole
```
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
2022-04-14 18:51:35 +00:00
* Discord: [discord.gg/58D6E8BtTU ](https://discord.gg/58D6E8BtTU )
2021-08-16 20:22:30 +00:00
* 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
- `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.