Go to file
あく 5ae3d60101
Debug: update PyCortexMDebug to latest and refactor (#574)
* Debug: update PyCortexDebug to latest and refactor.
* Debug: format sources. Dockerfile: add missing dependency. Make: switch to gdb-py.
* Debug: port PyCortexMDebug to python2
* Docker: add missing debug dependencies
* Debug: cleanup local include in svd_gdb.py
2021-07-12 05:13:01 +03:00
.github Trigger update reindex after artifacts upload (#542) 2021-06-25 20:08:01 +03:00
applications [FL-1491] Gui: input injection in screen stream (#573) 2021-07-09 05:16:54 +03:00
assets GUI: Icons and IconsAnimation refactoring. Switch assets to new Icon Api (#566) 2021-07-07 11:57:49 +03:00
bootloader Bootloader: always treat initial state as tainted. Firmware: mark boot state as tainted on boot. (#558) 2021-07-02 16:02:36 +03:00
core Furi: proper thread id in heap tracking (#572) 2021-07-09 02:41:22 +03:00
debug Debug: update PyCortexMDebug to latest and refactor (#574) 2021-07-12 05:13:01 +03:00
docker Debug: update PyCortexMDebug to latest and refactor (#574) 2021-07-12 05:13:01 +03:00
firmware [FL-1398] IRDA: Implement timings encoder, add RC-6 (#570) 2021-07-08 21:20:13 +03:00
lib [FL-1501] NFC: read Mifare Ultralight (#571) 2021-07-08 23:41:34 +03:00
make Debug: update PyCortexMDebug to latest and refactor (#574) 2021-07-12 05:13:01 +03:00
scripts GUI: Icons and IconsAnimation refactoring. Switch assets to new Icon Api (#566) 2021-07-07 11:57:49 +03:00
.clang-format Clang formatter: add indent to wrapped functions names. (#548) 2021-07-01 03:45:20 +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 Removed app floopper-bloopper and font FontGlyph (#549) 2021-07-01 14:33:43 +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 Update readme to match new release folder (#522) 2021-06-18 08:05:08 +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