Go to file
あく 359bbdfe69
[FL-1326] Move heap4 allocator to furi core and add allocation tracing capability (#529)
* Move heap memory allocator to furi core
* Newlibc: add malloc guards
* Furi: add cmsis thread id getter
* Core: add tracing capability to heap allocator. Add heap tracing support to furi thread. Add heap trace support to app-loader.
2021-06-23 17:48:44 +03:00
.github [FL-1457] Update link to release (#527) 2021-06-19 22:49:12 +03:00
applications [FL-1326] Move heap4 allocator to furi core and add allocation tracing capability (#529) 2021-06-23 17:48:44 +03:00
assets [FL-1250, FL-1252, FL-1323, FL-1324] New IRDA Application (part 1) (#497) 2021-06-02 18:16:05 +03:00
bootloader [FL-835] Factory reset. Cli refactoring. (#466) 2021-05-18 16:57:39 +03:00
core [FL-1326] Move heap4 allocator to furi core and add allocation tracing capability (#529) 2021-06-23 17:48:44 +03:00
debug Remove empty comments from FreeRTOSgdb/EventGroup.py (#428) 2021-04-26 14:58:06 +03:00
docker Unit tests: fix IRDA test data (#488) 2021-05-25 12:43:14 +03:00
firmware [FL-1326] Move heap4 allocator to furi core and add allocation tracing capability (#529) 2021-06-23 17:48:44 +03:00
lib [FL-1404] iButton long names fix (#528) 2021-06-22 12:56:57 +03:00
make [FL-1156, FL-1249] Add IRDA encoder/decoder library (#451) 2021-05-18 13:51:00 +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 [FL-1250, FL-1252, FL-1323, FL-1324] New IRDA Application (part 1) (#497) 2021-06-02 18:16:05 +03:00
.gitmodules [FL-977] Internal Storage (#455) 2021-05-11 11:29:44 +03:00
docker-compose.yml add dfu util to container, enable usb in container (#229) 2020-11-10 19:42:18 +03:00
flash_core1_main.sh Recator application build system: cleaner flags naming, set release flag to yes by default, include unit test and debug apps (#443) 2021-04-30 14:07:13 +03:00
flash_core2_ble.sh Update readme, add flashing scripts (#316) 2021-01-29 14:18:10 +03:00
flash_otp_version.sh [FL-123] SubGhz static code replay (#410) 2021-04-15 11:47:52 +03:00
flash_wipe.sh Wipe flash throw readout protection script (#325) 2021-02-05 02:47:59 +03:00
flipper-zero-cla.md Update flipper-zero-cla.md 2020-08-01 19:42:32 +03:00
ReadMe.md Update readme to match new release folder (#522) 2021-06-18 08:05:08 +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 three components:

  • Core2 firmware - proprietary componenets by ST: FUS + radio stack.
  • Core1 Bootloader - controls basic hardware initialization and loads firmware
  • Core1 Firmware - HAL + OS + Drivers + Applications

All 3 of them must be flashed in order described.

Core2 flashing procedures

Prerequisites:

  • Linux / MacOs
  • Terminal
  • STM32_Programmer_CLI added to $PATH

One liner: ./flash_core2_ble.sh

Core1 Bootloader + Firmware

Prerequisites:

  • Linux / MacOs
  • Terminal
  • Arm gcc noneabi
  • openocd

One liner: ./flash_core1_main.sh

With USB DFU

  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 full.dfu -a 0

Build from source

docker-compose exec dev make -C firmware flash for build and flash dev board (see applications/applications.mk for list of applications/examples)

Links