mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-06-13 19:43:34 -07:00
Merge branch 'main' into dev
This commit is contained in:
@@ -7,19 +7,19 @@
|
||||
[Intro](https://github.com/ClaraCrazy/Flipper-Xtreme#What-makes-it-special) | [Animations](https://github.com/ClaraCrazy/Flipper-Xtreme#Animations) | [Changelog](https://github.com/ClaraCrazy/Flipper-Xtreme#list-of-changes) | [Known bugs](https://github.com/ClaraCrazy/Flipper-Xtreme#Known-bugs) | [Install](https://github.com/ClaraCrazy/Flipper-Xtreme#Install) | [Build](https://github.com/ClaraCrazy/Flipper-Xtreme#build-it-yourself) | [Discord](https://discord.gg/mC2FxbYSMr)
|
||||
-----
|
||||
|
||||
This firmware is a complete overhaul of "RM" (RogueMaster), with changes on all graphics, `disgusting` code and more. Xtreme brings you the most for your little flipper companion.
|
||||
This firmware is a complete overhaul of the Official Firmware in combination with RM (RogueMaster), with changes on all graphics, `disgusting` code and more. Xtreme brings you the most for your little flipper companion.
|
||||
|
||||
-----
|
||||
<br>
|
||||
<h2 align="center">What makes it special?</h2>
|
||||
|
||||
This firmware is based on RogueMaster (I know, should have forked unleashed, too late now). It combines the bleeding-edge PRs of Rogues firmware with actual understanding of whats going on, fixing bugs that are regularly talked about, removing unstable / broken applications (.FAP) and actually using the level system that just sits abandoned in RM.
|
||||
This firmware is based on the Official Firmware, with some tweaks from RogueMaster, before he stole my code. The goal of this is to regularly bring out updates with an actual understanding of whats going on, fixing bugs that are regularly talked about, removing unstable / broken applications (.FAP) and actually using the level system that just sits abandoned everywhere else.
|
||||
<br><br>
|
||||
- The focus of this firmware is functionality & stability: If an App doesnt work, its gone
|
||||
|
||||
- Giving the level system a purpose: Right now, each level unlocks a new wallpaper. More on that below
|
||||
|
||||
- Clean upgraded code: RM wrote some updates to certain files. These are... painful, to say the least. Here its all rewritten and cleaned up. I invite you all to compare the `applications\services\dolphin\helpers\dolphin-state.c`, lol
|
||||
- Clean upgraded code: RM wrote some updates to certain files. These are... painful, to say the least. Here its all rewritten and cleaned up. I invite you all to compare the `applications\services\dolphin\helpers\dolphin-state.c`, lol. [Disgusting code](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/blob/51286c21ddd2f42124e05f11240bbce267e349ba/applications/services/dolphin/helpers/dolphin_state.c)
|
||||
|
||||
- Up2Date: This firmware receives updates from a few repositories, not just from its Upstream. If there are functional, but yet un-merged Pull requests on another flipper firmware that are good, they will be in here!
|
||||
|
||||
@@ -52,7 +52,7 @@ Note: This repo is always updated with OFW, Unleashed & Rogue. No need to mentio
|
||||
- SFW Mode
|
||||
- Jamming Files
|
||||
- Custom subghz presets
|
||||
- Subghz and IR signal replication via gpio (allows using external antenas and emitters)
|
||||
- Subghz and IR signal replication via gpio | Credits to @ankris812, exact commit lost to time as of rn
|
||||
- Honda Keys (CVE-2022-27254)
|
||||
- NSFW Animations tied to the level system. Read more above
|
||||
- New API Routes for Locale settings
|
||||
|
||||
@@ -1,71 +0,0 @@
|
||||
|
||||
# How to Build by yourself
|
||||
|
||||
## Install required software
|
||||
|
||||
- Git - [Download](https://git-scm.com/downloads) for Windows, on Linux/Mac install via package manager (`brew`, `apt`, ...)
|
||||
|
||||
For development:
|
||||
|
||||
- Git
|
||||
- Python3
|
||||
- VSCode
|
||||
|
||||
## Clone the Repository
|
||||
|
||||
You should clone with
|
||||
|
||||
```shell
|
||||
git clone --recursive https://github.com/ClaraCrazy/Flipper-Xtreme.git
|
||||
```
|
||||
|
||||
## Building
|
||||
|
||||
Check out [documentation/fbt.md](fbt.md) for details on building and flashing firmware.
|
||||
|
||||
### Compile
|
||||
|
||||
Linux.MacOS
|
||||
|
||||
```shell
|
||||
./fbt
|
||||
```
|
||||
|
||||
Windows (powershell)
|
||||
|
||||
```powershell
|
||||
.\fbt.cmd
|
||||
```
|
||||
|
||||
Production standard Options
|
||||
|
||||
```shell
|
||||
./fbt
|
||||
--with-updater
|
||||
COMPACT=1
|
||||
DEBUG=0
|
||||
updater_package
|
||||
```
|
||||
|
||||
Usefull options, check `./fbt -h` and [fbt.md](fbt.md) for more
|
||||
|
||||
```shell
|
||||
DEBUG=1 # Enable debug build
|
||||
COMPACT=1 # Optimize for size
|
||||
DIST_SUFFIX=custom # Suffix for binaries in build output for dist targets
|
||||
CUSTOM_FLIPPER_NAME=Flipper # Replaces OTP flipper name with custom string of 8 chars
|
||||
UPDATE_SPLASH=update_default # Directory name with slideshow frames to render after installing update package
|
||||
LOADER_AUTOSTART= # Application name to automatically run on Flipper boot
|
||||
FIRMWARE_APPS="{
|
||||
'default': ['crypto_start', 'basic_services', 'basic_apps', 'updater_app', 'archive', 'custom_apps', 'passport', 'system_settings', 'about', 'basic_plugins', 'custom_games', 'wifi_plugins', 'external_apps', 'debug_apps'],
|
||||
'unit_tests': ['basic_services', 'updater_app', 'unit_tests'],
|
||||
'ext_apps': ['basic_services', 'external_apps']}"
|
||||
# Map of (configuration_name->application_list)
|
||||
-c # Clean
|
||||
```
|
||||
|
||||
Check `dist/` for build outputs.
|
||||
|
||||
Use **`flipper-z-{target}-full-{suffix}.dfu`** to flash your device.
|
||||
|
||||
If compilation fails, make sure all submodules are all initialized. Either clone with `--recursive` or use `git submodule update --init --recursive`.
|
||||
@@ -1,104 +0,0 @@
|
||||
|
||||
# Update firmware
|
||||
|
||||
## [Get Latest Firmware from GitHub Releases](https://github.com/ClaraCrazy/Flipper-Xtreme/releases)
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
### **If installing for first time - Update to the latest official firmware before proceeding**
|
||||
### **If you are already using unleashed - no need to install any other FW or version before installing update, just install latest version on top of your current one, all will be fine**
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
## With iOS mobile app
|
||||
|
||||
- Be sure you updated to latest official release before(if installing for the first time), and verify that microSD card is installed
|
||||
- Open latest release page - [Releases](https://github.com/ClaraCrazy/Flipper-Xtreme/releases/latest)
|
||||
- Download `flipper-z-f7-update-(version).tgz`
|
||||
- Open downloads in ios Files app, select downloaded `.tgz` file, click Share, select Flipper App
|
||||
- In flipper app click green `Update` button, be sure it shows `Custom flipper-z-f7-update...` in Update Channel
|
||||
- Wait until update is finished
|
||||
- Error in ios app will show up, but flipper will be updated successfully
|
||||
- And if all flashed successfully - you will have all needed assets pre installed
|
||||
- Done
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
## With Android mobile app (with .tgz download)
|
||||
|
||||
- Be sure you updated to latest official release before(if installing for the first time), and verify that microSD card is installed
|
||||
- Open latest release page - [Releases](https://github.com/ClaraCrazy/Flipper-Xtreme/releases/latest)
|
||||
- Download `flipper-z-f7-update-(version).tgz`
|
||||
- In flipper app click `Update channel` button, select `Custom`
|
||||
- Select downloaded `.tgz` file
|
||||
- Click Update
|
||||
- Wait until update is finished
|
||||
- And if all flashed successfully - you will have all needed assets pre installed
|
||||
- Done
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
## With Android mobile app (via web updater link)
|
||||
|
||||
- Be sure you updated to latest official release before(if installing for the first time), and verify that microSD card is installed
|
||||
- Open latest release page - [Releases](https://github.com/ClaraCrazy/Flipper-Xtreme/releases/latest)
|
||||
- Click `Install via Web Updater`
|
||||
- It will ask to open with browser or Flipper app, select Flipper App
|
||||
- Continue to install
|
||||
- Wait until update is finished
|
||||
- And if all flashed successfully - you will have all needed assets pre installed
|
||||
- Done
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
## With qFlipper (1.2.0+)
|
||||
|
||||
- Download qFlipper that allows `.tgz` installation [Download qFlipper (official link)](https://flipperzero.one/update)
|
||||
- Be sure you updated to latest official release before(only if installing for the first time), and verify that microSD card is installed
|
||||
- Open latest release page - [Releases](https://github.com/ClaraCrazy/Flipper-Xtreme/releases/latest)
|
||||
- Download `flipper-z-f7-update-(version).tgz`
|
||||
- Launch qFlipper
|
||||
- Connect your device and select `Install from file`
|
||||
- Select `flipper-z-f7-update-(version).tgz` that you downloaded
|
||||
- Update will start
|
||||
- And wait, if all flashed successfully - you will have all needed assets pre installed
|
||||
- Done
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
## With offline update on flipper
|
||||
|
||||
### **Replace (CURRENT VERSION) with version that you downloaded from releases**
|
||||
- Unpack `flipper-z-f7-update-(CURRENT VERSION).tgz` (or `.zip`) into any free folder on your PC or smartphone
|
||||
- You should find folder named `f7-update-(CURRENT VERSION)` that contains files like `update.fuf`, `resources.tar` and etc..
|
||||
- Remove microSD card from flipper and insert it into PC or smartphone (you can skip this step and upload all files using qFlipper)
|
||||
- Create new folder `update` on the root of the microSD card and move folder that you previously extracted from archive - `f7-update-(CURRENT VERSION)` into `update` on microSD card
|
||||
- So result should look like `update/f7-update-(CURRENT VERSION)/` with all files in this folder on microSD card, remember iOS default Files app doesn't show all files properly (3 instead of 6), so you need to use another app for unpacking or use PC or Android
|
||||
- Verify that all files are present on your microSD card
|
||||
- After all you need to insert microSD card back into flipper, navigate into filebrowser, open this file
|
||||
`update/f7-update-(CURRENT VERSION)/update.fuf`
|
||||
- Update will start, wait for all stages
|
||||
- Done
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
# After install:
|
||||
- ### If you installed using .dfu - unpack files from archive `sd-card-(CURRENT VERSION).zip` to your microSD card
|
||||
<br>
|
||||
Reference in New Issue
Block a user