Go to file
あく 851a44dc59
[FL-1528] SubGhz: dma send (#579)
* Gui: input injection in screen stream
* Cli: expose ASCII table in public header
* SubGhz: dma output draft
* SubGhz: output initialization cleanup
* SubGhz: update dma send routine, add subghz_tx cli command.
* SubGhz: proper register address for DMA
* SubGhz: proper, fully working dma+tim2 configuration
* SubGhz: transmit PT with cli.
* Drivers: fix invalid size in CC1101 PA_TABLE loading routine.
* Interrupts: configurable DMA isrs.
* F5: backport fixes.
* SubGhz: free buffer after use
* SubGhz: use sleep instead of reset at the end
* SubGhz: async tx repeat with circular DMA
* SubGhz: disable dma channel on complete, adjust PT send timings
* SubGhz: backport function singature change to F5
* SubGhz: add tx debug gpio
2021-07-15 16:54:11 +03:00
.github Trigger update reindex after artifacts upload (#542) 2021-06-25 20:08:01 +03:00
applications [FL-1528] SubGhz: dma send (#579) 2021-07-15 16:54:11 +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-1528] SubGhz: dma send (#579) 2021-07-15 16:54:11 +03:00
lib [FL-1528] SubGhz: dma send (#579) 2021-07-15 16:54:11 +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