mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-13 10:48:35 -07:00
Merge branch 'dev' into nfcf
This commit is contained in:
@@ -14,7 +14,7 @@ body:
|
|||||||
description: |
|
description: |
|
||||||
Please describe your feature request in as many details as possible.
|
Please describe your feature request in as many details as possible.
|
||||||
- Describe what it should do.
|
- Describe what it should do.
|
||||||
- Note whetever it is to extend existing functionality or introduce new functionality.
|
- Note whether it is to extend existing functionality or introduce new functionality.
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
|
|||||||
BIN
.github/assets/dark_theme_banner.png
vendored
Normal file
BIN
.github/assets/dark_theme_banner.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 48 KiB |
BIN
.github/assets/light_theme_banner.png
vendored
Normal file
BIN
.github/assets/light_theme_banner.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 44 KiB |
69
.github/workflows/unit_tests.yml
vendored
69
.github/workflows/unit_tests.yml
vendored
@@ -9,7 +9,7 @@ env:
|
|||||||
FBT_TOOLCHAIN_PATH: /opt
|
FBT_TOOLCHAIN_PATH: /opt
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
run_units_on_test_bench:
|
run_units_on_bench:
|
||||||
runs-on: [self-hosted, FlipperZeroTest]
|
runs-on: [self-hosted, FlipperZeroTest]
|
||||||
steps:
|
steps:
|
||||||
- name: 'Decontaminate previous build leftovers'
|
- name: 'Decontaminate previous build leftovers'
|
||||||
@@ -29,81 +29,38 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
echo "flipper=/dev/ttyACM0" >> $GITHUB_OUTPUT
|
echo "flipper=/dev/ttyACM0" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: 'Flashing target firmware'
|
|
||||||
id: first_full_flash
|
|
||||||
run: |
|
|
||||||
./fbt flash_usb_full PORT=${{steps.device.outputs.flipper}} FORCE=1
|
|
||||||
source scripts/toolchain/fbtenv.sh
|
|
||||||
python3 scripts/testing/await_flipper.py ${{steps.device.outputs.flipper}}
|
|
||||||
|
|
||||||
- name: 'Validating updater'
|
|
||||||
id: second_full_flash
|
|
||||||
if: success()
|
|
||||||
run: |
|
|
||||||
./fbt flash_usb_full PORT=${{steps.device.outputs.flipper}} FORCE=1
|
|
||||||
source scripts/toolchain/fbtenv.sh
|
|
||||||
python3 scripts/testing/await_flipper.py ${{steps.device.outputs.flipper}}
|
|
||||||
|
|
||||||
- name: 'Flash unit tests firmware'
|
- name: 'Flash unit tests firmware'
|
||||||
id: flashing
|
id: flashing
|
||||||
if: success()
|
if: success()
|
||||||
run: |
|
run: |
|
||||||
./fbt flash OPENOCD_ADAPTER_SERIAL=2A0906016415303030303032 FIRMWARE_APP_SET=unit_tests FORCE=1
|
./fbt flash OPENOCD_ADAPTER_SERIAL=2A0906016415303030303032 FIRMWARE_APP_SET=unit_tests FORCE=1
|
||||||
|
|
||||||
- name: 'Wait for flipper to finish updating'
|
- name: 'Wait for flipper and format ext'
|
||||||
id: connect
|
id: format_ext
|
||||||
if: steps.flashing.outcome == 'success'
|
if: steps.flashing.outcome == 'success'
|
||||||
run: |
|
run: |
|
||||||
source scripts/toolchain/fbtenv.sh
|
source scripts/toolchain/fbtenv.sh
|
||||||
python3 scripts/testing/await_flipper.py ${{steps.device.outputs.flipper}}
|
python3 scripts/testing/await_flipper.py ${{steps.device.outputs.flipper}}
|
||||||
|
python3 scripts/storage.py -p ${{steps.device.outputs.flipper}} format_ext
|
||||||
|
|
||||||
- name: 'Copy assets and unit tests data to flipper'
|
- name: 'Copy assets and unit data, reboot and wait for flipper'
|
||||||
id: copy
|
id: copy
|
||||||
if: steps.connect.outcome == 'success'
|
if: steps.format_ext.outcome == 'success'
|
||||||
run: |
|
run: |
|
||||||
source scripts/toolchain/fbtenv.sh
|
source scripts/toolchain/fbtenv.sh
|
||||||
|
python3 scripts/storage.py -p ${{steps.device.outputs.flipper}} -f send assets/resources /ext
|
||||||
python3 scripts/storage.py -p ${{steps.device.outputs.flipper}} -f send assets/unit_tests /ext/unit_tests
|
python3 scripts/storage.py -p ${{steps.device.outputs.flipper}} -f send assets/unit_tests /ext/unit_tests
|
||||||
|
python3 scripts/power.py -p ${{steps.device.outputs.flipper}} reboot
|
||||||
|
python3 scripts/testing/await_flipper.py ${{steps.device.outputs.flipper}}
|
||||||
|
|
||||||
- name: 'Run units and validate results'
|
- name: 'Run units and validate results'
|
||||||
|
id: run_units
|
||||||
if: steps.copy.outcome == 'success'
|
if: steps.copy.outcome == 'success'
|
||||||
run: |
|
run: |
|
||||||
source scripts/toolchain/fbtenv.sh
|
source scripts/toolchain/fbtenv.sh
|
||||||
python3 scripts/testing/units.py ${{steps.device.outputs.flipper}}
|
python3 scripts/testing/units.py ${{steps.device.outputs.flipper}}
|
||||||
|
|
||||||
- name: 'Get last release tag'
|
- name: 'Check GDB output'
|
||||||
id: release_tag
|
if: failure()
|
||||||
if: always()
|
|
||||||
run: |
|
run: |
|
||||||
echo "tag=$(git tag -l --sort=-version:refname | grep -v "rc\|RC" | head -1)" >> $GITHUB_OUTPUT
|
./fbt gdb_trace_all OPENOCD_ADAPTER_SERIAL=2A0906016415303030303032 FIRMWARE_APP_SET=unit_tests FORCE=1
|
||||||
|
|
||||||
- name: 'Decontaminate previous build leftovers'
|
|
||||||
if: always()
|
|
||||||
run: |
|
|
||||||
if [ -d .git ]; then
|
|
||||||
git submodule status || git checkout "$(git rev-list --max-parents=0 HEAD | tail -n 1)"
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: 'Checkout latest release'
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
if: always()
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
ref: ${{ steps.release_tag.outputs.tag }}
|
|
||||||
|
|
||||||
- name: 'Flash last release'
|
|
||||||
if: always()
|
|
||||||
run: |
|
|
||||||
./fbt flash OPENOCD_ADAPTER_SERIAL=2A0906016415303030303032 FIRMWARE_APP_SET=unit_tests FORCE=1
|
|
||||||
|
|
||||||
- name: 'Wait for flipper to finish updating'
|
|
||||||
if: always()
|
|
||||||
run: |
|
|
||||||
source scripts/toolchain/fbtenv.sh
|
|
||||||
python3 scripts/testing/await_flipper.py ${{steps.device.outputs.flipper}}
|
|
||||||
|
|
||||||
- name: 'Format flipper SD card'
|
|
||||||
id: format
|
|
||||||
if: always()
|
|
||||||
run: |
|
|
||||||
source scripts/toolchain/fbtenv.sh
|
|
||||||
python3 scripts/storage.py -p ${{steps.device.outputs.flipper}} format_ext
|
|
||||||
|
|||||||
77
.github/workflows/updater_test.yml
vendored
Normal file
77
.github/workflows/updater_test.yml
vendored
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
name: 'Updater test'
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
env:
|
||||||
|
TARGETS: f7
|
||||||
|
DEFAULT_TARGET: f7
|
||||||
|
FBT_TOOLCHAIN_PATH: /opt
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test_updater_on_bench:
|
||||||
|
runs-on: [self-hosted, FlipperZeroTest] # currently on same bench as units, needs different bench
|
||||||
|
steps:
|
||||||
|
- name: 'Decontaminate previous build leftovers'
|
||||||
|
run: |
|
||||||
|
if [ -d .git ]; then
|
||||||
|
git submodule status || git checkout "$(git rev-list --max-parents=0 HEAD | tail -n 1)"
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
ref: ${{ github.event.pull_request.head.sha }}
|
||||||
|
|
||||||
|
- name: 'Get flipper from device manager (mock)'
|
||||||
|
id: device
|
||||||
|
run: |
|
||||||
|
echo "flipper=/dev/ttyACM0" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: 'Flashing target firmware'
|
||||||
|
id: first_full_flash
|
||||||
|
run: |
|
||||||
|
source scripts/toolchain/fbtenv.sh
|
||||||
|
./fbt flash_usb_full PORT=${{steps.device.outputs.flipper}} FORCE=1
|
||||||
|
python3 scripts/testing/await_flipper.py ${{steps.device.outputs.flipper}}
|
||||||
|
|
||||||
|
- name: 'Validating updater'
|
||||||
|
id: second_full_flash
|
||||||
|
if: success()
|
||||||
|
run: |
|
||||||
|
source scripts/toolchain/fbtenv.sh
|
||||||
|
./fbt flash_usb PORT=${{steps.device.outputs.flipper}} FORCE=1
|
||||||
|
python3 scripts/testing/await_flipper.py ${{steps.device.outputs.flipper}}
|
||||||
|
|
||||||
|
- name: 'Get last release tag'
|
||||||
|
id: release_tag
|
||||||
|
if: failure()
|
||||||
|
run: |
|
||||||
|
echo "tag=$(git tag -l --sort=-version:refname | grep -v "rc\|RC" | head -1)" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: 'Decontaminate previous build leftovers'
|
||||||
|
if: failure()
|
||||||
|
run: |
|
||||||
|
if [ -d .git ]; then
|
||||||
|
git submodule status || git checkout "$(git rev-list --max-parents=0 HEAD | tail -n 1)"
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: 'Checkout latest release'
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
if: failure()
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
ref: ${{ steps.release_tag.outputs.tag }}
|
||||||
|
|
||||||
|
- name: 'Flash last release'
|
||||||
|
if: failure()
|
||||||
|
run: |
|
||||||
|
./fbt flash OPENOCD_ADAPTER_SERIAL=2A0906016415303030303032 FORCE=1
|
||||||
|
|
||||||
|
- name: 'Wait for flipper and format ext'
|
||||||
|
if: failure()
|
||||||
|
run: |
|
||||||
|
source scripts/toolchain/fbtenv.sh
|
||||||
|
python3 scripts/testing/await_flipper.py ${{steps.device.outputs.flipper}}
|
||||||
|
python3 scripts/storage.py -p ${{steps.device.outputs.flipper}} format_ext
|
||||||
6
Brewfile
6
Brewfile
@@ -1,6 +0,0 @@
|
|||||||
cask "gcc-arm-embedded"
|
|
||||||
brew "protobuf"
|
|
||||||
brew "gdb"
|
|
||||||
brew "open-ocd"
|
|
||||||
brew "clang-format"
|
|
||||||
brew "dfu-util"
|
|
||||||
@@ -3,15 +3,15 @@
|
|||||||
Nice to see you reading this document, we really appreciate it.
|
Nice to see you reading this document, we really appreciate it.
|
||||||
|
|
||||||
As all documents of this kind it's unable to cover everything.
|
As all documents of this kind it's unable to cover everything.
|
||||||
But it will cover general rules that we enforcing on PR review.
|
But it will cover general rules that we are enforcing on PR review.
|
||||||
|
|
||||||
Also we already have automatic rules checking and formatting,
|
Also, we already have automatic rules checking and formatting,
|
||||||
but it got it's limitations and this guide is still mandatory.
|
but it got its limitations and this guide is still mandatory.
|
||||||
|
|
||||||
Some part of this project do have it's own naming and coding guides.
|
Some part of this project do have its own naming and coding guides.
|
||||||
For example: assets. Take a look into `ReadMe.md` in assets folder for more details.
|
For example: assets. Take a look into `ReadMe.md` in assets folder for more details.
|
||||||
|
|
||||||
Also 3rd party libraries are none of our concern.
|
Also, 3rd party libraries are none of our concern.
|
||||||
|
|
||||||
And yes, this set is not final and we are open to discussion.
|
And yes, this set is not final and we are open to discussion.
|
||||||
If you want to add/remove/change something here please feel free to open new ticket.
|
If you want to add/remove/change something here please feel free to open new ticket.
|
||||||
@@ -30,7 +30,7 @@ Our guide is inspired by, but not claiming to be compatible with:
|
|||||||
|
|
||||||
Code we write is intended to be public.
|
Code we write is intended to be public.
|
||||||
Avoid one-liners from hell and keep code complexity under control.
|
Avoid one-liners from hell and keep code complexity under control.
|
||||||
Try to make code self explanatory and add comments if needed.
|
Try to make code self-explanatory and add comments if needed.
|
||||||
Leave references to standards that you are implementing.
|
Leave references to standards that you are implementing.
|
||||||
Use project wiki to document new/reverse engineered standards.
|
Use project wiki to document new/reverse engineered standards.
|
||||||
|
|
||||||
@@ -89,7 +89,7 @@ Enforced by linter.
|
|||||||
Suffixes:
|
Suffixes:
|
||||||
|
|
||||||
- `alloc` - allocate and init instance. C style constructor. Returns pointer to instance.
|
- `alloc` - allocate and init instance. C style constructor. Returns pointer to instance.
|
||||||
- `free` - deinit and release instance. C style destructor. Takes pointer to instance.
|
- `free` - de-init and release instance. C style destructor. Takes pointer to instance.
|
||||||
|
|
||||||
# C++ coding style
|
# C++ coding style
|
||||||
|
|
||||||
|
|||||||
@@ -23,8 +23,8 @@ Before writing code and creating PR make sure that it aligns with our mission an
|
|||||||
- PR that contains code intended to commit crimes is not going to be accepted.
|
- PR that contains code intended to commit crimes is not going to be accepted.
|
||||||
- Your PR must comply with our [Coding Style](CODING_STYLE.md)
|
- Your PR must comply with our [Coding Style](CODING_STYLE.md)
|
||||||
- Your PR must contain code compatible with project [LICENSE](LICENSE).
|
- Your PR must contain code compatible with project [LICENSE](LICENSE).
|
||||||
- PR will only be merged if it pass CI/CD.
|
- PR will only be merged if it passes CI/CD.
|
||||||
- PR will only be merged if it pass review by code owner.
|
- PR will only be merged if it passes review by code owner.
|
||||||
|
|
||||||
Feel free to ask questions in issues if you're not sure.
|
Feel free to ask questions in issues if you're not sure.
|
||||||
|
|
||||||
@@ -59,7 +59,7 @@ Commit the changes once you are happy with them. Make sure that code compilation
|
|||||||
### Pull Request
|
### Pull Request
|
||||||
|
|
||||||
When you're done making the changes, open a pull request, often referred to as a PR.
|
When you're done making the changes, open a pull request, often referred to as a PR.
|
||||||
- Fill out the "Ready for review" template so we can review your PR. This template helps reviewers understand your changes and the purpose of your pull request.
|
- Fill out the "Ready for review" template, so we can review your PR. This template helps reviewers understand your changes and the purpose of your pull request.
|
||||||
- Don't forget to [link PR to issue](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue) if you are solving one.
|
- Don't forget to [link PR to issue](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue) if you are solving one.
|
||||||
- Enable the checkbox to [allow maintainer edits](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork) so the branch can be updated for a merge.
|
- Enable the checkbox to [allow maintainer edits](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork) so the branch can be updated for a merge.
|
||||||
Once you submit your PR, a Docs team member will review your proposal. We may ask questions or request for additional information.
|
Once you submit your PR, a Docs team member will review your proposal. We may ask questions or request for additional information.
|
||||||
|
|||||||
21
Makefile
21
Makefile
@@ -1,21 +0,0 @@
|
|||||||
$(info +-------------------------------------------------+)
|
|
||||||
$(info | |)
|
|
||||||
$(info | Hello, this is Flipper team speaking! |)
|
|
||||||
$(info | |)
|
|
||||||
$(info | We've migrated to new build system |)
|
|
||||||
$(info | It's nice and based on scons |)
|
|
||||||
$(info | |)
|
|
||||||
$(info | Crash course: |)
|
|
||||||
$(info | |)
|
|
||||||
$(info | `./fbt` |)
|
|
||||||
$(info | `./fbt flash` |)
|
|
||||||
$(info | `./fbt debug` |)
|
|
||||||
$(info | |)
|
|
||||||
$(info | More details in documentation/fbt.md |)
|
|
||||||
$(info | |)
|
|
||||||
$(info | Also Please leave your feedback here: |)
|
|
||||||
$(info | https://flipp.dev/4RDu |)
|
|
||||||
$(info | or |)
|
|
||||||
$(info | https://flipp.dev/2XM8 |)
|
|
||||||
$(info | |)
|
|
||||||
$(info +-------------------------------------------------+)
|
|
||||||
187
ReadMe.md
187
ReadMe.md
@@ -1,134 +1,115 @@
|
|||||||
|
<picture>
|
||||||
|
<source media="(prefers-color-scheme: dark)" srcset="/.github/assets/dark_theme_banner.png">
|
||||||
|
<source media="(prefers-color-scheme: light)" srcset="/.github/assets/light_theme_banner.png">
|
||||||
|
<img
|
||||||
|
alt="A pixel art of a Dophin with text: Flipper Zero Official Repo"
|
||||||
|
src="/.github/assets/light_theme_banner.png">
|
||||||
|
</picture>
|
||||||
|
|
||||||
# Flipper Zero Firmware
|
# Flipper Zero Firmware
|
||||||
|
|
||||||
[](http://flipperzero.one/discord)
|
- [Flipper Zero Official Website](https://flipperzero.one). A simple way to explain to your friends what the Flipper Zero can do
|
||||||
|
- [Flipper Zero Firmware Update](https://update.flipperzero.one). Improvements for your dolphin: latest firmware releases, upgrade tools for PC and Mobile devices
|
||||||
|
- [User Documentation](https://docs.flipperzero.one). Learn more about your dolphin: specs, usage guides, and everything that you wanted to ask
|
||||||
|
|
||||||

|
# Contributing
|
||||||
|
|
||||||
Welcome to [Flipper Zero](https://flipperzero.one/)'s Firmware repo!
|
Our main goal is to build a healthy, sustainable community around the Flipper and be open to any new ideas and contributions. We also have some rules and taboos here, so please read this page and our [Code Of Conduct](/CODE_OF_CONDUCT.md) carefully.
|
||||||
Our goal is to create nice and clean code with good documentation, to make it a pleasure for everyone to work with.
|
|
||||||
|
|
||||||
# Clone the Repository
|
## I need help
|
||||||
|
|
||||||
|
The best place to search for answers is our [User Documentation](https://docs.flipperzero.one). If you can't find the answer there, you can check our [Discord Server](https://flipp.dev/discord) or our [Forum](https://forum.flipperzero.one/).
|
||||||
|
|
||||||
|
## I want to report an issue
|
||||||
|
|
||||||
|
If you've found an issue and want to report it, please check our [Issues](https://github.com/flipperdevices/flipperzero-firmware/issues) page. Make sure that the description contains information about the firmware version you're using, your platform, and the proper steps to reproduce the issue.
|
||||||
|
|
||||||
|
## I want to contribute code
|
||||||
|
|
||||||
|
Before opening a PR, please confirm that your changes must be contained in the firmware. Many ideas can easily be implemented as external applications and published in the Flipper Application Catalog (coming soon). If you are unsure, you can ask on the [Discord Server](https://flipp.dev/discord) or the [Issues](https://github.com/flipperdevices/flipperzero-firmware/issues) page, and we'll help you find the right place for your code.
|
||||||
|
|
||||||
|
Also, please read our [Contribution Guide](/CONTRIBUTING.md), and our [Coding Style](/CODING_STYLE.md), and ensure that your code is compatible with our project [License](/LICENSE).
|
||||||
|
|
||||||
|
Finally, open a [Pull Request](https://github.com/flipperdevices/flipperzero-firmware/pulls) and ensure that CI/CD statuses are all green.
|
||||||
|
|
||||||
|
# Development
|
||||||
|
|
||||||
|
The Flipper Zero Firmware is written in C, with some bits and pieces written in C++ and armv7m assembly languages. An intermediate level of C knowledge is recommended for comfortable programming. For Flipper applications, we support C, C++, and armv7m assembly languages.
|
||||||
|
|
||||||
|
## Requirements
|
||||||
|
|
||||||
|
Supported development platforms:
|
||||||
|
|
||||||
|
- Windows 10+ with PowerShell and Git (x86_64)
|
||||||
|
- macOS 12+ with Command Line tools (x86_64, arm64)
|
||||||
|
- Ubuntu 20.04+ with build-essential and Git (x86_64)
|
||||||
|
|
||||||
|
Supported in-circuit debuggers (optional but highly recommended):
|
||||||
|
|
||||||
|
- [Flipper Zero Wi-Fi Development Board](https://shop.flipperzero.one/products/wifi-devboard)
|
||||||
|
- ST-Link
|
||||||
|
- J-Link
|
||||||
|
|
||||||
|
Everything else will be taken care of by Flipper Build System.
|
||||||
|
|
||||||
|
## Cloning Source Code
|
||||||
|
|
||||||
|
Ensure that you have enough space and clone source code with Git:
|
||||||
|
|
||||||
You should clone with
|
|
||||||
```shell
|
```shell
|
||||||
$ git clone --recursive https://github.com/flipperdevices/flipperzero-firmware.git
|
git clone --recursive https://github.com/flipperdevices/flipperzero-firmware.git
|
||||||
```
|
```
|
||||||
|
|
||||||
# Read the Docs
|
## Building
|
||||||
|
|
||||||
Check out details on [how to build firmware](documentation/fbt.md), [write applications](documentation/AppsOnSDCard.md), [un-brick your device](documentation/KeyCombo.md) and more in `documentation` folder.
|
Build firmware using Flipper Build Tool:
|
||||||
|
|
||||||
# Update firmware
|
```shell
|
||||||
|
|
||||||
[Get Latest Firmware from Update Server](https://update.flipperzero.one/)
|
|
||||||
|
|
||||||
Flipper Zero's firmware consists of two components:
|
|
||||||
|
|
||||||
- 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.
|
|
||||||
|
|
||||||
They both must be flashed in the order described.
|
|
||||||
|
|
||||||
## With offline update package
|
|
||||||
|
|
||||||
With Flipper attached over USB:
|
|
||||||
|
|
||||||
`./fbt flash_usb`
|
|
||||||
|
|
||||||
Just building the package:
|
|
||||||
|
|
||||||
`./fbt updater_package`
|
|
||||||
|
|
||||||
To update, copy the resulting directory to Flipper's SD card and navigate to `update.fuf` file in Archive app.
|
|
||||||
|
|
||||||
## With STLink
|
|
||||||
|
|
||||||
### Core1 Firmware
|
|
||||||
|
|
||||||
Prerequisites:
|
|
||||||
|
|
||||||
- Linux / macOS
|
|
||||||
- Terminal
|
|
||||||
- [arm-gcc-none-eabi](https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads)
|
|
||||||
- openocd
|
|
||||||
|
|
||||||
One-liner: `./fbt firmware_flash`
|
|
||||||
|
|
||||||
## With USB DFU
|
|
||||||
|
|
||||||
1. Download latest [Firmware](https://update.flipperzero.one)
|
|
||||||
|
|
||||||
2. Reboot Flipper to Bootloader
|
|
||||||
- Press and hold `← Left` + `↩ Back` for reset
|
|
||||||
- Release `↩ Back` and keep holding `← Left` until blue LED lights up
|
|
||||||
- Release `← Left`
|
|
||||||
|
|
||||||
3. Run `dfu-util -D full.dfu -a 0`
|
|
||||||
|
|
||||||
# Build on Linux/macOS
|
|
||||||
|
|
||||||
Check out `documentation/fbt.md` for details on building and flashing firmware.
|
|
||||||
|
|
||||||
## macOS Prerequisites
|
|
||||||
|
|
||||||
Make sure you have [brew](https://brew.sh) and install all the dependencies:
|
|
||||||
```sh
|
|
||||||
brew bundle --verbose
|
|
||||||
```
|
|
||||||
|
|
||||||
## Linux Prerequisites
|
|
||||||
|
|
||||||
The FBT tool handles everything, only `git` is required.
|
|
||||||
|
|
||||||
### Optional dependencies
|
|
||||||
|
|
||||||
- openocd (debugging/flashing over SWD)
|
|
||||||
- heatshrink (compiling image assets)
|
|
||||||
- clang-format (code formatting)
|
|
||||||
- dfu-util (flashing over USB DFU)
|
|
||||||
- protobuf (compiling proto sources)
|
|
||||||
|
|
||||||
For example, to install them on Debian, use:
|
|
||||||
```sh
|
|
||||||
apt update
|
|
||||||
apt install openocd clang-format-13 dfu-util protobuf-compiler
|
|
||||||
```
|
|
||||||
|
|
||||||
heatshrink has to be compiled [from sources](https://github.com/atomicobject/heatshrink).
|
|
||||||
|
|
||||||
## Compile everything
|
|
||||||
|
|
||||||
```sh
|
|
||||||
./fbt
|
./fbt
|
||||||
```
|
```
|
||||||
|
|
||||||
Check `dist/` for build outputs.
|
## Flashing Firmware using an in-circuit debugger
|
||||||
|
|
||||||
Use **`flipper-z-{target}-full-{suffix}.dfu`** to flash your device.
|
Connect your in-circuit debugger to the Flipper and flash firmware using Flipper Build Tool:
|
||||||
|
|
||||||
## Flash everything
|
```shell
|
||||||
|
./fbt flash
|
||||||
Connect your device via ST-Link and run:
|
|
||||||
```sh
|
|
||||||
./fbt firmware_flash
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Flashing Firmware using USB
|
||||||
|
|
||||||
|
Ensure that your Flipper is working, connect it using a USB cable and flash firmware using Flipper Build Tool:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
./fbt flash_usb
|
||||||
|
```
|
||||||
|
|
||||||
|
## Documentation
|
||||||
|
|
||||||
|
- [Flipper Build Tool](/documentation/fbt.md) - building, flashing, and debugging Flipper software
|
||||||
|
- [Applications](/documentation/AppsOnSDCard.md), [Application Manifest](/documentation/AppManifests.md) - developing, building, deploying, and debugging Flipper applications
|
||||||
|
- [Hardware combos and Un-bricking](/documentation/KeyCombo.md) - recovering your Flipper from most nasty situations
|
||||||
|
- [Flipper File Formats](/documentation/file_formats) - everything about how Flipper stores your data and how you can work with it
|
||||||
|
- [Universal Remotes](/documentation/UniversalRemotes.md) - contributing your infrared remote to the universal remote database
|
||||||
|
- [Firmware Roadmap](/documentation/RoadMap.md)
|
||||||
|
- And much more in the [Documentation](/documentation) folder
|
||||||
|
|
||||||
# Links
|
# Links
|
||||||
|
|
||||||
* Discord: [flipp.dev/discord](https://flipp.dev/discord)
|
- Discord: [flipp.dev/discord](https://flipp.dev/discord)
|
||||||
* Website: [flipperzero.one](https://flipperzero.one)
|
- Website: [flipperzero.one](https://flipperzero.one)
|
||||||
* Kickstarter page: [kickstarter.com](https://www.kickstarter.com/projects/flipper-devices/flipper-zero-tamagochi-for-hackers)
|
- Forum: [forum.flipperzero.one](https://forum.flipperzero.one/)
|
||||||
* Forum: [forum.flipperzero.one](https://forum.flipperzero.one/)
|
- Kickstarter: [kickstarter.com](https://www.kickstarter.com/projects/flipper-devices/flipper-zero-tamagochi-for-hackers)
|
||||||
|
|
||||||
# Project structure
|
# Project structure
|
||||||
|
|
||||||
- `applications` - Applications and services used in firmware
|
- `applications` - Applications and services used in firmware
|
||||||
- `assets` - Assets used by applications and services
|
- `assets` - Assets used by applications and services
|
||||||
- `furi` - Furi Core: os level primitives and helpers
|
- `furi` - Furi Core: OS-level primitives and helpers
|
||||||
- `debug` - Debug tool: GDB-plugins, SVD-file and etc
|
- `debug` - Debug tool: GDB-plugins, SVD-file and etc
|
||||||
- `documentation` - Documentation generation system configs and input files
|
- `documentation` - Documentation generation system configs and input files
|
||||||
- `firmware` - Firmware source code
|
- `firmware` - Firmware source code
|
||||||
- `lib` - Our and 3rd party libraries, drivers, etc.
|
- `lib` - Our and 3rd party libraries, drivers, etc.
|
||||||
- `scripts` - Supplementary scripts and python libraries home
|
- `scripts` - Supplementary scripts and python libraries home
|
||||||
|
|
||||||
Also pay attention to `ReadMe.md` files inside those directories.
|
Also, pay attention to `ReadMe.md` files inside those directories.
|
||||||
|
|||||||
14
SConstruct
14
SConstruct
@@ -194,6 +194,20 @@ firmware_bm_flash = distenv.PhonyTarget(
|
|||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
gdb_backtrace_all_threads = distenv.PhonyTarget(
|
||||||
|
"gdb_trace_all",
|
||||||
|
"$GDB $GDBOPTS $SOURCES $GDBFLASH",
|
||||||
|
source=firmware_env["FW_ELF"],
|
||||||
|
GDBOPTS="${GDBOPTS_BASE}",
|
||||||
|
GDBREMOTE="${OPENOCD_GDB_PIPE}",
|
||||||
|
GDBFLASH=[
|
||||||
|
"-ex",
|
||||||
|
"thread apply all bt",
|
||||||
|
"-ex",
|
||||||
|
"quit",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
# Debugging firmware
|
# Debugging firmware
|
||||||
firmware_debug = distenv.PhonyTarget(
|
firmware_debug = distenv.PhonyTarget(
|
||||||
"debug",
|
"debug",
|
||||||
|
|||||||
@@ -60,7 +60,13 @@ static void dict_attack_draw_callback(Canvas* canvas, void* model) {
|
|||||||
if(progress > 1.0) {
|
if(progress > 1.0) {
|
||||||
progress = 1.0;
|
progress = 1.0;
|
||||||
}
|
}
|
||||||
snprintf(draw_str, sizeof(draw_str), "%d/%d", m->dict_keys_current, m->dict_keys_total);
|
if(m->dict_keys_current == 0) {
|
||||||
|
// Cause when people see 0 they think it's broken
|
||||||
|
snprintf(draw_str, sizeof(draw_str), "%d/%d", 1, m->dict_keys_total);
|
||||||
|
} else {
|
||||||
|
snprintf(
|
||||||
|
draw_str, sizeof(draw_str), "%d/%d", m->dict_keys_current, m->dict_keys_total);
|
||||||
|
}
|
||||||
elements_progress_bar_with_text(canvas, 0, 20, 128, dict_progress, draw_str);
|
elements_progress_bar_with_text(canvas, 0, 20, 128, dict_progress, draw_str);
|
||||||
canvas_set_font(canvas, FontSecondary);
|
canvas_set_font(canvas, FontSecondary);
|
||||||
snprintf(draw_str, sizeof(draw_str), "Keys found: %d/%d", m->keys_found, m->keys_total);
|
snprintf(draw_str, sizeof(draw_str), "Keys found: %d/%d", m->keys_found, m->keys_total);
|
||||||
|
|||||||
@@ -18,6 +18,9 @@
|
|||||||
|
|
||||||
#define PICOPASS_CSN_BLOCK_INDEX 0
|
#define PICOPASS_CSN_BLOCK_INDEX 0
|
||||||
#define PICOPASS_CONFIG_BLOCK_INDEX 1
|
#define PICOPASS_CONFIG_BLOCK_INDEX 1
|
||||||
|
#define PICOPASS_EPURSE_BLOCK_INDEX 2
|
||||||
|
#define PICOPASS_KD_BLOCK_INDEX 3
|
||||||
|
#define PICOPASS_KC_BLOCK_INDEX 4
|
||||||
#define PICOPASS_AIA_BLOCK_INDEX 5
|
#define PICOPASS_AIA_BLOCK_INDEX 5
|
||||||
|
|
||||||
#define PICOPASS_APP_FOLDER ANY_PATH("picopass")
|
#define PICOPASS_APP_FOLDER ANY_PATH("picopass")
|
||||||
|
|||||||
@@ -175,13 +175,12 @@ ReturnCode picopass_read_preauth(PicopassBlock* AA1) {
|
|||||||
return ERR_NONE;
|
return ERR_NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
ReturnCode picopass_auth(PicopassBlock* AA1, PicopassPacs* pacs) {
|
static ReturnCode picopass_auth_standard(uint8_t* csn, uint8_t* div_key) {
|
||||||
rfalPicoPassReadCheckRes rcRes;
|
rfalPicoPassReadCheckRes rcRes;
|
||||||
rfalPicoPassCheckRes chkRes;
|
rfalPicoPassCheckRes chkRes;
|
||||||
|
|
||||||
ReturnCode err;
|
ReturnCode err;
|
||||||
|
|
||||||
uint8_t div_key[8] = {0};
|
|
||||||
uint8_t mac[4] = {0};
|
uint8_t mac[4] = {0};
|
||||||
uint8_t ccnr[12] = {0};
|
uint8_t ccnr[12] = {0};
|
||||||
|
|
||||||
@@ -192,26 +191,34 @@ ReturnCode picopass_auth(PicopassBlock* AA1, PicopassPacs* pacs) {
|
|||||||
}
|
}
|
||||||
memcpy(ccnr, rcRes.CCNR, sizeof(rcRes.CCNR)); // last 4 bytes left 0
|
memcpy(ccnr, rcRes.CCNR, sizeof(rcRes.CCNR)); // last 4 bytes left 0
|
||||||
|
|
||||||
loclass_diversifyKey(AA1[PICOPASS_CSN_BLOCK_INDEX].data, picopass_iclass_key, div_key);
|
loclass_diversifyKey(csn, picopass_iclass_key, div_key);
|
||||||
loclass_opt_doReaderMAC(ccnr, div_key, mac);
|
loclass_opt_doReaderMAC(ccnr, div_key, mac);
|
||||||
|
|
||||||
err = rfalPicoPassPollerCheck(mac, &chkRes);
|
return rfalPicoPassPollerCheck(mac, &chkRes);
|
||||||
if(err == ERR_NONE) {
|
}
|
||||||
return ERR_NONE;
|
|
||||||
}
|
|
||||||
FURI_LOG_E(TAG, "rfalPicoPassPollerCheck error %d", err);
|
|
||||||
|
|
||||||
FURI_LOG_E(TAG, "Starting dictionary attack");
|
static ReturnCode picopass_auth_dict(
|
||||||
|
uint8_t* csn,
|
||||||
|
PicopassPacs* pacs,
|
||||||
|
uint8_t* div_key,
|
||||||
|
IclassEliteDictType dict_type) {
|
||||||
|
rfalPicoPassReadCheckRes rcRes;
|
||||||
|
rfalPicoPassCheckRes chkRes;
|
||||||
|
|
||||||
|
ReturnCode err = ERR_PARAM;
|
||||||
|
|
||||||
|
uint8_t mac[4] = {0};
|
||||||
|
uint8_t ccnr[12] = {0};
|
||||||
|
|
||||||
size_t index = 0;
|
size_t index = 0;
|
||||||
uint8_t key[PICOPASS_BLOCK_LEN] = {0};
|
uint8_t key[PICOPASS_BLOCK_LEN] = {0};
|
||||||
|
|
||||||
if(!iclass_elite_dict_check_presence(IclassEliteDictTypeFlipper)) {
|
if(!iclass_elite_dict_check_presence(dict_type)) {
|
||||||
FURI_LOG_E(TAG, "Dictionary not found");
|
FURI_LOG_E(TAG, "Dictionary not found");
|
||||||
return ERR_PARAM;
|
return ERR_PARAM;
|
||||||
}
|
}
|
||||||
|
|
||||||
IclassEliteDict* dict = iclass_elite_dict_alloc(IclassEliteDictTypeFlipper);
|
IclassEliteDict* dict = iclass_elite_dict_alloc(dict_type);
|
||||||
if(!dict) {
|
if(!dict) {
|
||||||
FURI_LOG_E(TAG, "Dictionary not allocated");
|
FURI_LOG_E(TAG, "Dictionary not allocated");
|
||||||
return ERR_PARAM;
|
return ERR_PARAM;
|
||||||
@@ -235,11 +242,11 @@ ReturnCode picopass_auth(PicopassBlock* AA1, PicopassPacs* pacs) {
|
|||||||
err = rfalPicoPassPollerReadCheck(&rcRes);
|
err = rfalPicoPassPollerReadCheck(&rcRes);
|
||||||
if(err != ERR_NONE) {
|
if(err != ERR_NONE) {
|
||||||
FURI_LOG_E(TAG, "rfalPicoPassPollerReadCheck error %d", err);
|
FURI_LOG_E(TAG, "rfalPicoPassPollerReadCheck error %d", err);
|
||||||
return err;
|
break;
|
||||||
}
|
}
|
||||||
memcpy(ccnr, rcRes.CCNR, sizeof(rcRes.CCNR)); // last 4 bytes left 0
|
memcpy(ccnr, rcRes.CCNR, sizeof(rcRes.CCNR)); // last 4 bytes left 0
|
||||||
|
|
||||||
loclass_iclass_calc_div_key(AA1[PICOPASS_CSN_BLOCK_INDEX].data, key, div_key, true);
|
loclass_iclass_calc_div_key(csn, key, div_key, true);
|
||||||
loclass_opt_doReaderMAC(ccnr, div_key, mac);
|
loclass_opt_doReaderMAC(ccnr, div_key, mac);
|
||||||
|
|
||||||
err = rfalPicoPassPollerCheck(mac, &chkRes);
|
err = rfalPicoPassPollerCheck(mac, &chkRes);
|
||||||
@@ -254,6 +261,39 @@ ReturnCode picopass_auth(PicopassBlock* AA1, PicopassPacs* pacs) {
|
|||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ReturnCode picopass_auth(PicopassBlock* AA1, PicopassPacs* pacs) {
|
||||||
|
ReturnCode err;
|
||||||
|
|
||||||
|
FURI_LOG_E(TAG, "Trying standard legacy key");
|
||||||
|
err = picopass_auth_standard(
|
||||||
|
AA1[PICOPASS_CSN_BLOCK_INDEX].data, AA1[PICOPASS_KD_BLOCK_INDEX].data);
|
||||||
|
if(err == ERR_NONE) {
|
||||||
|
return ERR_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
FURI_LOG_E(TAG, "Starting user dictionary attack");
|
||||||
|
err = picopass_auth_dict(
|
||||||
|
AA1[PICOPASS_CSN_BLOCK_INDEX].data,
|
||||||
|
pacs,
|
||||||
|
AA1[PICOPASS_KD_BLOCK_INDEX].data,
|
||||||
|
IclassEliteDictTypeUser);
|
||||||
|
if(err == ERR_NONE) {
|
||||||
|
return ERR_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
FURI_LOG_E(TAG, "Starting in-built dictionary attack");
|
||||||
|
err = picopass_auth_dict(
|
||||||
|
AA1[PICOPASS_CSN_BLOCK_INDEX].data,
|
||||||
|
pacs,
|
||||||
|
AA1[PICOPASS_KD_BLOCK_INDEX].data,
|
||||||
|
IclassEliteDictTypeFlipper);
|
||||||
|
if(err == ERR_NONE) {
|
||||||
|
return ERR_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
ReturnCode picopass_read_card(PicopassBlock* AA1) {
|
ReturnCode picopass_read_card(PicopassBlock* AA1) {
|
||||||
ReturnCode err;
|
ReturnCode err;
|
||||||
|
|
||||||
@@ -262,6 +302,11 @@ ReturnCode picopass_read_card(PicopassBlock* AA1) {
|
|||||||
PICOPASS_MAX_APP_LIMIT;
|
PICOPASS_MAX_APP_LIMIT;
|
||||||
|
|
||||||
for(size_t i = 2; i < app_limit; i++) {
|
for(size_t i = 2; i < app_limit; i++) {
|
||||||
|
if(i == PICOPASS_KD_BLOCK_INDEX) {
|
||||||
|
// Skip over Kd block which is populated earlier (READ of Kd returns all FF's)
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
rfalPicoPassReadBlockRes block;
|
rfalPicoPassReadBlockRes block;
|
||||||
err = rfalPicoPassPollerReadBlock(i, &block);
|
err = rfalPicoPassPollerReadBlock(i, &block);
|
||||||
if(err != ERR_NONE) {
|
if(err != ERR_NONE) {
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ Version: 1
|
|||||||
- `Name` - name of animation. Must be exact animation directory name.
|
- `Name` - name of animation. Must be exact animation directory name.
|
||||||
- `Min butthurt`, `Max butthurt` - range of dolphin's butthurt for this animation.
|
- `Min butthurt`, `Max butthurt` - range of dolphin's butthurt for this animation.
|
||||||
- `Min level`, `Max level` - range of dolphin's level for this animation. If 0, this animation doesn't participate in random idle animation selection and can only be selected by exact name.
|
- `Min level`, `Max level` - range of dolphin's level for this animation. If 0, this animation doesn't participate in random idle animation selection and can only be selected by exact name.
|
||||||
- `Weight` - chance of this animation to be choosen at random animation selection.
|
- `Weight` - chance of this animation to be chosen at random animation selection.
|
||||||
|
|
||||||
Some animations can be excluded from participation in random animation selection, such as `L1_NoSd_128x49`.
|
Some animations can be excluded from participation in random animation selection, such as `L1_NoSd_128x49`.
|
||||||
|
|
||||||
|
|||||||
@@ -1,63 +1,65 @@
|
|||||||
# Flipper Application Manifests (.fam)
|
# Flipper Application Manifests (.fam)
|
||||||
|
|
||||||
All components of Flipper Zero firmware — services, user applications, system settings — are developed independently. Each component has a build system manifest file, named `application.fam`, which defines basic properties of that component and its relations to other parts of the system.
|
All components of Flipper Zero firmware — services, user applications, and system settings — are developed independently. Each component has a build system manifest file, named `application.fam`, which defines the basic properties of that component and its relations to other parts of the system.
|
||||||
|
|
||||||
When building firmware, **`fbt`** collects all application manifests and processes their dependencies. Then it builds only those components that are referenced in the current build configuration. See [fbt docs](./fbt.md#firmware-application-set) for details on build configurations.
|
When building firmware, **`fbt`** collects all application manifests and processes their dependencies. Then it builds only those components referenced in the current build configuration. See [fbt docs](./fbt.md#firmware-application-set) for details on build configurations.
|
||||||
|
|
||||||
## Application definition
|
## Application definition
|
||||||
|
|
||||||
Properties of a firmware component are declared in a form of a Python code snippet, forming a call to App() function with various parameters.
|
A firmware component's properties are declared in a Python code snippet, forming a call to App() function with various parameters.
|
||||||
|
|
||||||
Only 2 parameters are mandatory: ***appid*** and ***apptype***, others are optional and may only be meaningful for certain application types.
|
Only 2 parameters are mandatory: ***appid*** and ***apptype***; others are optional and may only be meaningful for certain application types.
|
||||||
|
|
||||||
### Parameters
|
### Parameters
|
||||||
|
|
||||||
* **appid**: string, application id within the build system. Used for specifying which applications to include in build configuration and to resolve dependencies and conflicts.
|
* **appid**: string, application id within the build system. Used to specify which applications to include in the build configuration and resolve dependencies and conflicts.
|
||||||
|
|
||||||
* **apptype**: member of FlipperAppType.* enumeration. Valid values are:
|
* **apptype**: member of FlipperAppType.* enumeration. Valid values are:
|
||||||
|
|
||||||
| Enum member | Firmware component type |
|
| Enum member | Firmware component type |
|
||||||
|--------------|--------------------------|
|
|--------------|--------------------------|
|
||||||
| SERVICE | System service, created at early startup |
|
| SERVICE | System service, created at early startup |
|
||||||
| SYSTEM | Application not being shown in any menus. Can be started by other apps or from CLI |
|
| SYSTEM | Application is not being shown in any menus. It can be started by other apps or from CLI |
|
||||||
| APP | Regular application for main menu |
|
| APP | Regular application for the main menu |
|
||||||
| PLUGIN | Application to be built as a part of firmware an to be placed in Plugins menu |
|
| PLUGIN | Application to be built as a part of the firmware and to be placed in the Plugins menu |
|
||||||
| DEBUG | Application only visible in Debug menu with debug mode enabled |
|
| DEBUG | Application only visible in Debug menu with debug mode enabled |
|
||||||
| ARCHIVE | One and only Archive app |
|
| ARCHIVE | One and only Archive app |
|
||||||
| SETTINGS | Application to be placed in System settings menu |
|
| SETTINGS | Application to be placed in the system settings menu |
|
||||||
| STARTUP | Callback function to run at system startup. Does not define a separate app |
|
| STARTUP | Callback function to run at system startup. Does not define a separate app |
|
||||||
| EXTERNAL | Application to be built as .fap plugin |
|
| EXTERNAL | Application to be built as .fap plugin |
|
||||||
| METAPACKAGE | Does not define any code to be run, used for declaring dependencies and application bundles |
|
| METAPACKAGE | Does not define any code to be run, used for declaring dependencies and application bundles |
|
||||||
|
|
||||||
* **name**: Name that is displayed in menus.
|
* **name**: Name that is displayed in menus.
|
||||||
* **entry_point**: C function to be used as application's entry point. Note that C++ function names are mangled, so you need to wrap them in `extern "C"` in order to use them as entry points.
|
* **entry_point**: C function to be used as the application's entry point. Note that C++ function names are mangled, so you need to wrap them in `extern "C"` to use them as entry points.
|
||||||
* **flags**: Internal flags for system apps. Do not use.
|
* **flags**: Internal flags for system apps. Do not use.
|
||||||
* **cdefines**: C preprocessor definitions to declare globally for other apps when current application is included in active build configuration.
|
* **cdefines**: C preprocessor definitions to declare globally for other apps when the current application is included in the active build configuration.
|
||||||
* **requires**: List of application IDs to also include in build configuration, when current application is referenced in list of applications to build.
|
* **requires**: List of application IDs to include in the build configuration when the current application is referenced in the list of applications to build.
|
||||||
* **conflicts**: List of application IDs that current application conflicts with. If any of them is found in constructed application list, **`fbt`** will abort firmware build process.
|
* **conflicts**: List of application IDs that the current application conflicts with. If any of them is found in the constructed application list, **`fbt`** will abort the firmware build process.
|
||||||
* **provides**: Functionally identical to ***requires*** field.
|
* **provides**: Functionally identical to ***requires*** field.
|
||||||
* **stack_size**: Stack size, in bytes, to allocate for application on its startup. Note that allocating a stack that is too small for an app to run will cause system crash due to stack overflow, and allocating too much stack space will reduce usable heap memory size for apps to process data. *Note: you can use `ps` and `free` CLI commands to profile your app's memory usage.*
|
* **stack_size**: Stack size, in bytes, to allocate for application on its startup. Note that allocating a stack too small for an app to run will cause a system crash due to stack overflow, and allocating too much stack space will reduce usable heap memory size for apps to process data. *Note: you can use `ps`, and `free` CLI commands to profile your app's memory usage.*
|
||||||
* **icon**: Animated icon name from built-in assets to be used when building app as a part of firmware.
|
* **icon**: Animated icon name from built-in assets to be used when building the app as a part of the firmware.
|
||||||
* **order**: Order of an application within its group when sorting entries in it. The lower the order is, the closer to the start of the list the item is placed. *Used for ordering startup hooks and menu entries.*
|
* **order**: Order of an application within its group when sorting entries in it. The lower the order is, the closer to the start of the list the item is placed. *Used for ordering startup hooks and menu entries.*
|
||||||
* **sdk_headers**: List of C header files from this app's code to include in API definitions for external applications.
|
* **sdk_headers**: List of C header files from this app's code to include in API definitions for external applications.
|
||||||
* **targets**: list of strings, target names, which this application is compatible with. If not specified, application is built for all targets. Default value is `["all"]`.
|
* **targets**: list of strings, target names, which this application is compatible with. If not specified, the application is built for all targets. The default value is `["all"]`.
|
||||||
|
|
||||||
|
|
||||||
#### Parameters for external applications
|
#### Parameters for external applications
|
||||||
|
|
||||||
The following parameters are used only for [FAPs](./AppsOnSDCard.md):
|
The following parameters are used only for [FAPs](./AppsOnSDCard.md):
|
||||||
|
|
||||||
* **sources**: list of strings, file name masks, used for gathering sources within app folder. Default value of `["*.c*"]` includes C and C++ source files. Application cannot use `"lib"` folder for their own source code, as it is reserved for **fap_private_libs**.
|
* **sources**: list of strings, file name masks used for gathering sources within the app folder. The default value of `["*.c*"]` includes C and C++ source files. Applications cannot use the `"lib"` folder for their own source code, as it is reserved for **fap_private_libs**.
|
||||||
* **fap_version**: tuple, 2 numbers in form of (x,y): application version to be embedded within .fap file. Default value is (0,1), meaning version "0.1".
|
* **fap_version**: tuple, 2 numbers in the form of (x,y): application version to be embedded within .fap file. The default value is (0,1), meaning version "0.1".
|
||||||
* **fap_icon**: name of a .png file, 1-bit color depth, 10x10px, to be embedded within .fap file.
|
* **fap_icon**: name of a .png file, 1-bit color depth, 10x10px, to be embedded within .fap file.
|
||||||
* **fap_libs**: list of extra libraries to link application against. Provides access to extra functions that are not exported as a part of main firmware at expense of increased .fap file size and RAM consumption.
|
* **fap_libs**: list of extra libraries to link the application against. Provides access to extra functions that are not exported as a part of main firmware at the expense of increased .fap file size and RAM consumption.
|
||||||
* **fap_category**: string, may be empty. App subcategory, also works as path of FAP within apps folder in the file system.
|
* **fap_category**: string, may be empty. App subcategory, also determines the path of the FAP within apps folder in the file system.
|
||||||
* **fap_description**: string, may be empty. Short application description.
|
* **fap_description**: string, may be empty. Short application description.
|
||||||
* **fap_author**: string, may be empty. Application's author.
|
* **fap_author**: string, may be empty. Application's author.
|
||||||
* **fap_weburl**: string, may be empty. Application's homepage.
|
* **fap_weburl**: string, may be empty. Application's homepage.
|
||||||
* **fap_icon_assets**: string. If present, defines a folder name to be used for gathering image assets for this application. These images will be preprocessed and built alongside the application. See [FAP assets](./AppsOnSDCard.md#fap-assets) for details.
|
* **fap_icon_assets**: string. If present defines a folder name to be used for gathering image assets for this application. These images will be preprocessed and built alongside the application. See [FAP assets](./AppsOnSDCard.md#fap-assets) for details.
|
||||||
* **fap_extbuild**: provides support for parts of application sources to be built by external tools. Contains a list of `ExtFile(path="file name", command="shell command")` definitions. **`fbt`** will run the specified command for each file in the list.
|
* **fap_extbuild**: provides support for parts of application sources to be built by external tools. Contains a list of `ExtFile(path="file name", command="shell command")` definitions. **`fbt`** will run the specified command for each file in the list.
|
||||||
Note that commands are executed at the firmware root folder's root, and all intermediate files must be placed in a application's temporary build folder. For that, you can use pattern expansion by **`fbt`**: `${FAP_WORK_DIR}` will be replaced with the path to the application's temporary build folder, and `${FAP_SRC_DIR}` will be replaced with the path to the application's source folder. You can also use other variables defined internally by **`fbt`**.
|
|
||||||
|
Note that commands are executed at the firmware root folder's root, and all intermediate files must be placed in an application's temporary build folder. For that, you can use pattern expansion by **`fbt`**: `${FAP_WORK_DIR}` will be replaced with the path to the application's temporary build folder, and `${FAP_SRC_DIR}` will be replaced with the path to the application's source folder. You can also use other variables defined internally by **`fbt`**.
|
||||||
|
|
||||||
|
|
||||||
Example for building an app from Rust sources:
|
Example for building an app from Rust sources:
|
||||||
|
|
||||||
@@ -71,16 +73,16 @@ Example for building an app from Rust sources:
|
|||||||
),
|
),
|
||||||
```
|
```
|
||||||
|
|
||||||
* **fap_private_libs**: list of additional libraries that are distributed as sources alongside the application. These libraries will be built as a part of the application build process.
|
* **fap_private_libs**: a list of additional libraries distributed as sources alongside the application. These libraries will be built as a part of the application build process.
|
||||||
Library sources must be placed in a subfolder of "`lib`" folder within the application's source folder.
|
Library sources must be placed in a subfolder of "`lib`" folder within the application's source folder.
|
||||||
Each library is defined as a call to `Lib()` function, accepting the following parameters:
|
Each library is defined as a call to `Lib()` function, accepting the following parameters:
|
||||||
|
|
||||||
- **name**: name of library's folder. Required.
|
- **name**: name of library's folder. Required.
|
||||||
- **fap_include_paths**: list of library's relative paths to add to parent fap's include path list. Default value is `["."]` meaning library's source root.
|
- **fap_include_paths**: list of library's relative paths to add to parent fap's include path list. The default value is `["."]` meaning the library's source root.
|
||||||
- **sources**: list of filename masks to be used for gathering include files for this library. Paths are relative to library's source root. Default value is `["*.c*"]`.
|
- **sources**: list of filename masks to be used for gathering include files for this library. Paths are relative to the library's source root. The default value is `["*.c*"]`.
|
||||||
- **cflags**: list of additional compiler flags to be used for building this library. Default value is `[]`.
|
- **cflags**: list of additional compiler flags to be used for building this library. The default value is `[]`.
|
||||||
- **cdefines**: list of additional preprocessor definitions to be used for building this library. Default value is `[]`.
|
- **cdefines**: list of additional preprocessor definitions to be used for building this library. The default value is `[]`.
|
||||||
- **cincludes**: list of additional include paths to be used for building this library. Paths are relative to application's root. Can be used for providing external search paths for this library's code - for configuration headers. Default value is `[]`.
|
- **cincludes**: list of additional include paths to be used for building this library. Paths are relative to the application's root. This can be used for providing external search paths for this library's code - for configuration headers. The default value is `[]`.
|
||||||
|
|
||||||
Example for building an app with a private library:
|
Example for building an app with a private library:
|
||||||
|
|
||||||
@@ -103,10 +105,10 @@ Example for building an app with a private library:
|
|||||||
],
|
],
|
||||||
```
|
```
|
||||||
|
|
||||||
For that snippet, **`fbt`** will build 2 libraries: one from sources in `lib/mbedtls` folder, and another from sources in `lib/loclass` folder. For `mbedtls` library, **`fbt`** will add `lib/mbedtls/include` to the list of include paths for the application and compile only the files specified in `sources` list. Additionally, **`fbt`** will enable `MBEDTLS_ERROR_C` preprocessor definition for `mbedtls` sources.
|
For that snippet, **`fbt`** will build 2 libraries: one from sources in `lib/mbedtls` folder and another from sources in `lib/loclass` folder. For the `mbedtls` library, **`fbt`** will add `lib/mbedtls/include` to the list of include paths for the application and compile only the files specified in the `sources` list. Additionally, **`fbt`** will enable `MBEDTLS_ERROR_C` preprocessor definition for `mbedtls` sources.
|
||||||
For `loclass` library, **`fbt`** will add `lib/loclass` to the list of include paths for the application and build all sources in that folder. Also **`fbt`** will disable treating compiler warnings as errors for `loclass` library specifically - that can be useful when compiling large 3rd-party codebases.
|
For the `loclass` library, **`fbt`** will add `lib/loclass` to the list of the include paths for the application and build all sources in that folder. Also, **`fbt`** will disable treating compiler warnings as errors for the `loclass` library, which can be useful when compiling large 3rd-party codebases.
|
||||||
|
|
||||||
Both libraries will be linked into the application.
|
Both libraries will be linked with the application.
|
||||||
|
|
||||||
|
|
||||||
## .fam file contents
|
## .fam file contents
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ With it, you can debug FAPs as if they were a part of main firmware — inspect
|
|||||||
|
|
||||||
### Setting up debugging environment
|
### Setting up debugging environment
|
||||||
|
|
||||||
Debugging support script looks up debugging information in latest firmware build dir (`build/latest`). That directory is symlinked by fbt to the latest firmware configuration (Debug or Release) build dir, when you run `./fbt` for chosen configuration. See [fbt docs](./fbt.md#nb) for details.
|
Debugging support script looks up debugging information in the latest firmware build dir (`build/latest`). That directory is symlinked by fbt to the latest firmware configuration (Debug or Release) build dir, when you run `./fbt` for chosen configuration. See [fbt docs](./fbt.md#nb) for details.
|
||||||
|
|
||||||
So, to debug FAPs, do the following:
|
So, to debug FAPs, do the following:
|
||||||
1. Build firmware with `./fbt`
|
1. Build firmware with `./fbt`
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# Key Combos
|
# Key Combos
|
||||||
|
|
||||||
There are times when your flipper feels blue and doesn't respond to your commands.
|
There are times when your Flipper feels blue and doesn't respond to your commands.
|
||||||
In that case, you may find this guide useful.
|
In that case, you may find this guide useful.
|
||||||
|
|
||||||
|
|
||||||
@@ -12,10 +12,10 @@ In that case, you may find this guide useful.
|
|||||||
- Press `LEFT` and `BACK` and hold for a couple of seconds
|
- Press `LEFT` and `BACK` and hold for a couple of seconds
|
||||||
- Release `LEFT` and `BACK`
|
- Release `LEFT` and `BACK`
|
||||||
|
|
||||||
This combo performs hardware reset by pulling MCU reset line down.
|
This combo performs a hardware reset by pulling MCU reset line down.
|
||||||
Main components involved: Keys -> DD8(NC7SZ32M5X, OR-gate) -> DD1(STM32WB55, MCU)
|
Main components involved: Keys -> DD8(NC7SZ32M5X, OR-gate) -> DD1(STM32WB55, MCU)
|
||||||
|
|
||||||
There is 1 case when it's not working:
|
There is 1 case where it does not work:
|
||||||
|
|
||||||
- MCU debug block is active and holding reset line from inside.
|
- MCU debug block is active and holding reset line from inside.
|
||||||
|
|
||||||
@@ -25,32 +25,32 @@ There is 1 case when it's not working:
|
|||||||
- Disconnect USB and any external power supplies
|
- Disconnect USB and any external power supplies
|
||||||
- Disconnect USB once again
|
- Disconnect USB once again
|
||||||
- Make sure that you've disconnected USB and any external power supplies
|
- Make sure that you've disconnected USB and any external power supplies
|
||||||
- Press `BACK` and hold for 30 seconds (Only will work with USB Disconnected)
|
- Press `BACK` and hold for 30 seconds (Will only work with USB disconnected)
|
||||||
- If you have not disconnected USB, then disconnect USB and repeat previous step
|
- If you have not disconnected USB, then disconnect USB and repeat previous step
|
||||||
- Release `BACK` key
|
- Release `BACK` key
|
||||||
|
|
||||||
This combo performs a reset by switching SYS power line off and then on.
|
This combo performs a reset by switching SYS power line off and then on.
|
||||||
Main components involved: Keys -> DD6(bq25896, charger)
|
Main components involved: Keys -> DD6(bq25896, charger)
|
||||||
|
|
||||||
There is 1 case when it's not working:
|
There is 1 case where it does not work:
|
||||||
|
|
||||||
- Power supply is connected to USB or 5V_ext
|
- Power supply is connected to USB or 5V_ext
|
||||||
|
|
||||||
|
|
||||||
### Software DFU
|
### Software DFU
|
||||||
|
|
||||||
- Press `LEFT` on boot to enter DFU with flipper boot-loader
|
- Press `LEFT` on boot to enter DFU with Flipper boot-loader
|
||||||
|
|
||||||
There is 1 case when it's not working:
|
There is 1 case where it does not work:
|
||||||
|
|
||||||
- Flipper Boot-loader is damaged or absent
|
- Flipper boot-loader is damaged or absent
|
||||||
|
|
||||||
|
|
||||||
### Hardware DFU
|
### Hardware DFU
|
||||||
|
|
||||||
- Press `OK` on boot to enter DFU with ST boot-loader
|
- Press `OK` on boot to enter DFU with ST boot-loader
|
||||||
|
|
||||||
There is 1 case when it's not working:
|
There is 1 case where it does not work:
|
||||||
|
|
||||||
- Option Bytes are damaged or set to ignore `OK` key
|
- Option Bytes are damaged or set to ignore `OK` key
|
||||||
|
|
||||||
@@ -65,25 +65,25 @@ There is 1 case when it's not working:
|
|||||||
- Device will enter DFU with indication (Blue LED + DFU Screen)
|
- Device will enter DFU with indication (Blue LED + DFU Screen)
|
||||||
- Release `LEFT`
|
- Release `LEFT`
|
||||||
|
|
||||||
This combo performs hardware reset by pulling MCU reset line down.
|
This combo performs a hardware reset by pulling MCU reset line down.
|
||||||
Then `LEFT` key indicates to boot-loader that DFU mode is requested.
|
Then, `LEFT` key indicates to the boot-loader that DFU mode is requested.
|
||||||
|
|
||||||
There are 2 cases when it's not working:
|
There are 2 cases where it does not work:
|
||||||
|
|
||||||
- MCU debug block is active and holding reset line from inside
|
- MCU debug block is active and holding reset line from inside
|
||||||
- Flipper Boot-loader is damaged or absent
|
- Flipper boot-loader is damaged or absent
|
||||||
|
|
||||||
|
|
||||||
### Hardware Reset + Hardware DFU
|
### Hardware Reset + Hardware DFU
|
||||||
|
|
||||||
- Press `LEFT` and `BACK` and `OK` and hold for a couple of seconds
|
- Press `LEFT`, `BACK` and `OK` and hold for a couple of seconds
|
||||||
- Release `BACK` and `LEFT`
|
- Release `BACK` and `LEFT`
|
||||||
- Device will enter DFU without indication
|
- Device will enter DFU without indication
|
||||||
|
|
||||||
This combo performs hardware reset by pulling MCU reset line down.
|
This combo performs a hardware reset by pulling MCU reset line down.
|
||||||
Then `OK` key forces MCU to load internal boot-loader.
|
Then, `OK` key forces MCU to load internal boot-loader.
|
||||||
|
|
||||||
There are 2 cases when it's not working:
|
There are 2 cases where it does not work:
|
||||||
|
|
||||||
- MCU debug block is active and holding reset line from inside
|
- MCU debug block is active and holding reset line from inside
|
||||||
- Option Bytes are damaged or set to ignore `OK` key
|
- Option Bytes are damaged or set to ignore `OK` key
|
||||||
@@ -96,15 +96,15 @@ There are 2 cases when it's not working:
|
|||||||
- Release `BACK`
|
- Release `BACK`
|
||||||
- Device will enter DFU with indication (Blue LED + DFU Screen)
|
- Device will enter DFU with indication (Blue LED + DFU Screen)
|
||||||
- Release `LEFT`
|
- Release `LEFT`
|
||||||
- Plug USB
|
- Plug in USB
|
||||||
|
|
||||||
This combo performs reset by switching SYS power line off and then on.
|
This combo performs a reset by switching SYS power line off and then on.
|
||||||
Then `LEFT` key indicates to boot-loader that DFU mode requested.
|
Then, `LEFT` key indicates to boot-loader that DFU mode requested.
|
||||||
|
|
||||||
There are 2 cases when it's not working:
|
There are 2 cases where it does not work:
|
||||||
|
|
||||||
- Power supply is connected to USB or 5V_ext
|
- Power supply is connected to USB or 5V_ext
|
||||||
- Flipper Boot-loader is damaged or absent
|
- Flipper boot-loader is damaged or absent
|
||||||
|
|
||||||
|
|
||||||
### Hardware Power Reset + Hardware DFU
|
### Hardware Power Reset + Hardware DFU
|
||||||
@@ -115,10 +115,10 @@ There are 2 cases when it's not working:
|
|||||||
- Device will enter DFU without indication
|
- Device will enter DFU without indication
|
||||||
- Plug USB
|
- Plug USB
|
||||||
|
|
||||||
This combo performs reset by switching SYS power line off and then on.
|
This combo performs a reset by switching SYS power line off and then on.
|
||||||
Then `OK` key forces MCU to load internal boot-loader.
|
Then, `OK` key forces MCU to load internal boot-loader.
|
||||||
|
|
||||||
There are 2 cases when it's not working:
|
There are 2 cases where it does not work:
|
||||||
|
|
||||||
- Power supply is connected to USB or 5V_ext
|
- Power supply is connected to USB or 5V_ext
|
||||||
- Option Bytes are damaged or set to ignore `OK` key
|
- Option Bytes are damaged or set to ignore `OK` key
|
||||||
@@ -131,4 +131,4 @@ If none of the described methods were useful:
|
|||||||
- Disconnect the battery and connect again (Requires disassembly)
|
- Disconnect the battery and connect again (Requires disassembly)
|
||||||
- Try to Flash device with ST-Link or other programmer that supports SWD
|
- Try to Flash device with ST-Link or other programmer that supports SWD
|
||||||
|
|
||||||
If you still here and your device is not working: it's not a software issue.
|
If you still are here and your device is not working: it's not a software issue.
|
||||||
@@ -2,49 +2,47 @@
|
|||||||
|
|
||||||
# Where we are (0.x.x branch)
|
# Where we are (0.x.x branch)
|
||||||
|
|
||||||
Our goal for 0.x.x branch is to build stable usable apps and API.
|
Our goal for 0.x.x branch is to build stable, usable apps and API.
|
||||||
First public release that we support in this branch is 0.43.1. Your device most likely came with this version.
|
The first public release in this branch is 0.43.1.
|
||||||
You can develop applications but keep in mind that API is not final yet.
|
|
||||||
|
|
||||||
## What's already implemented
|
## What's already implemented
|
||||||
|
|
||||||
|
**System and HAL**
|
||||||
|
|
||||||
|
- Furi Core
|
||||||
|
- Furi HAL
|
||||||
|
- Loading applications from SD
|
||||||
|
|
||||||
**Applications**
|
**Applications**
|
||||||
|
|
||||||
- SubGhz: all most common protocols, reading RAW for everything else
|
- SubGhz: all most common protocols, reading RAW for everything else
|
||||||
- 125kHz RFID: all most common protocols
|
- 125kHz RFID: all most common protocols
|
||||||
- NFC: reading/emulating Mifare Ultralight, reading MiFare Classic and DESFire, basic EMV, basic NFC-B,F,V
|
- NFC: reading/emulating Mifare Ultralight, reading MiFare Classic and DESFire, basic EMV, basic NFC-B/F/V
|
||||||
- Infrared: all most common RC protocols, RAW format for everything else
|
- Infrared: all most common RC protocols, RAW format for everything else
|
||||||
- GPIO: UART bridge, basic GPIO controls
|
- GPIO: UART bridge, basic GPIO controls
|
||||||
- iButton: DS1990, Cyfral, Metacom
|
- iButton: DS1990, Cyfral, Metacom
|
||||||
- Bad USB: Full USB Rubber Ducky support, some extras for windows alt codes
|
- Bad USB: Full USB Rubber Ducky support, some extras for windows alt codes
|
||||||
- U2F: Full U2F specification support
|
- U2F: Full U2F specification support
|
||||||
|
|
||||||
**Extras**
|
**External applications**
|
||||||
|
|
||||||
- BLE Keyboard
|
- Bluetooth
|
||||||
- Snake game
|
- Snake game
|
||||||
|
|
||||||
**System and HAL**
|
|
||||||
|
|
||||||
- Furi Core
|
|
||||||
- Furi HAL
|
|
||||||
|
|
||||||
# Where we're going (Version 1)
|
# Where we're going (Version 1)
|
||||||
|
|
||||||
Main goal for 1.0.0 is to provide first stable version for both Users and Developers.
|
The main goal for 1.0.0 is to provide the first stable version for both Users and Developers.
|
||||||
|
|
||||||
## What we're planning to implement in 1.0.0
|
## What we're planning to implement in 1.0.0
|
||||||
|
|
||||||
- Loading applications from SD (tested as PoC, work scheduled for Q2)
|
|
||||||
- More protocols (gathering feedback)
|
- More protocols (gathering feedback)
|
||||||
- User documentation (work in progress)
|
- User documentation (work in progress)
|
||||||
- FuriCore: get rid of CMSIS API, replace hard real time timers, improve stability and performance (work in progress)
|
|
||||||
- FuriHal: deep sleep mode, stable API, examples, documentation (work in progress)
|
- FuriHal: deep sleep mode, stable API, examples, documentation (work in progress)
|
||||||
- Application improvements (a ton of things that we want to add and improve that are too numerous to list here)
|
- Application improvements (a ton of things that we want to add and improve that are too numerous to list here)
|
||||||
|
|
||||||
## When will it happen and where I can see the progress?
|
## When will it happen, and where can I see the progress?
|
||||||
|
|
||||||
Release 1.0.0 will most likely happen around the end of Q3
|
Release 1.0.0 will most likely happen around the end of 2023Q1
|
||||||
|
|
||||||
Development progress can be tracked in our public Miro board:
|
Development progress can be tracked in our public Miro board:
|
||||||
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
# Command syntax
|
# Command syntax
|
||||||
BadUsb app uses extended Duckyscript syntax. It is compatible with classic USB Rubber Ducky 1.0 scripts, but provides some additional commands and features, such as custom USB ID, ALT+Numpad input method, SYSRQ command and more fuctional keys.
|
BadUsb app uses extended Duckyscript syntax. It is compatible with classic USB Rubber Ducky 1.0 scripts, but provides some additional commands and features, such as custom USB ID, ALT+Numpad input method, SYSRQ command and more functional keys.
|
||||||
# Script file format
|
# Script file format
|
||||||
BadUsb app can execute only text scrips from .txt files, no compilation is required. Both `\n` and `\r\n` line endings are supported. Empty lines are allowed. You can use spaces ore tabs for line indentation.
|
BadUsb app can execute only text scrips from .txt files, no compilation is required. Both `\n` and `\r\n` line endings are supported. Empty lines are allowed. You can use spaces ore tabs for line indentation.
|
||||||
# Command set
|
# Command set
|
||||||
|
|||||||
@@ -95,17 +95,17 @@ Note: a single parsed signal must be represented as an array of size 1.
|
|||||||
| data | raw | uint32 | Ditto. |
|
| data | raw | uint32 | Ditto. |
|
||||||
|
|
||||||
#### Signal names
|
#### Signal names
|
||||||
The signal names in an `.irtest` file folow a convention `<name><test_number>`, where the name is one of:
|
The signal names in an `.irtest` file follow a convention `<name><test_number>`, where the name is one of:
|
||||||
- decoder_input
|
- decoder_input
|
||||||
- decoder_expected
|
- decoder_expected
|
||||||
- encoder_decoder_input,
|
- encoder_decoder_input,
|
||||||
|
|
||||||
and the number is a sequential integer: 1, 2, 3...etc, which produces names like `decoder_input1`, `encoder_decoder_input3`, and so on.
|
and the number is a sequential integer: 1, 2, 3...etc, which produces names like `decoder_input1`, `encoder_decoder_input3`, and so on.
|
||||||
|
|
||||||
| Name | Type | Description |
|
| Name | Type | Description |
|
||||||
| --------------------- | ------------ | ----------- |
|
| --------------------- | ------------ |-------------------------------------------------------------------------------------------------------|
|
||||||
| decoder_input | raw | A raw signal contaning the decoder input. Is also used as the expected encoder output. |
|
| decoder_input | raw | A raw signal containing the decoder input. Is also used as the expected encoder output. |
|
||||||
| decoder_expected | parsed_array | An array of parsed signals containing the expected decoder output. Is also used as the encoder input. |
|
| decoder_expected | parsed_array | An array of parsed signals containing the expected decoder output. Is also used as the encoder input. |
|
||||||
| encoder_decoder_input | parsed_array | An array of parsed signals containing both the encoder-decoder input and expected output. |
|
| encoder_decoder_input | parsed_array | An array of parsed signals containing both the encoder-decoder input and expected output. |
|
||||||
|
|
||||||
See [Unit Tests](/documentation/UnitTests.md#infrared) for more info.
|
See [Unit Tests](/documentation/UnitTests.md#infrared) for more info.
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ This file format is used to store the UID, SAK and ATQA of a Mifare Ultralight/N
|
|||||||
|
|
||||||
The "Signature" field contains the reply of the tag to the READ_SIG command. More on that can be found here: <https://www.nxp.com/docs/en/data-sheet/MF0ULX1.pdf> (page 31)
|
The "Signature" field contains the reply of the tag to the READ_SIG command. More on that can be found here: <https://www.nxp.com/docs/en/data-sheet/MF0ULX1.pdf> (page 31)
|
||||||
|
|
||||||
The "Mifare version" field is not related to the file format version, but to the Mifare Ultralight version. It contains the responce of the tag to the GET_VERSION command. More on that can be found here: <https://www.nxp.com/docs/en/data-sheet/MF0ULX1.pdf> (page 21)
|
The "Mifare version" field is not related to the file format version, but to the Mifare Ultralight version. It contains the response of the tag to the GET_VERSION command. More on that can be found here: <https://www.nxp.com/docs/en/data-sheet/MF0ULX1.pdf> (page 21)
|
||||||
|
|
||||||
Other fields are the direct representation of the card's internal state, more on them can be found in the same datasheet.
|
Other fields are the direct representation of the card's internal state, more on them can be found in the same datasheet.
|
||||||
|
|
||||||
|
|||||||
@@ -197,7 +197,7 @@ For each key, a name and encryption method must be specified, according to comme
|
|||||||
|
|
||||||
## SubGhz `setting_user` File
|
## SubGhz `setting_user` File
|
||||||
|
|
||||||
This file contains additional radio presets and frequencies for SubGhz application. It is used to add new presets and frequencies for existing presets. This file is be loaded on subghz application start and is located at path `/ext/subghz/assets/setting_user`.
|
This file contains additional radio presets and frequencies for SubGhz application. It is used to add new presets and frequencies for existing presets. This file is being loaded on subghz application start and is located at path `/ext/subghz/assets/setting_user`.
|
||||||
|
|
||||||
### File Format
|
### File Format
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ What does it do?
|
|||||||
|-----------|-------------------|-----------------------|-----------------------|
|
|-----------|-------------------|-----------------------|-----------------------|
|
||||||
| f7 | 0x08000000 | L+Back, release both | L+Back, release Back |
|
| f7 | 0x08000000 | L+Back, release both | L+Back, release Back |
|
||||||
|
|
||||||
Also there is a "hardware" ST bootloader combo available even on a bricked or empty device: L+Ok+Back, release Back, Left.
|
Also, there is a "hardware" ST bootloader combo available even on a bricked or empty device: L+Ok+Back, release Back, Left.
|
||||||
Target independent code and headers in `target/include` folders. More details in `documentation/KeyCombo.md`
|
Target independent code and headers in `target/include` folders. More details in `documentation/KeyCombo.md`
|
||||||
|
|
||||||
# Building
|
# Building
|
||||||
|
|||||||
@@ -1869,6 +1869,7 @@ Function,+,menu_set_selected_item,void,"Menu*, uint32_t"
|
|||||||
Function,-,mf_classic_auth_attempt,_Bool,"FuriHalNfcTxRxContext*, MfClassicAuthContext*, uint64_t"
|
Function,-,mf_classic_auth_attempt,_Bool,"FuriHalNfcTxRxContext*, MfClassicAuthContext*, uint64_t"
|
||||||
Function,-,mf_classic_auth_init_context,void,"MfClassicAuthContext*, uint8_t"
|
Function,-,mf_classic_auth_init_context,void,"MfClassicAuthContext*, uint8_t"
|
||||||
Function,-,mf_classic_authenticate,_Bool,"FuriHalNfcTxRxContext*, uint8_t, uint64_t, MfClassicKey"
|
Function,-,mf_classic_authenticate,_Bool,"FuriHalNfcTxRxContext*, uint8_t, uint64_t, MfClassicKey"
|
||||||
|
Function,-,mf_classic_authenticate_skip_activate,_Bool,"FuriHalNfcTxRxContext*, uint8_t, uint64_t, MfClassicKey, _Bool, uint32_t"
|
||||||
Function,-,mf_classic_check_card_type,_Bool,FuriHalNfcADevData*
|
Function,-,mf_classic_check_card_type,_Bool,FuriHalNfcADevData*
|
||||||
Function,-,mf_classic_dict_add_key,_Bool,"MfClassicDict*, uint8_t*"
|
Function,-,mf_classic_dict_add_key,_Bool,"MfClassicDict*, uint8_t*"
|
||||||
Function,-,mf_classic_dict_add_key_str,_Bool,"MfClassicDict*, FuriString*"
|
Function,-,mf_classic_dict_add_key_str,_Bool,"MfClassicDict*, FuriString*"
|
||||||
|
|||||||
|
@@ -11,7 +11,7 @@
|
|||||||
- `infrared` - Infrared library
|
- `infrared` - Infrared library
|
||||||
- `libusb_stm32` - STM32 USB library
|
- `libusb_stm32` - STM32 USB library
|
||||||
- `littlefs` - Internal storage file system
|
- `littlefs` - Internal storage file system
|
||||||
- `micro-ecc` - Elliptic Curve Crpytography library
|
- `micro-ecc` - Elliptic Curve Crytography library
|
||||||
- `microtar` - TAR archive support library
|
- `microtar` - TAR archive support library
|
||||||
- `mlib` - Algorithms and containers
|
- `mlib` - Algorithms and containers
|
||||||
- `nanopb` - Nano Protobuf library
|
- `nanopb` - Nano Protobuf library
|
||||||
|
|||||||
@@ -741,13 +741,15 @@ void nfc_worker_mf_classic_dict_attack(NfcWorker* nfc_worker) {
|
|||||||
nfc_worker->callback(NfcWorkerEventNewDictKeyBatch, nfc_worker->context);
|
nfc_worker->callback(NfcWorkerEventNewDictKeyBatch, nfc_worker->context);
|
||||||
}
|
}
|
||||||
furi_hal_nfc_sleep();
|
furi_hal_nfc_sleep();
|
||||||
if(furi_hal_nfc_activate_nfca(200, NULL)) {
|
uint32_t cuid;
|
||||||
furi_hal_nfc_sleep();
|
if(furi_hal_nfc_activate_nfca(200, &cuid)) {
|
||||||
|
bool deactivated = false;
|
||||||
if(!card_found_notified) {
|
if(!card_found_notified) {
|
||||||
nfc_worker->callback(NfcWorkerEventCardDetected, nfc_worker->context);
|
nfc_worker->callback(NfcWorkerEventCardDetected, nfc_worker->context);
|
||||||
card_found_notified = true;
|
card_found_notified = true;
|
||||||
card_removed_notified = false;
|
card_removed_notified = false;
|
||||||
nfc_worker_mf_classic_key_attack(nfc_worker, prev_key, &tx_rx, i);
|
nfc_worker_mf_classic_key_attack(nfc_worker, prev_key, &tx_rx, i);
|
||||||
|
deactivated = true;
|
||||||
}
|
}
|
||||||
FURI_LOG_D(
|
FURI_LOG_D(
|
||||||
TAG,
|
TAG,
|
||||||
@@ -757,22 +759,26 @@ void nfc_worker_mf_classic_dict_attack(NfcWorker* nfc_worker) {
|
|||||||
(uint32_t)key);
|
(uint32_t)key);
|
||||||
if(!is_key_a_found) {
|
if(!is_key_a_found) {
|
||||||
is_key_a_found = mf_classic_is_key_found(data, i, MfClassicKeyA);
|
is_key_a_found = mf_classic_is_key_found(data, i, MfClassicKeyA);
|
||||||
if(mf_classic_authenticate(&tx_rx, block_num, key, MfClassicKeyA)) {
|
if(mf_classic_authenticate_skip_activate(
|
||||||
|
&tx_rx, block_num, key, MfClassicKeyA, !deactivated, cuid)) {
|
||||||
mf_classic_set_key_found(data, i, MfClassicKeyA, key);
|
mf_classic_set_key_found(data, i, MfClassicKeyA, key);
|
||||||
FURI_LOG_D(TAG, "Key found");
|
FURI_LOG_D(TAG, "Key found");
|
||||||
nfc_worker->callback(NfcWorkerEventFoundKeyA, nfc_worker->context);
|
nfc_worker->callback(NfcWorkerEventFoundKeyA, nfc_worker->context);
|
||||||
nfc_worker_mf_classic_key_attack(nfc_worker, key, &tx_rx, i + 1);
|
nfc_worker_mf_classic_key_attack(nfc_worker, key, &tx_rx, i + 1);
|
||||||
}
|
}
|
||||||
furi_hal_nfc_sleep();
|
furi_hal_nfc_sleep();
|
||||||
|
deactivated = true;
|
||||||
}
|
}
|
||||||
if(!is_key_b_found) {
|
if(!is_key_b_found) {
|
||||||
is_key_b_found = mf_classic_is_key_found(data, i, MfClassicKeyB);
|
is_key_b_found = mf_classic_is_key_found(data, i, MfClassicKeyB);
|
||||||
if(mf_classic_authenticate(&tx_rx, block_num, key, MfClassicKeyB)) {
|
if(mf_classic_authenticate_skip_activate(
|
||||||
|
&tx_rx, block_num, key, MfClassicKeyB, !deactivated, cuid)) {
|
||||||
FURI_LOG_D(TAG, "Key found");
|
FURI_LOG_D(TAG, "Key found");
|
||||||
mf_classic_set_key_found(data, i, MfClassicKeyB, key);
|
mf_classic_set_key_found(data, i, MfClassicKeyB, key);
|
||||||
nfc_worker->callback(NfcWorkerEventFoundKeyB, nfc_worker->context);
|
nfc_worker->callback(NfcWorkerEventFoundKeyB, nfc_worker->context);
|
||||||
nfc_worker_mf_classic_key_attack(nfc_worker, key, &tx_rx, i + 1);
|
nfc_worker_mf_classic_key_attack(nfc_worker, key, &tx_rx, i + 1);
|
||||||
}
|
}
|
||||||
|
deactivated = true;
|
||||||
}
|
}
|
||||||
if(is_key_a_found && is_key_b_found) break;
|
if(is_key_a_found && is_key_b_found) break;
|
||||||
if(nfc_worker->state != NfcWorkerStateMfClassicDictAttack) break;
|
if(nfc_worker->state != NfcWorkerStateMfClassicDictAttack) break;
|
||||||
|
|||||||
@@ -407,15 +407,16 @@ static bool mf_classic_auth(
|
|||||||
uint32_t block,
|
uint32_t block,
|
||||||
uint64_t key,
|
uint64_t key,
|
||||||
MfClassicKey key_type,
|
MfClassicKey key_type,
|
||||||
Crypto1* crypto) {
|
Crypto1* crypto,
|
||||||
|
bool skip_activate,
|
||||||
|
uint32_t cuid) {
|
||||||
bool auth_success = false;
|
bool auth_success = false;
|
||||||
uint32_t cuid = 0;
|
|
||||||
memset(tx_rx->tx_data, 0, sizeof(tx_rx->tx_data));
|
memset(tx_rx->tx_data, 0, sizeof(tx_rx->tx_data));
|
||||||
memset(tx_rx->tx_parity, 0, sizeof(tx_rx->tx_parity));
|
memset(tx_rx->tx_parity, 0, sizeof(tx_rx->tx_parity));
|
||||||
tx_rx->tx_rx_type = FuriHalNfcTxRxTypeDefault;
|
tx_rx->tx_rx_type = FuriHalNfcTxRxTypeDefault;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
if(!furi_hal_nfc_activate_nfca(200, &cuid)) break;
|
if(!skip_activate && !furi_hal_nfc_activate_nfca(200, &cuid)) break;
|
||||||
if(key_type == MfClassicKeyA) {
|
if(key_type == MfClassicKeyA) {
|
||||||
tx_rx->tx_data[0] = MF_CLASSIC_AUTH_KEY_A_CMD;
|
tx_rx->tx_data[0] = MF_CLASSIC_AUTH_KEY_A_CMD;
|
||||||
} else {
|
} else {
|
||||||
@@ -464,7 +465,23 @@ bool mf_classic_authenticate(
|
|||||||
furi_assert(tx_rx);
|
furi_assert(tx_rx);
|
||||||
|
|
||||||
Crypto1 crypto = {};
|
Crypto1 crypto = {};
|
||||||
bool key_found = mf_classic_auth(tx_rx, block_num, key, key_type, &crypto);
|
bool key_found = mf_classic_auth(tx_rx, block_num, key, key_type, &crypto, false, 0);
|
||||||
|
furi_hal_nfc_sleep();
|
||||||
|
return key_found;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool mf_classic_authenticate_skip_activate(
|
||||||
|
FuriHalNfcTxRxContext* tx_rx,
|
||||||
|
uint8_t block_num,
|
||||||
|
uint64_t key,
|
||||||
|
MfClassicKey key_type,
|
||||||
|
bool skip_activate,
|
||||||
|
uint32_t cuid) {
|
||||||
|
furi_assert(tx_rx);
|
||||||
|
|
||||||
|
Crypto1 crypto = {};
|
||||||
|
bool key_found =
|
||||||
|
mf_classic_auth(tx_rx, block_num, key, key_type, &crypto, skip_activate, cuid);
|
||||||
furi_hal_nfc_sleep();
|
furi_hal_nfc_sleep();
|
||||||
return key_found;
|
return key_found;
|
||||||
}
|
}
|
||||||
@@ -487,7 +504,9 @@ bool mf_classic_auth_attempt(
|
|||||||
mf_classic_get_first_block_num_of_sector(auth_ctx->sector),
|
mf_classic_get_first_block_num_of_sector(auth_ctx->sector),
|
||||||
key,
|
key,
|
||||||
MfClassicKeyA,
|
MfClassicKeyA,
|
||||||
&crypto)) {
|
&crypto,
|
||||||
|
false,
|
||||||
|
0)) {
|
||||||
auth_ctx->key_a = key;
|
auth_ctx->key_a = key;
|
||||||
found_key = true;
|
found_key = true;
|
||||||
}
|
}
|
||||||
@@ -504,7 +523,9 @@ bool mf_classic_auth_attempt(
|
|||||||
mf_classic_get_first_block_num_of_sector(auth_ctx->sector),
|
mf_classic_get_first_block_num_of_sector(auth_ctx->sector),
|
||||||
key,
|
key,
|
||||||
MfClassicKeyB,
|
MfClassicKeyB,
|
||||||
&crypto)) {
|
&crypto,
|
||||||
|
false,
|
||||||
|
0)) {
|
||||||
auth_ctx->key_b = key;
|
auth_ctx->key_b = key;
|
||||||
found_key = true;
|
found_key = true;
|
||||||
}
|
}
|
||||||
@@ -572,7 +593,7 @@ void mf_classic_read_sector(FuriHalNfcTxRxContext* tx_rx, MfClassicData* data, u
|
|||||||
if(!key_a_found) break;
|
if(!key_a_found) break;
|
||||||
FURI_LOG_D(TAG, "Try to read blocks with key A");
|
FURI_LOG_D(TAG, "Try to read blocks with key A");
|
||||||
key = nfc_util_bytes2num(sec_tr->key_a, sizeof(sec_tr->key_a));
|
key = nfc_util_bytes2num(sec_tr->key_a, sizeof(sec_tr->key_a));
|
||||||
if(!mf_classic_auth(tx_rx, start_block, key, MfClassicKeyA, &crypto)) break;
|
if(!mf_classic_auth(tx_rx, start_block, key, MfClassicKeyA, &crypto, false, 0)) break;
|
||||||
for(size_t i = start_block; i < start_block + total_blocks; i++) {
|
for(size_t i = start_block; i < start_block + total_blocks; i++) {
|
||||||
if(!mf_classic_is_block_read(data, i)) {
|
if(!mf_classic_is_block_read(data, i)) {
|
||||||
if(mf_classic_read_block(tx_rx, &crypto, i, &block_tmp)) {
|
if(mf_classic_read_block(tx_rx, &crypto, i, &block_tmp)) {
|
||||||
@@ -591,7 +612,7 @@ void mf_classic_read_sector(FuriHalNfcTxRxContext* tx_rx, MfClassicData* data, u
|
|||||||
FURI_LOG_D(TAG, "Try to read blocks with key B");
|
FURI_LOG_D(TAG, "Try to read blocks with key B");
|
||||||
key = nfc_util_bytes2num(sec_tr->key_b, sizeof(sec_tr->key_b));
|
key = nfc_util_bytes2num(sec_tr->key_b, sizeof(sec_tr->key_b));
|
||||||
furi_hal_nfc_sleep();
|
furi_hal_nfc_sleep();
|
||||||
if(!mf_classic_auth(tx_rx, start_block, key, MfClassicKeyB, &crypto)) break;
|
if(!mf_classic_auth(tx_rx, start_block, key, MfClassicKeyB, &crypto, false, 0)) break;
|
||||||
for(size_t i = start_block; i < start_block + total_blocks; i++) {
|
for(size_t i = start_block; i < start_block + total_blocks; i++) {
|
||||||
if(!mf_classic_is_block_read(data, i)) {
|
if(!mf_classic_is_block_read(data, i)) {
|
||||||
if(mf_classic_read_block(tx_rx, &crypto, i, &block_tmp)) {
|
if(mf_classic_read_block(tx_rx, &crypto, i, &block_tmp)) {
|
||||||
@@ -635,7 +656,7 @@ static bool mf_classic_read_sector_with_reader(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Auth to first block in sector
|
// Auth to first block in sector
|
||||||
if(!mf_classic_auth(tx_rx, first_block, key, key_type, crypto)) {
|
if(!mf_classic_auth(tx_rx, first_block, key, key_type, crypto, false, 0)) {
|
||||||
// Set key to MF_CLASSIC_NO_KEY to prevent further attempts
|
// Set key to MF_CLASSIC_NO_KEY to prevent further attempts
|
||||||
if(key_type == MfClassicKeyA) {
|
if(key_type == MfClassicKeyA) {
|
||||||
sector_reader->key_a = MF_CLASSIC_NO_KEY;
|
sector_reader->key_a = MF_CLASSIC_NO_KEY;
|
||||||
@@ -965,7 +986,7 @@ bool mf_classic_write_block(
|
|||||||
|
|
||||||
do {
|
do {
|
||||||
furi_hal_nfc_sleep();
|
furi_hal_nfc_sleep();
|
||||||
if(!mf_classic_auth(tx_rx, block_num, key, key_type, &crypto)) {
|
if(!mf_classic_auth(tx_rx, block_num, key, key_type, &crypto, false, 0)) {
|
||||||
FURI_LOG_D(TAG, "Auth fail");
|
FURI_LOG_D(TAG, "Auth fail");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -156,6 +156,14 @@ bool mf_classic_authenticate(
|
|||||||
uint64_t key,
|
uint64_t key,
|
||||||
MfClassicKey key_type);
|
MfClassicKey key_type);
|
||||||
|
|
||||||
|
bool mf_classic_authenticate_skip_activate(
|
||||||
|
FuriHalNfcTxRxContext* tx_rx,
|
||||||
|
uint8_t block_num,
|
||||||
|
uint64_t key,
|
||||||
|
MfClassicKey key_type,
|
||||||
|
bool skip_activate,
|
||||||
|
uint32_t cuid);
|
||||||
|
|
||||||
bool mf_classic_auth_attempt(
|
bool mf_classic_auth_attempt(
|
||||||
FuriHalNfcTxRxContext* tx_rx,
|
FuriHalNfcTxRxContext* tx_rx,
|
||||||
MfClassicAuthContext* auth_ctx,
|
MfClassicAuthContext* auth_ctx,
|
||||||
|
|||||||
@@ -119,7 +119,9 @@ static bool subghz_protocol_encoder_came_get_upload(SubGhzProtocolEncoderCame* i
|
|||||||
//Send header
|
//Send header
|
||||||
instance->encoder.upload[index++] = level_duration_make(
|
instance->encoder.upload[index++] = level_duration_make(
|
||||||
false,
|
false,
|
||||||
((instance->generic.data_count_bit == CAME_24_COUNT_BIT) ?
|
(((instance->generic.data_count_bit == CAME_24_COUNT_BIT) ||
|
||||||
|
(instance->generic.data_count_bit ==
|
||||||
|
subghz_protocol_came_const.min_count_bit_for_found)) ?
|
||||||
(uint32_t)subghz_protocol_came_const.te_short * 76 :
|
(uint32_t)subghz_protocol_came_const.te_short * 76 :
|
||||||
(uint32_t)subghz_protocol_came_const.te_short * 39));
|
(uint32_t)subghz_protocol_came_const.te_short * 39));
|
||||||
//Send start bit
|
//Send start bit
|
||||||
|
|||||||
@@ -27,14 +27,14 @@ Also display type, region and etc...
|
|||||||
## Core1 and Core2 firmware flashing
|
## Core1 and Core2 firmware flashing
|
||||||
|
|
||||||
Core2 goes first, then Core1.
|
Core2 goes first, then Core1.
|
||||||
Never flash FUS or you will loose your job, girlfriend and keys in secure enclave.
|
Never flash FUS or you will lose your job, girlfriend and keys in secure enclave.
|
||||||
|
|
||||||
## Option Bytes
|
## Option Bytes
|
||||||
|
|
||||||
!!! Setting incorrect Option Bytes may brick your MCU !!!
|
!!! Setting incorrect Option Bytes may brick your MCU !!!
|
||||||
|
|
||||||
Defaults are mostly OK, but there are couple things that we'd like to tune.
|
Defaults are mostly OK, but there are couple things that we'd like to tune.
|
||||||
Also OB may be damaged, so we've made couple scripts to check and set option bytes.
|
Also, OB may be damaged, so we've made couple scripts to check and set option bytes.
|
||||||
|
|
||||||
!!! Setting incorrect Option Bytes may brick your MCU !!!
|
!!! Setting incorrect Option Bytes may brick your MCU !!!
|
||||||
|
|
||||||
|
|||||||
68
scripts/power.py
Executable file
68
scripts/power.py
Executable file
@@ -0,0 +1,68 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
from flipper.app import App
|
||||||
|
from flipper.storage import FlipperStorage
|
||||||
|
from flipper.utils.cdc import resolve_port
|
||||||
|
|
||||||
|
|
||||||
|
class Main(App):
|
||||||
|
# this is basic use without sub-commands, simply to reboot flipper / power it off, not meant as a full CLI wrapper
|
||||||
|
def init(self):
|
||||||
|
self.parser.add_argument("-p", "--port", help="CDC Port", default="auto")
|
||||||
|
|
||||||
|
self.subparsers = self.parser.add_subparsers(help="sub-command help")
|
||||||
|
|
||||||
|
self.parser_power_off = self.subparsers.add_parser(
|
||||||
|
"power_off", help="Power off command, won't return to CLI"
|
||||||
|
)
|
||||||
|
self.parser_power_off.set_defaults(func=self.power_off)
|
||||||
|
|
||||||
|
self.parser_reboot = self.subparsers.add_parser(
|
||||||
|
"reboot", help="Reboot command help"
|
||||||
|
)
|
||||||
|
self.parser_reboot.set_defaults(func=self.reboot)
|
||||||
|
|
||||||
|
self.parser_reboot2dfu = self.subparsers.add_parser(
|
||||||
|
"reboot2dfu", help="Reboot to DFU, won't return to CLI"
|
||||||
|
)
|
||||||
|
self.parser_reboot2dfu.set_defaults(func=self.reboot2dfu)
|
||||||
|
|
||||||
|
def _get_flipper(self):
|
||||||
|
if not (port := resolve_port(self.logger, self.args.port)):
|
||||||
|
return None
|
||||||
|
|
||||||
|
flipper = FlipperStorage(port)
|
||||||
|
flipper.start()
|
||||||
|
return flipper
|
||||||
|
|
||||||
|
def power_off(self):
|
||||||
|
if not (flipper := self._get_flipper()):
|
||||||
|
return 1
|
||||||
|
|
||||||
|
self.logger.debug("Powering off")
|
||||||
|
flipper.send("power off" + "\r")
|
||||||
|
flipper.stop()
|
||||||
|
return 0
|
||||||
|
|
||||||
|
def reboot(self):
|
||||||
|
if not (flipper := self._get_flipper()):
|
||||||
|
return 1
|
||||||
|
|
||||||
|
self.logger.debug("Rebooting")
|
||||||
|
flipper.send("power reboot" + "\r")
|
||||||
|
flipper.stop()
|
||||||
|
return 0
|
||||||
|
|
||||||
|
def reboot2dfu(self):
|
||||||
|
if not (flipper := self._get_flipper()):
|
||||||
|
return 1
|
||||||
|
|
||||||
|
self.logger.debug("Rebooting to DFU")
|
||||||
|
flipper.send("power reboot2dfu" + "\r")
|
||||||
|
flipper.stop()
|
||||||
|
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
Main()()
|
||||||
@@ -1,6 +1,8 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
import logging
|
||||||
import sys, os, time
|
import os
|
||||||
|
import sys
|
||||||
|
import time
|
||||||
|
|
||||||
|
|
||||||
def flp_serial_by_name(flp_name):
|
def flp_serial_by_name(flp_name):
|
||||||
@@ -31,6 +33,12 @@ def main():
|
|||||||
flipper_name = sys.argv[1]
|
flipper_name = sys.argv[1]
|
||||||
elapsed = 0
|
elapsed = 0
|
||||||
flipper = flp_serial_by_name(flipper_name)
|
flipper = flp_serial_by_name(flipper_name)
|
||||||
|
logging.basicConfig(
|
||||||
|
format="%(asctime)s %(levelname)-8s %(message)s",
|
||||||
|
level=logging.INFO,
|
||||||
|
datefmt="%Y-%m-%d %H:%M:%S",
|
||||||
|
)
|
||||||
|
logging.info("Waiting for Flipper to be ready...")
|
||||||
|
|
||||||
while flipper == "" and elapsed < UPDATE_TIMEOUT:
|
while flipper == "" and elapsed < UPDATE_TIMEOUT:
|
||||||
elapsed += 1
|
elapsed += 1
|
||||||
@@ -38,9 +46,11 @@ def main():
|
|||||||
flipper = flp_serial_by_name(flipper_name)
|
flipper = flp_serial_by_name(flipper_name)
|
||||||
|
|
||||||
if flipper == "":
|
if flipper == "":
|
||||||
print(f"Cannot find {flipper_name} flipper. Guess your flipper swam away")
|
logging.error("Flipper not found!")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
logging.info(f"Found Flipper at {flipper}")
|
||||||
|
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,28 +1,32 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
import logging
|
||||||
import sys, os
|
|
||||||
import serial
|
|
||||||
import re
|
import re
|
||||||
|
import sys
|
||||||
|
|
||||||
|
import serial
|
||||||
from await_flipper import flp_serial_by_name
|
from await_flipper import flp_serial_by_name
|
||||||
|
|
||||||
|
|
||||||
LEAK_THRESHOLD = 3000 # added until units are fixed
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
logging.basicConfig(
|
||||||
|
format="%(asctime)s %(levelname)-8s %(message)s",
|
||||||
|
level=logging.INFO,
|
||||||
|
datefmt="%Y-%m-%d %H:%M:%S",
|
||||||
|
)
|
||||||
|
logging.info("Trying to run units on flipper")
|
||||||
flp_serial = flp_serial_by_name(sys.argv[1])
|
flp_serial = flp_serial_by_name(sys.argv[1])
|
||||||
|
|
||||||
if flp_serial == "":
|
if flp_serial == "":
|
||||||
print("Name or serial port is invalid")
|
logging.error("Flipper not found!")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
with serial.Serial(flp_serial, timeout=1) as flipper:
|
with serial.Serial(flp_serial, timeout=1) as flipper:
|
||||||
|
logging.info(f"Found Flipper at {flp_serial}")
|
||||||
flipper.baudrate = 230400
|
flipper.baudrate = 230400
|
||||||
flipper.flushOutput()
|
flipper.flushOutput()
|
||||||
flipper.flushInput()
|
flipper.flushInput()
|
||||||
|
|
||||||
flipper.timeout = 300
|
flipper.timeout = 180
|
||||||
|
|
||||||
flipper.read_until(b">: ").decode("utf-8")
|
flipper.read_until(b">: ").decode("utf-8")
|
||||||
flipper.write(b"unit_tests\r")
|
flipper.write(b"unit_tests\r")
|
||||||
@@ -41,9 +45,13 @@ def main():
|
|||||||
status_pattern = re.compile(status_re)
|
status_pattern = re.compile(status_re)
|
||||||
|
|
||||||
tests, time, leak, status = None, None, None, None
|
tests, time, leak, status = None, None, None, None
|
||||||
|
total = 0
|
||||||
|
|
||||||
for line in lines:
|
for line in lines:
|
||||||
print(line)
|
logging.info(line)
|
||||||
|
if "()" in line:
|
||||||
|
total += 1
|
||||||
|
|
||||||
if not tests:
|
if not tests:
|
||||||
tests = re.match(tests_pattern, line)
|
tests = re.match(tests_pattern, line)
|
||||||
if not time:
|
if not time:
|
||||||
@@ -53,8 +61,8 @@ def main():
|
|||||||
if not status:
|
if not status:
|
||||||
status = re.match(status_pattern, line)
|
status = re.match(status_pattern, line)
|
||||||
|
|
||||||
if leak is None or time is None or leak is None or status is None:
|
if None in (tests, time, leak, status):
|
||||||
print("Failed to get data. Or output is corrupt")
|
logging.error(f"Failed to parse output: {leak} {time} {leak} {status}")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
leak = int(re.findall(r"[- ]\d+", leak.group(0))[0])
|
leak = int(re.findall(r"[- ]\d+", leak.group(0))[0])
|
||||||
@@ -62,16 +70,18 @@ def main():
|
|||||||
tests = int(re.findall(r"\d+", tests.group(0))[0])
|
tests = int(re.findall(r"\d+", tests.group(0))[0])
|
||||||
time = int(re.findall(r"\d+", time.group(0))[0])
|
time = int(re.findall(r"\d+", time.group(0))[0])
|
||||||
|
|
||||||
if tests > 0 or leak > LEAK_THRESHOLD or status != "PASSED":
|
if tests > 0 or status != "PASSED":
|
||||||
print(f"Got {tests} failed tests.")
|
logging.error(f"Got {tests} failed tests.")
|
||||||
print(f"Leaked {leak} bytes.")
|
logging.error(f"Leaked (not failing on this stat): {leak}")
|
||||||
print(f"Status by flipper: {status}")
|
logging.error(f"Status: {status}")
|
||||||
print(f"Time elapsed {time/1000} seconds.")
|
logging.error(f"Time: {time/1000} seconds")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
print(
|
logging.info(f"Leaked (not failing on this stat): {leak}")
|
||||||
f"Tests ran successfully! Time elapsed {time/1000} seconds. Passed {tests} tests."
|
logging.info(
|
||||||
|
f"Tests ran successfully! Time elapsed {time/1000} seconds. Passed {total} tests."
|
||||||
)
|
)
|
||||||
|
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user