Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mass storage #8

Closed

Conversation

RogueMaster
Copy link
Owner

What's new

  • [ Describe changes here ]

Verification

  • [ Describe how to verify changes ]

Checklist (For Reviewer)

  • PR has description of feature/bug or link to Confluence/Jira task
  • Description contains actions to verify feature/bugfix
  • I've built this code, uploaded it to the device and verified feature/bugfix

@RogueMaster RogueMaster added the enhancement New feature or request label May 18, 2022
@RogueMaster
Copy link
Owner Author

     CC       applications/desktop/scenes/desktop_scene_main.c

/project/applications/desktop/scenes/desktop_scene_main.c: In function 'desktop_scene_main_app_started_callback':
/project/applications/desktop/scenes/desktop_scene_main.c:22:39: error: 'DesktopMainEventBeforeAppStarted' undeclared (first use in this function); did you mean 'DesktopGlobalBeforeAppStarted'?
22 | desktop->view_dispatcher, DesktopMainEventBeforeAppStarted);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| DesktopGlobalBeforeAppStarted
/project/applications/desktop/scenes/desktop_scene_main.c:22:39: note: each undeclared identifier is reported only once for each function it appears in
/project/applications/desktop/scenes/desktop_scene_main.c:23:35: error: 'Desktop' has no member named 'unload_animation_semaphore'
23 | osSemaphoreAcquire(desktop->unload_animation_semaphore, osWaitForever);
| ^~
/project/applications/desktop/scenes/desktop_scene_main.c:26:39: error: 'DesktopMainEventAfterAppFinished' undeclared (first use in this function); did you mean 'DesktopGlobalAfterAppFinished'?
26 | desktop->view_dispatcher, DesktopMainEventAfterAppFinished);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| DesktopGlobalAfterAppFinished
In file included from /project/core/furi.h:10,
from /project/applications/desktop/scenes/desktop_scene_main.c:1:
/project/applications/desktop/scenes/desktop_scene_main.c: In function 'desktop_scene_main_on_enter':
/project/applications/desktop/scenes/desktop_scene_main.c:88:44: error: 'Desktop' has no member named 'unload_animation_semaphore'
88 | furi_assert(osSemaphoreGetCount(desktop->unload_animation_semaphore) == 0);
| ^~
/project/core/furi/check.h:19:17: note: in definition of macro 'furi_assert'
19 | ((void)(__e));
| ^~~
/project/applications/desktop/scenes/desktop_scene_main.c: In function 'desktop_scene_main_on_event':
/project/applications/desktop/scenes/desktop_scene_main.c:163:14: error: 'DesktopMainEventBeforeAppStarted' undeclared (first use in this function); did you mean 'DesktopGlobalBeforeAppStarted'?
163 | case DesktopMainEventBeforeAppStarted:
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| DesktopGlobalBeforeAppStarted
/project/applications/desktop/scenes/desktop_scene_main.c:165:39: error: 'Desktop' has no member named 'unload_animation_semaphore'
165 | osSemaphoreRelease(desktop->unload_animation_semaphore);
| ^~
/project/applications/desktop/scenes/desktop_scene_main.c:168:14: error: 'DesktopMainEventAfterAppFinished' undeclared (first use in this function); did you mean 'DesktopGlobalAfterAppFinished'?
168 | case DesktopMainEventAfterAppFinished:
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| DesktopGlobalAfterAppFinished
In file included from /project/core/furi.h:10,
from /project/applications/desktop/scenes/desktop_scene_main.c:1:
/project/applications/desktop/scenes/desktop_scene_main.c: In function 'desktop_scene_main_on_exit':
/project/applications/desktop/scenes/desktop_scene_main.c:196:44: error: 'Desktop' has no member named 'unload_animation_semaphore'
196 | furi_assert(osSemaphoreGetCount(desktop->unload_animation_semaphore) == 0);
| ^~
/project/core/furi/check.h:19:17: note: in definition of macro 'furi_assert'
19 | ((void)(__e));
| ^~~

I guess not on this one

RogueMaster pushed a commit that referenced this pull request Apr 15, 2023
RogueMaster pushed a commit that referenced this pull request Oct 31, 2023
[Issue #2] Resolve crash on backing out from the camera scene.
RogueMaster pushed a commit that referenced this pull request Oct 31, 2023
RogueMaster pushed a commit that referenced this pull request Oct 31, 2023
RogueMaster pushed a commit that referenced this pull request Oct 31, 2023
This patch moves the UI system to using a scene manager as well
as a few builtin modules as opposed to a new view for every
step. This decreases the binary size as well as presumably
reduces runtime memory footprint.

It also folds back in the features added in #17 and manages
to fix an experience calculation bug. Note that, the features
from #17 were not fully tested and there may be some incorrect
differences at this time.

This commit adds new features on top of that, the ability to
specify a custom nickname for the traded pokemon, its type(s)
as well as its OT name and ID#.

Types were modified a bit from the original implememtation in #17.
In Gen I, a pokemon with a single type just repeats that type
twice in its data structure. Rather than using 0xFF as a "No Type"
indicator, the main data table repeats types for single typed
pokemon.

There is a bit of a shortcoming with setting types. There is no
way to easily reset to default types. Due to the way the item_list
works, it directly modifies the actual trade data block. The only
way to reset at the moment is to select a different pokemon, and
then re-select the desired pokemon.

The solution to the Nidoran issue was reworked a bit. I had
issues compiling with the unicode escape characters, while
others had issues compiling with the actual unicode characters.
It would have been possible to use wchar_t for the pokemon_table
names, however that would have quadruled the size of each string.
Regardless, the Flipper can't print the male/female symbols at
this time. It might be possible to hack them back in with some
custom icon and View manipulation. The fix was to just use extended
ASCII character values. Since the Flipper doesn't support those
either, it still just renders as a "space". It keeps the strings
as char arrays. Compiles in any environment. And works.

Some of this implementation is still quite hacky and could use
an overhaul before new feature additions. e.g. Adding Gen II
support might not easily work with the current state of the
codebase.

Fixes #7
Fixes #8
RogueMaster pushed a commit that referenced this pull request Nov 1, 2023
RogueMaster pushed a commit that referenced this pull request Nov 1, 2023
RogueMaster pushed a commit that referenced this pull request Nov 1, 2023
Update uhf_scene_save_name.c to work with the new name_generator.h
RogueMaster pushed a commit that referenced this pull request Nov 2, 2023
RogueMaster pushed a commit that referenced this pull request Nov 4, 2023
Added Dolphin Deeds to game (increase motivation when you win)
RogueMaster pushed a commit that referenced this pull request Nov 17, 2023
Updated boilerplate for 0.85.2
RogueMaster pushed a commit that referenced this pull request Nov 19, 2023
Add setup procedure for the Pwnagotchi and Flipper
RogueMaster pushed a commit that referenced this pull request Dec 2, 2023
c035bc4 update ofw plugins, add new plugins
04879fb move base pack here
REVERT: 1a696bd Clock, music player, snake game from firmware repo (#19)
REVERT: 93f7458 Added fap_version field to all apps (#15)
REVERT: 59ee5fc [FL-3475] Fix markdown for descriptions  (#14)
REVERT: 9500f0a Add descriptions for all the faps (#13)
REVERT: 4ae286a Manifest cleanup
REVERT: 4d18e8b Added app descriptions (#8)
REVERT: c3334da Screenshots for app catalog (#6)
REVERT: dc7cd6f Move apps from flipperzero firmware into separate repository

git-subtree-dir: avr_isp
git-subtree-split: c035bc4
RogueMaster pushed a commit that referenced this pull request Dec 2, 2023
dcd256b add daplink without submodule
91e7354 remove submodule freedap
8d9dd34 update daplink
5123276 update ofw plugins, add new plugins
8d625d7 move base pack here
REVERT: bab62cf dap_link: fix application freezes, terminal is not open (#51)
REVERT: e906219 Clock, music player, snake game from firmware repo (#19)
REVERT: cc32b53 Added fap_version field to all apps (#15)
REVERT: d517109 Add descriptions for all the faps (#13)
REVERT: 2cc41d9 Manifest cleanup
REVERT: 4a043fe Added app descriptions (#8)
REVERT: e167130 Screenshots for app catalog (#6)
REVERT: 971d881 Move apps from flipperzero firmware into separate repository

git-subtree-dir: dap_link
git-subtree-split: dcd256b
RogueMaster pushed a commit that referenced this pull request Dec 2, 2023
1edaa67 do not reset 5v if it was enabled in gpio
e3a8fd8 Update evil portal
479e7eb More updates
REVERT: 4d88320 Added Selector for HTML Portals
REVERT: 42b7ba9 Finished Rename feature
REVERT: 5feacfb corrections
REVERT: 4affc9f Unfinished, AP Rename feature
REVERT: 7337adc removed whitespace
REVERT: 8579a75 Revert "added dialogue for selecting a portal (#41)" (#42)
REVERT: 790a75e added dialogue for selecting a portal (#41)
REVERT: 51eaaa9 converted strcat to furi_string_cat() to allow compilation on officia… (#10) (#15)
REVERT: a3d0ee1 Fix: continue logging when not in portal start scene (#8)
REVERT: 4fb5f48 scroll to bottom of server output
REVERT: 8faff60 formatting
REVERT: 44c88a2 Updated missing HTML file error
REVERT: 58f7840 Help screen formatting
REVERT: 575ec38 changed spacing
REVERT: 9799c6b added version to help command
REVERT: 8d737c5 Updated html read error message
REVERT: cd4f624 wipe logs once saved. don't log reset output.
REVERT: 8e2487b free logs once written. Check length of logs.
REVERT: 9c46c56 auto-create logs folder if not created
REVERT: f431a06 added failsafe
REVERT: 3ad4ae9 added readme
REVERT: a8af822 added examples
REVERT: 6988b2c clean up
REVERT: de9e8d0 changed message
REVERT: 20f4b6a added some const values
REVERT: 2b618e2 removed var
REVERT: e45e6b4 removed files
REVERT: feccb92 removed files
REVERT: 457fbb7 removed files
REVERT: d6eb1e1 include fap

git-subtree-dir: evil_portal
git-subtree-split: 1edaa67
RogueMaster pushed a commit that referenced this pull request Dec 2, 2023
b06f165 upd picopass
c7ed35d upd picopass
17e059f update picopass
2eb1433 picopass update
8219548 Update picopass
56ed068 New naming fixes part 1
0fa60c6 update picopass
1f0d6d6 update picopass
c13a519 add new app and update readme
418a93c upd picopass
61ef51d update picopass, uhf rfid
9137b58 update ofw plugins, add new plugins
f3107fd move base pack here
REVERT: 1b1df49 Picopass: bump version + changelog (#56)
REVERT: 2e0c1ef Picopass: Add haptics to loclass (#53)
REVERT: a493492 Picopass: populate key change input with first key of user dictionary (#54)
REVERT: 16986b0 Picopass more bit formats (#47)
REVERT: d9dec5b Improve loclass logic for readers doing keyrolling. (#50)
REVERT: e529b66 Picopass: Remove elite user dictionary from Read Card (#48)
REVERT: 56dec78 Picopass: allow zero keys (#44)
REVERT: 86a26a8 Picopass: one more readme fix (#42)
REVERT: 8624f63 Picopass readme fix (#41)
REVERT: 37e316f revamp picopass readme and add loclass (#39)
REVERT: c28bbee New random file name API fix (#40)
REVERT: 25a4e37 Optimise picopass crypto to fix timing issues with newer readers. (#34)
REVERT: 23a7ab9 Picopass standard key (#32)
REVERT: 1700285 picopass: clean up UI, espeicially for SR cards (#31)
REVERT: 0c3773e Picopass remove sentinel (#29)
REVERT: 0221e48 Picopass, music player version bump (#28)
REVERT: 41a134e Picopass: allow write immediately after read (#26)
REVERT: e6b26e4 Music player, picopass: assets integration (#23)
REVERT: 44c74e1 Picopass: Rename option (#25)
REVERT: 8d36a99 Added fap_version field to all apps (#15)
REVERT: 3b3590e Add descriptions for all the faps (#13)
REVERT: 106fc11 Fixes failure to read picopass cards immediately after emulating. (#10)
REVERT: 01b00bb Picopass: key change to custom elite key
REVERT: 5669ea4 Merge pull request #7 from bettse/write_fail
REVERT: e0ff4ce Manifest cleanup
REVERT: 2ec5c5e Added app descriptions (#8)
REVERT: adf64fc bugfix
REVERT: ee763c1 Picopass: Properly indicate write success/failure
REVERT: 0ecdcad Merge pull request #3 from nvx/feature/picopass_emulation
REVERT: c90b758 Screenshots for app catalog (#6)
REVERT: c610548 Add picopass emulation
REVERT: 0685939 Move apps from flipperzero firmware into separate repository

git-subtree-dir: picopass
git-subtree-split: b06f165
RogueMaster pushed a commit that referenced this pull request Dec 2, 2023
58ffc02 upd nfc magic
b0d9f7f fix icon
6b4b1fb move base pack here
REVERT: 7b8f268 Updated Gen4 Fast-Configuration command (#55)
REVERT: e7b96d2 Added fap_version field to all apps (#15)
REVERT: df11adb Add descriptions for all the faps (#13)
REVERT: e6f45b7 Manifest cleanup
REVERT: 2191e14 Added app descriptions (#8)
REVERT: f09316b Screenshots for app catalog (#6)
REVERT: 576b13c nfc_magic: fix icon dependency (#5)
REVERT: 11d98ac Move apps from flipperzero firmware into separate repository

git-subtree-dir: nfc_magic
git-subtree-split: 58ffc02
RogueMaster pushed a commit that referenced this pull request Dec 2, 2023
8dd6fc799 move base pack here
REVERT: eba6163 1.5.2 - Show correct amount of nonces to collect
REVERT: bcad035 Too many files to change with update :(
REVERT: 89ac8e2 1.5.1 - Fix wrong invalid/skipped keys count
REVERT: 62a7c9b Add catalog readme
REVERT: 6cfd9f4 Add screenshots and banner for catalogs
REVERT: 86fc49f 1.5.0 - New update, new scene Changes:  - Added new scene with information about why nonces aren't collected (skipped/invalid)  - Removed some old code, breaking compability with old firmware  - App renamed from "Flipper (Mifare) Nested" to "Flipper Nested"
REVERT: 93581dd Fix compilation
REVERT: d52b43e 1.4.6 - Fix fallback to hardnested
REVERT: 3a1bd74 1.4.5 - Fix .nested folder if running Hard Nested Closes #8
REVERT: 9396a09 1.4.4 - Fix my fix again
REVERT: f9df9e8 1.4.3 - Oops...
REVERT: 7548828 1.4.2 - Minor code refactor
REVERT: db21a62 1.4.1 - Fix invalid nonces after skipping
REVERT: 3650991 1.4.0 - Huge update Changes:  - Changed scenes, now they are more informative and beautiful (closes #6)  - Check if sector is alive in Nested attacks (closes #5)  - Now tag PRNG detected at sector, where key is available (fix not working with dead 0 sector, closes #4)  - Detect hard PRNG from start, hardnested doesn't require calibration now  - Settings menu: ability to always run Hard Nested (regardless of PRNG)  - Minor code refactoring, a lot of bug fixes (memory leaks, stability improvements)  - Fallback to Hard Nested now after 25 failed tries (was 10)
REVERT: fb317df 1.3.0 - Bump version in application.fam
REVERT: 34a5408 1.3.0 - Check first_byte_sum (no more invalid ones)
REVERT: f15f924 1.2.5 - Add missing file
REVERT: 71bdf7c 1.2.4 - Leaks...
REVERT: f525e97 1.2.3 - free string
REVERT: af49313 1.2.2 - Migrate to file_stream, fix more memory leaks (this time not mine)
REVERT: 30a3796 1.2.1 - Fix memory leaks
REVERT: a8f0a83 1.2.0 - Hard Nested attack
REVERT: 6c1eaa1 Merge branch 'dev' of https://github.com/AloneLiberty/FlipperNested into hardnested
REVERT: af164fa 1.2.0 - Hard Nested attack
REVERT: abb4d16 Commas
REVERT: a50dab5 Migrate FAQ to wiki, add guide links
REVERT: c9654ab 1.1.1 - Improve calibration cycle (hope nothing breaks)
REVERT: f7991cb Update FlipC link
REVERT: f7f453f 1.1.0 - Text changes, nothing new
REVERT: e3651bd 1.1.0 - Change nested folder name to .nested, remove .keys file after search, bug fixes
REVERT: 0c13737 1.0.0 - Public release

git-subtree-dir: mifare_nested
git-subtree-split: 8dd6fc799e7b95b37cd7ac7daf450220fe422644
RogueMaster pushed a commit that referenced this pull request Dec 2, 2023
ce1383d Merge Mass storage updates and fixes
4b56888 update readme
9a45453 update ofw plugins, add new plugins
REVERT: 4482fe2 Clock, music player, snake game from firmware repo (#19)
REVERT: 4b0ea1f Mass storage: deadlock fix (#22)
REVERT: 0a8fc7e Mass storage 1.1 (#18)
REVERT: 1d53f68 Added fap_version field to all apps (#15)
REVERT: 380a4e3 Add descriptions for all the faps (#13)
REVERT: b6967eb Manifest cleanup
REVERT: 441c5d0 Added app descriptions (#8)
REVERT: 7f35fcc Screenshots for app catalog (#6)
REVERT: ae2d084 [FL-3432] USB storage app (#1)

git-subtree-dir: mass_storage
git-subtree-split: ce1383d
RogueMaster pushed a commit that referenced this pull request Dec 2, 2023
4ed4e31 upd flipbip
800482e update apps
fdb62b1 more updates
REVERT: 69ebea1 chore: OCD fixes
REVERT: eb81693 Merge pull request #22 from xtruan/xtruan-patch-2
REVERT: a04e991 chore: update manifest.yml
REVERT: 5026eb0 Merge pull request #21 from xtruan/dev/reduce-fap-size
REVERT: b426b69 chore: bump ci to 0.88.0
REVERT: 1565782 chore: spelling, move param setting
REVERT: ccf7deb chore: spacing
REVERT: 3d48864 chore: credit
REVERT: 7dceca6 fix: remove haptic setting, cleanup
REVERT: 26552bd chore: fmt
REVERT: 656c410 chore: comments
REVERT: 49a22aa fix: text input behavior
REVERT: 39c8dfe fix: remove haptic, add mnemonic import status text
REVERT: 2e4023b fix: remove keychain icon
REVERT: 75f3c96 chore: slight refactor of crypto lib for consistency
REVERT: b81adf6 chore: 1.13
REVERT: 1057242 fix: remove led
REVERT: 8cb7f09 fix: comment fix
REVERT: 9a83d5a fix: remove startscreen
REVERT: 927f45d Merge pull request #20 from xtruan/xtruan-patch-1
REVERT: 9f2ac7a Update README.md
REVERT: df97f17 chore: 1.12 catalog
REVERT: a9057eb chore: bump to 1.12
REVERT: b174491 chore: lint
REVERT: 114d0e0 Merge pull request #19 from wh00hw/main
REVERT: 4e7ebfd update README
REVERT: 4bca4c8 add ZEC t-address
REVERT: eb9f6f4 Create ufbt_build.yml
REVERT: de58db9 chore: catalog update
REVERT: 0073c32 fix: ufbt fix
REVERT: ef151a6 fix: manifest
REVERT: cb4269d feat: manifest
REVERT: e19ecc0 chore: add screenshots
REVERT: 0d5bc6f Merge pull request #17 from xtruan/develop
REVERT: ac633a4 fix: potential buff overflow, new version scheme, check size in CI
REVERT: 1375bc6 Merge pull request #16 from xtruan/develop
REVERT: 08f60c5 Update release.yml
REVERT: 8182863 Merge branch 'develop'
REVERT: 6f265e7 Update release.yml
REVERT: 6961945 Update release.yml
REVERT: 740a2f8 Merge pull request #15 from xtruan/develop
REVERT: 7ab548a chore: readme update
REVERT: 3fc8915 chore: 0.86.1
REVERT: 0413ca4 feat: warning text, v1.0.0
REVERT: 93febf3 Update build.yml - new app name
REVERT: 62605c8 Update flipbip_scene_1.c - icons
REVERT: 3208303 Update flipbip_startscreen.c - icons
REVERT: 482dc69 Update application.fam
REVERT: 4905a91 Update application.fam
REVERT: e8ce29f update appid
REVERT: 07c2f1e Merge pull request #14 from xtruan/develop
REVERT: b2597b3 update readme
REVERT: 4054108 Merge pull request #10 from xtruan/develop
REVERT: 35209cc wording
REVERT: 24d185f bumping to v0.0.9, adding specific labels to input texts
REVERT: 6e69746 Merge pull request #9 from xtruan/develop
REVERT: 091dac3 update CI, define text buf size
REVERT: ed136df text cleanup and fmt
REVERT: c73dc8c Merge pull request #8 from xtruan/develop
REVERT: c9a9f33 bump flipper fw version
REVERT: 73d2d96 removing cdefines, adjusting display for eth addrs
REVERT: 03f9ae6 #define for qr code content size
REVERT: 23e8fda bump version, fix 'has_file' and 'load_file' buffer size
REVERT: 9f46fc6 Merge branch 'develop'
REVERT: 8ca73a0 Update README.md
REVERT: e7943e3 Merge pull request #7 from xtruan/develop
REVERT: 0150732 CI updates
REVERT: 9734eac modify build scripts, build only
REVERT: 5350136 adding CI
REVERT: 91831db adding README updates
REVERT: 68a112e fix address gen bug
REVERT: c93f308 nav
REVERT: bc830bb clean up labels
REVERT: 2aa66d1 write QR codes for addresses to file - cleanup
REVERT: 99adebd write QR codes for addresses to file
REVERT: 8d2de88 moving qr file stuff to file class
REVERT: f8f744e pregenerate addresses
REVERT: 3f93a8f fmt
REVERT: d9407ea qr gen prototype
REVERT: c9aa932 bump version
REVERT: 47890a1 making crypto code a private lib
REVERT: 8413b87 Merge branch 'develop'
REVERT: ad40ecc zero address node
REVERT: 298aebe Merge pull request #5 from xtruan/develop
REVERT: 2c72c2d format
REVERT: 570c943 memory tweaks and cleanup
REVERT: 256c0b4 version bump, working mem cleanup
REVERT: c54a1a7 Merge pull request #4 from xtruan/develop
REVERT: b650db1 error handling cleanup
REVERT: 8843203 readme
REVERT: 8ac6bc8 readme update
REVERT: 2c771e3 cleanup
REVERT: 90d001a importing of mnemonics
REVERT: b149ebc text input flow cleanup
REVERT: a376ba9 adding BIP39 passphrase
REVERT: b809efc fbt format
REVERT: 7d96faf cleanup menu items
REVERT: b04ca92 refactor text
REVERT: 84d40af clean up coin support
REVERT: 5b8263b simplifying hex conversion, adding DOGE support!
REVERT: 0c697a0 Merge branch 'develop'
REVERT: 3714144 formatting updates
REVERT: f73ef9e add link to RM, add donate links
REVERT: 531b0eb typo
REVERT: 0f3fa94 crypto Makefile changes
REVERT: 642455f Merge pull request #3 from xtruan/develop
REVERT: 8957be9 readme
REVERT: 3ccdbb3 Merge branch 'main' into develop
REVERT: e85117b touch ups
REVERT: d02d21a meta update
REVERT: 66ddf24 cleanup
REVERT: 9344703 fmt changes
REVERT: 57986fd running flipper fmt
REVERT: f3280c2 prod file names, updated docs
REVERT: ce98b7e storage final cleanup
REVERT: 0db90fa memory
REVERT: ab40026 new wallet generation ability
REVERT: 1a7b0db overwrite boolean
REVERT: 5d626b8 seperate menu items for coin instead of preference, remove scene_2
REVERT: f133996 cleanup flow
REVERT: 2de9326 return
REVERT: aa7e286 file operations cleanup
REVERT: 473cdf7 better keys
REVERT: 410fe78 securing storage
REVERT: ce8afc6 storage proof of concept
REVERT: 5aa6379 file
REVERT: 7507a66 Merge branch 'develop' into storage
REVERT: 1424655 cleanup naming/types
REVERT: 844569e removing printf, replacing with simple itox
REVERT: de10564 storage stubs
REVERT: 87cf393 Update README.md
REVERT: 3925557 Merge pull request #1 from xtruan/develop
REVERT: 4ea47f6 update readme
REVERT: 553b8f3 message cleanup
REVERT: 95455c3 eth compatibility!
REVERT: a978a37 move eth address hashing to heap
REVERT: f34fba7 adding magic number comments
REVERT: 820aaa5 disabling KECCAK and NEM
REVERT: 6857f79 update app metadata
REVERT: c1ca00a readme updates
REVERT: 69d91ff info cleanup
REVERT: 9d91c51 cleanup
REVERT: 03d190a readme update 2
REVERT: fa69b78 readme update
REVERT: bb6db8d cleanup
REVERT: 3602004 changelog update
REVERT: 8ea4843 functional!
REVERT: 7bb88e9 break out mnemo draw
REVERT: 602c987 scene cleanup
REVERT: e10c129 removing speaker, printf
REVERT: 0ebd89e BTC wallet gen core logic working
REVERT: a4ad87b -printf
REVERT: 804e0f1 itoa
REVERT: ea660eb turn off options to shrink binary size
REVERT: e3f289d naming
REVERT: a35dd8c remove scene2
REVERT: 7059912 delete coins pkg, clean up xmr
REVERT: 81b9e20 flipbip39 > flipbip
REVERT: 9e53238 fix BIP44 derivation
REVERT: 78842e3 updating deriv
REVERT: 13d5204 updating deriv
REVERT: 97e3bd2 working on HDNode
REVERT: 5f7063d turn of precomputed curves for memory
REVERT: aba3de4 BIP39 seed generation working readme
REVERT: 7c5daaa BIP39 seed generation working
REVERT: c681b3b sprintf
REVERT: bb4832a adding custom printf
REVERT: 0a2c305 proto
REVERT: 81d0731 adding own impl of strtok to fix warnings
REVERT: a7cfb8c Update README.md
REVERT: d8ad4bd Update README.md
REVERT: 2a09d28 reorganizing code, marking WIP seed code
REVERT: 0443a1e updating to add beginnings of key generation
REVERT: f2934ba add support for 18 words
REVERT: b47b6ab update naming, adding coin prototyping, adding WIP BIP32 code
REVERT: 1166f2b better ui
REVERT: 37d0e38 icon
REVERT: deb57aa updating crypto/rand to use Flipper Zero specific hardware RNG
REVERT: 6619222 clean up settings, clear mnemonic memory on scene exit
REVERT: e924a45 updating settings, UI cleanup
REVERT: f889441 port to work with flipper and fbt
REVERT: b323627 adding trezor crypto lib
REVERT: c0a493a boilerplate
REVERT: 5674a3b Initial commit

git-subtree-dir: flipbip
git-subtree-split: 4ed4e31
RogueMaster pushed a commit that referenced this pull request Dec 2, 2023
7e5839e fixing some big bugs
fd0154d update ofw plugins, add new plugins
5c7de40 move base pack here
REVERT: 5568d73 Added fap_version field to all apps (#15)
REVERT: 0f08e45 Add descriptions for all the faps (#13)
REVERT: 0ac0fed Manifest cleanup
REVERT: efecc74 Added app descriptions (#8)
REVERT: 05642f4 Screenshots for app catalog (#6)
REVERT: 7330292 Move apps from flipperzero firmware into separate repository

git-subtree-dir: mfkey32
git-subtree-split: 7e5839e
RogueMaster pushed a commit that referenced this pull request Dec 2, 2023
d136006 move base pack here
REVERT: 99bd509 Picopass, music player version bump (#28)
REVERT: 1cce06c Music player, picopass: assets integration (#23)
REVERT: fca2fde Clock, music player, snake game from firmware repo (#19)
REVERT: 19cc230 Mass storage: deadlock fix (#22)
REVERT: b108d7a add Auriol-AHFL protocol (#17)
REVERT: 64625d3 Mass storage 1.1 (#18)
REVERT: f3d0a51 .gitignore add (#16)
REVERT: a012a03 Added fap_version field to all apps (#15)
REVERT: 7d7a283 [FL-3475] Fix markdown for descriptions  (#14)
REVERT: f3c49ed Add descriptions for all the faps (#13)
REVERT: d8c1593 Added build workflow (#11)
REVERT: f15e0f8 Add codewoners and PR template
REVERT: 4670a88 Fixes failure to read picopass cards immediately after emulating. (#10)
REVERT: fdb9b1c Merge pull request #9 from bettse/custom_key
REVERT: e5b76f8 Picopass: key change to custom elite key
REVERT: d625492 Merge pull request #7 from bettse/write_fail
REVERT: 20468a8 Manifest cleanup
REVERT: e445072 Added app descriptions (#8)
REVERT: 9df58b6 bugfix
REVERT: 2fd255d Picopass: Properly indicate write success/failure
REVERT: 6300982 Merge pull request #3 from nvx/feature/picopass_emulation
REVERT: 586836b Screenshots for app catalog (#6)
REVERT: c20e110 nfc_magic: fix icon dependency (#5)
REVERT: 5f39e01 Removed clock, music player, snake game (#4)
REVERT: ed0823c [FL-3432] USB storage app (#1)
REVERT: cc70ae9 Add picopass emulation
REVERT: 7d55581 Prepare nfc_rfid for fap catalog (#2)
REVERT: 881d9be Move apps from flipperzero firmware into separate repository

git-subtree-dir: music_player
git-subtree-split: d136006
RogueMaster pushed a commit that referenced this pull request Dec 2, 2023
764e63f Revert "upd rfid freq detector"
18ff6c6 upd rfid freq detector
e6cc06d update ofw plugins, add new plugins
bce0224 move base pack here
REVERT: 30603d7 New random file name API fix (#40)
REVERT: 0c411f1 RFID detector: rename app NFC/RFID Detector -> RFID detector , delete "about" scene (#38)
REVERT: d73f0e5 Clock, music player, snake game from firmware repo (#19)
REVERT: 255059c Added fap_version field to all apps (#15)
REVERT: 72317a8 Add descriptions for all the faps (#13)
REVERT: 5647725 Manifest cleanup
REVERT: 24c39f0 Added app descriptions (#8)
REVERT: ccc6e20 Prepare nfc_rfid for fap catalog (#2)
REVERT: b7c727e Move apps from flipperzero firmware into separate repository

git-subtree-dir: nfc_rfid_detector
git-subtree-split: 764e63f
RogueMaster pushed a commit that referenced this pull request Dec 2, 2023
91ae0d9 upd nrf24 batch
28460c3 fixing some big bugs
4a6751c move apps
REVERT: 335ddcc upd txt
REVERT: a823ea3 '$' at the end of the line - decimal number(s)
REVERT: 6b29cec Update README.md
REVERT: 857afd7 upd txt
REVERT: 55ced2c upd txt
REVERT: 91698ab comment: first char "!" or ";"
REVERT: ad51231 fix
REVERT: b40bda3 upd txt
REVERT: a511b83 upd txt
REVERT: 0f6190c upd txt
REVERT: 2642747 upd readme
REVERT: f3e0c0e upd txt
REVERT: 8d1c79f fix
REVERT: 7e56077 fix
REVERT: ee52e05 refactoring *.txt
REVERT: 6f56ab4 upd txt
REVERT: ac29299 upd txt
REVERT: 71c1ab2 + Kitchen Vent Dimmer.txt
REVERT: 29e118c fix
REVERT: c2e50be txt
REVERT: 6f5e944 txt
REVERT: 7c5cc8c version 1.8
REVERT: 961ab3f fix bugs
REVERT: 41fbbbf fix
REVERT: 0e4bb3d checks NRF24 hardware faults
REVERT: dd7fcfc upd
REVERT: ad74ab2 added SBatch cmd (remote controller), optimization
REVERT: 46c5f1d fix
REVERT: 0856a30 upd
REVERT: 4a5b009 upd txt
REVERT: 700ec39 upd
REVERT: 701f85b auto turn on 5V
REVERT: 9e69335 auto turn on 5V
REVERT: 3ff2f5e show battery current
REVERT: 33694cc fix ValueMutex
REVERT: 69391ea Merge pull request #9 from vad7/master
REVERT: 0696369 repeat read cmd (long press OK in received read cmd screen)
REVERT: 75809ee Merge pull request #8 from vad7/master
REVERT: 401bed5 fix
REVERT: 7761a22 readme
REVERT: 3101be2 NRF24_mini board support - 5V auto power on
REVERT: 8438749 listen mode
REVERT: 0dbf1a1 new "Set" cmd, added Kitchen Vent.txt
REVERT: 0cbad41 ability to change address and channel
REVERT: 3c96191 ability to skip cmd of write batch
REVERT: 2f9d859 ability to skip cmd of write batch
REVERT: 51d9d97 ability to skip cmd of write batch
REVERT: 6053aa8 Ability to save in file read data (ReadBatch) as WriteBatch
REVERT: 47926cd Ability to save in file read data (ReadBatch) as WriteBatch
REVERT: aa5fca0 ability to edit value in WriteCmd
REVERT: bb99731 fix
REVERT: 32f411d Merge pull request #6 from vad7/master
REVERT: e7480de upd
REVERT: e153141 Update README.md
REVERT: 1252e87 Update README.md
REVERT: 2eaeac3 Update README.md
REVERT: 07b7080 Update README.md
REVERT: a70f178 Update README.md
REVERT: b79c0cb Merge pull request #5 from vad7/master
REVERT: 433c6cd descript
REVERT: 3952d43 Merge pull request #4 from vad7/master
REVERT: fdabb9c description
REVERT: 267c495 Update README.md
REVERT: 9a8e349 Merge pull request #3 from vad7/master
REVERT: 7ec1e34 screenshots
REVERT: 4802f00 Merge pull request #2 from vad7/master
REVERT: 42d8e2c upd
REVERT: 460f717 Merge pull request #1 from vad7/master
REVERT: 4978e53 first
REVERT: f8022a6 Initial commit

git-subtree-dir: nrf24batch
git-subtree-split: 91ae0d9
RogueMaster pushed a commit that referenced this pull request Dec 2, 2023
60f2144 fixing some big bugs
77daf73 combine 1
8a997c6 move base pack here
REVERT: 4eb9e1f Fix syntax
REVERT: 2459be5 Add upstream remote
REVERT: 673d533 Merge pull request #12 from H4ckd4ddy/rogue-version
REVERT: 0452b35 Pull rogue version
REVERT: 708e275 Merge pull request #10 from H4ckd4ddy/rogue-version
REVERT: 0c912f5 Pull rogue version
REVERT: 626457e Merge pull request #8 from bananu7/master
REVERT: 010c359 Changed ValueMutex to new FuriMutex
REVERT: 15c32e7 Update plugin and add build instructions
REVERT: 19ac183 Use "Flipper Application Manifest Format"
REVERT: 0d33cbf Update README.md
REVERT: a937263 Initial commit
REVERT: 4018a16 Initial commit

git-subtree-dir: sentry_safe
git-subtree-split: 60f2144
RogueMaster pushed a commit that referenced this pull request Dec 2, 2023
6919d06 update ofw plugins, add new plugins
1fb9542 move base pack here
REVERT: 37b9cde Added fap_version field to all apps (#15)
REVERT: dd43783 Add descriptions for all the faps (#13)
REVERT: d49c328 Manifest cleanup
REVERT: e0abae2 Added app descriptions (#8)
REVERT: db74490 Screenshots for app catalog (#6)
REVERT: 322814d Move apps from flipperzero firmware into separate repository

git-subtree-dir: signal_generator
git-subtree-split: 6919d06
RogueMaster pushed a commit that referenced this pull request Dec 2, 2023
7de6ad4 New naming fixes part 1
e305ba8 update ofw plugins, add new plugins
6f1e409 move base pack here
REVERT: aa1a3b3 New random file name API fix (#40)
REVERT: 081bdc3 Clock, music player, snake game from firmware repo (#19)
REVERT: a89cfcb Added fap_version field to all apps (#15)
REVERT: 9753f41 [FL-3475] Fix markdown for descriptions  (#14)
REVERT: c7cf51e Add descriptions for all the faps (#13)
REVERT: 889d999 Manifest cleanup
REVERT: 96ed981 Added app descriptions (#8)
REVERT: 43563d7 Screenshots for app catalog (#6)
REVERT: ac8196f Move apps from flipperzero firmware into separate repository

git-subtree-dir: spi_mem_manager
git-subtree-split: 7de6ad4
RogueMaster pushed a commit that referenced this pull request Dec 2, 2023
2dd92db add lib back
a0ff0ba remove submodule
952c674 sync license of totp plugin
4d791b7 update totp
dcc5d48 update totp and include cli plugins
574c3ac upd totp ver
12ace98 update totp
293b36d update totp
58440b2 update totp
020928c move base pack here
REVERT: b082440 Dropped OFW-catalog specific stuff. Changed license to GPLv3 (#208)
REVERT: d5b30ab Updated descriptions
REVERT: 87cb8b2 Updated version
REVERT: 69659e8 Implemented #205 (#206)
REVERT: 54fe1db Implemented #203 (#204)
REVERT: e8c5187 Updated changelog for OFW catalog
REVERT: 005df8c Updated version
REVERT: 726d1a5 Disable Crypto v1 by default
REVERT: 172f292 Implemented #200 (#201)
REVERT: 6513672 Implemented #198 (#199)
REVERT: b106c91 Updated version
REVERT: ebc6eab Update DESCRIPTION.md
REVERT: cd20802 Update CHANGELOG.md
REVERT: dca6043 Small fix
REVERT: 88a9666 Updated version
REVERT: 62cff06 Implemented #195 (#196)
REVERT: 3d1c00e Updated version
REVERT: 4f6d25c clang format
REVERT: 0d9c3b2 Implemented #193
REVERT: 07752e5 Updated version
REVERT: 8f86849 Fixed #190 (#191)
REVERT: 9c6c257 Updated version
REVERT: cd5cd64 Implemented #188 (#189)
REVERT: 2593677 Updated changelog for OFW catalog
REVERT: f9834a0 Updated version
REVERT: 68646aa Revert "Updated version"
REVERT: 77cc775 Updated version
REVERT: 57fdb34 Revert "Updated version"
REVERT: 22c6ff2 Updated version
REVERT: 86a90ab Implemented #185 (#187)
REVERT: afe7e56 Refactoring (#184)
REVERT: 446e0a1 Refactoring (#183)
REVERT: 1b3e5d8 Fixed #178 (#182)
REVERT: a9de233 Update CHANGELOG.md
REVERT: af5b9f2 Implemented #177 (#179)
REVERT: 658125b Ghi 171 (#176)
REVERT: bc5daa2 Implemented #171 (#175)
REVERT: 0604b90 FIxed #172 (#174)
REVERT: 19fbbe0 Fixed #169 (#170)
REVERT: 3790f18 Implemented #167 (#168)
REVERT: 2a6a725 Corrected stuff for OFW catalog
REVERT: e134591 Update CHANGELOG.md
REVERT: 1b4673e Closing #165 (#166)
REVERT: 6315ccc Code cleanup
REVERT: 0a424a5 CLang format
REVERT: bf3952d Code cleanup
REVERT: 749fbf4 Got rid of useless things I found
REVERT: d0cb734 CLang format
REVERT: 0ee50f3 Updated changelog
REVERT: 4c3d75d Closing #162 and prepared for OFW catalog (#163)
REVERT: 654d929 Returning back original category
REVERT: c0efd36 Fixed file name naming
REVERT: 7054937 clangformat
REVERT: ab7bbb9 Few tweaks for OFW catalog (#161)
REVERT: 5627bc9 * Fix for #158
REVERT: 44a0949 Refactoring 6 6 (#157)
REVERT: a89d15e Fixed #155 (#156)
REVERT: 9713ccb Fix for #153 (#154)
REVERT: 123f421 * Updated firmware references (#151)
REVERT: d13bcd7 Closing #148 (#150)
REVERT: bc1eab7 Improved token input automation code to get rid of caps lock key usage (#147)
REVERT: 1020c3c Refactoring (#144)
REVERT: 4d3e208 Added banner image for FlipC webpage
REVERT: d8bf9c5 Moved FlipC screenshots (#143)
REVERT: c11a722 Refactoring & bugfixes (#142)
REVERT: 3458f0a Implemented #137 (#141)
REVERT: 168c6e9 Implemented #138 (#139)
REVERT: 9df6fc5 * Added `--clean` flag to custom FBT tool (#133)
REVERT: 7b34241 Refactoring (#130)
REVERT: 0a9cc9e Fix BT adv name length on Xtreme firmware (#126)
REVERT: a8ea396 Closing #123 (#124)
REVERT: 5aff2f0 Refactoring. Dropping useless methods #120 (#121)
REVERT: b4e434b * Firmware submodules updated (#119)
REVERT: cb111a6 Fixed #116 (#117)
REVERT: 6ca8a70 Added Steam algo (#115)
REVERT: 2d52c78 Xtreme firmware build (#114)
REVERT: 16ba603 Implemented #106 (#107)
REVERT: 2901da8 Implemented #103 (#105)
REVERT: 5b6aedb Implemented #102 (#104)
REVERT: fd60525 Implemented #95 (#97)
REVERT: 03a7f93 Implemented BadBT automation (#91)
REVERT: 97c6116 Updated firmware references (#88)
REVERT: 44df62c * Updated firmware submodules (#76) (#78)
REVERT: ebb0a3a * Updated firmware submodules (#72) (#73)
REVERT: f7e7550 Affecting dolphin level at start (#71)
REVERT: 141f424 Cosmetic fixes
REVERT: 41c23ba Implementation of #65 (#66)
REVERT: cd7c9c7 Initial changes on #58 (#59)
REVERT: 2a69aa2 Fix for #53 (#54)
REVERT: ba15840 Fix for #51 (#52)
REVERT: b718e64 Implemented #49 (#50)
REVERT: 7bb00ea Use dedicated config directory instead of app folder (#48)
REVERT: 805adfe Implemented #36 (#38)
REVERT: fbb9d22 Clang format ran (#35)
REVERT: fea22d7 Implemented PIN changing via CLI (#32)
REVERT: 018aa7e Implemented #30 (#31)
REVERT: ee4252c Implemented #26 (#27)
REVERT: 9dcb6cb Fixed #24 (#25)
REVERT: 766a3d6 Implemented "type code in badusb mode"
REVERT: 3a111ef Clang format ran
REVERT: 44879ec Refactoring (#22)
REVERT: bd0e3c9 Reduced code size to avoid weird issue with COMPACT=1 DEBUG=0 build (#19)
REVERT: a11332c PVS-Studio pipeline (#18)
REVERT: e8bcd90 Refactoring (#17)
REVERT: 70f84f0 Still fixing SONAR issues (#15)
REVERT: 57d83e7 Fixed SONAR issues (#14)
REVERT: a5fcc23 Fixing SONAR issues (#13)
REVERT: 8d7167c Ran clang format
REVERT: 8083b9e CLI help text refactoring to better match http://docopt.org/ standard
REVERT: 1a51c11 Clang format ran
REVERT: 3a08fee Few more refactoring
REVERT: a8f2ca0 Improved authentication handling in CLI
REVERT: 4c5533f * Refactoring
REVERT: bc9836e * Updated firmware submodules
REVERT: 75b3849 A better fix for #8
REVERT: 2674ab5 Fixed issue #6
REVERT: a55ac88 Refactoring.
REVERT: 526213c Clang format ran
REVERT: 0483d8f * Fixed "Add new token" scene.
REVERT: 9c1d1b9 * Made PIN optional (#4)
REVERT: 5ea454e Added timezone configuration UI
REVERT: c0a9aa7 Updated format specifier where were wrong
REVERT: 5f8e55e Well... CLI was nice idea, but I can't make it work. Maybe next time
REVERT: 99e8ceb * Updated to FuriString
REVERT: e85da67 Initial commit. Moved all the code and setup flipper firmware as submodule

git-subtree-dir: totp
git-subtree-split: 2dd92db
RogueMaster pushed a commit that referenced this pull request Dec 30, 2023
Added automated builds on GitHub
RogueMaster pushed a commit that referenced this pull request Jan 4, 2024
Can finally send, correctly control LEDs and return to menu when done
RogueMaster pushed a commit that referenced this pull request Jan 11, 2024
RogueMaster pushed a commit that referenced this pull request Jan 11, 2024
RogueMaster pushed a commit that referenced this pull request Jan 30, 2024
RogueMaster pushed a commit that referenced this pull request Feb 8, 2024
RogueMaster pushed a commit that referenced this pull request Feb 20, 2024
RogueMaster added a commit that referenced this pull request Mar 1, 2024
9f74b3362f Fix URL
0110ec76ed Merge pull request #2 from AbeNaws/dev
ce72c1f2c5 Merge pull request #1 from Mr-Proxy-source/dev
8530b1a3b8 Small bump in the road
3e7fe1957f Added lil creds to website hehe
64f78b6262 Added Momentum custom pop up
af7feff6ae Merge totp from https://github.com/akopachov/flipper-zero_authenticator
43b04b80f2 Merge seader from https://github.com/bettse/seader
730c7efc49 feat: updated wolfSSL library to the latest version 5.6.6
63e04d575b ci: added build target for Momentum firmware
dae7906c1a Small bump in the road
29e353cb19 fix: fixed build on latest toolchain
58b9cb1769 Format
59ebc5ba9a PcMonitor: Store keys in app storage
4b11f03634 PcMonitor: Fix for new BLE API (req pairing again, different MAC)
a350b09d4c Add pc_monitor from https://github.com/TheSainEyereg/flipper-pc-monitor
4ee2ce605e Remove spaces in serial QR code
112d1b690e Save SN to QR code file
144bf42fe7 Save serial number to file
87813fc67d serial number
f05a4ba59b Merge nfc_magic from https://github.com/xMasterX/all-the-plugins
94a1e5980b Merge wifi_marauder_companion from https://github.com/xMasterX/all-the-plugins
ee6e40f604 Merge video_game_module_tool from https://github.com/flipperdevices/flipperzero-good-faps
d064acf969 Merge unitemp from https://github.com/xMasterX/all-the-plugins
22eca4721f Merge totp from https://github.com/xMasterX/all-the-plugins
90a3d28325 Merge picopass from https://github.com/xMasterX/all-the-plugins
a21c43a5e7 Merge geiger from https://github.com/nmrr/flipperzero-geigercounter
d750d6f8fc Merge flipbip from https://github.com/xMasterX/all-the-plugins
c176f6736f Merge doom from https://github.com/xMasterX/all-the-plugins
692872ee14 Merge bt_trigger from https://github.com/xMasterX/all-the-plugins
04e7527b09 Merge atomicdiceroller from https://github.com/nmrr/flipperzero-atomicdiceroller
9e59769126 Merge airmouse from https://github.com/xMasterX/all-the-plugins
2b289ed0b7 bug fix
8de72bfce8 bug fix
fa7e0e1c9b revert of the revert
a8b5160dea [FL-3773] VGM Tool: Fix crashes (#149)
8396f537cc Revert "upd nfc magic"
44c7b01199 update wifi marauder app
0a2b6900fe C20 fixes
6d9b64427b Marauder: Fix script save pcaps handling
01105174f5 Properly fix marauder script number parsing
f0f88cfa47 Revert "Fix marauder script retarded number parsing"
3bd8757843 Fix marauder script retarded number parsing
4ed8511374 fix for new c version
35084c0a02 fix for new c version
2e637b1eb9 fix for new c version
667ce8c00b fix for new c/cpp versions
c613780fd9 upd picopass
8c39cdeb29 upd totp
f2976b5275 MassStorage: Move to firmware repo
f4a8f664b2 MassStorage: Delete new image on fail, not "already exists"
f3eff033b9 MassStorage: Format new images to exFAT automatically
b1ec79bbb1 Merge totp from https://github.com/akopachov/flipper-zero_authenticator
76cc292df3 Revert "Totp: BLE Refactor"
9f127edcad Revert "Totp: Temp fix automation abstractions"
6e9970ea1c Fix some update scripts
2505d69292 Merge seader from https://github.com/bettse/seader
7a63e42d5c Merge qrcode from https://github.com/bmatcuk/flipperzero-qrcode
a39b95fd2f Merge picopass from https://github.com/flipperdevices/flipperzero-good-faps
a221cb899d Updated version
6bb63e8e11 feat: updated code to make it compatible with latest FW changes (BT refactoring) (#225)
3e3b08961e Fix build
5d0aec99cd BleSpam: Restore previous extra beacon config on exit
aff925a6c1 BleSpam: Fix connection issues + refactor
84a1dabc58 VgmTool: Manifest tweaks
95b0d684b1 upd airmouse
6d3a3cdbc0 triggerble updates
f1e21a5331 totp updates
34ab1b6235 update to firmware 0.98.3
a6d8819321 Update VGM Air Mouse
6798ec01a7 BleSpam: BLE Refactor
4987eed622 Picopass save written key (#126)
1a116cc043 Merge branch 'dev' of https://github.com/Flipper-XFW/Xtreme-Apps into dev
6a65d71d11 BtTrigger: BLE Refactor
96d5609a0c AirMouse: BLE Refactor
8a1ca62582 Totp: Temp fix automation abstractions
d9f7c15535 Totp: BLE Refactor
c389bb7442 Format
beb9c4dc76 Add air_arkanoid/engine from https://github.com/flipperdevices/flipperzero-game-engine
20ffabb4bb Fix submodule
5613c91cd1 Fix merge
2688992a08 Add vgm_air_mouse from https://github.com/flipperdevices/flipperzero-good-faps
4be5d9d426 Add second remote
dadb9f0afd Add vgm_air_mouse from https://github.com/xMasterX/all-the-plugins
fbe5d1ea67 Fix merge
927849c9e7 Add air_arkanoid from https://github.com/flipperdevices/flipperzero-good-faps
9b5c83a2b1 Add second remote
e2b58d06d1 Add air_arkanoid from https://github.com/xMasterX/all-the-plugins
033e87bfbd Fix merge
4cbdc17798 Add video_game_module_tool from https://github.com/flipperdevices/flipperzero-good-faps
6e3f6cc2ff Add second remote
154b3458ee Add video_game_module_tool from https://github.com/xMasterX/all-the-plugins
403ee9dca5 Add digikey smartcard2click link
522790fd5c fix: breaking changes in latest FURI_HAL
4a0d9f3f72 Format
a1fd07bd39 UniTemp: Fix merge
3215625170 DateTime lib refactor fixes
797db97737 Fix merge (why git?)
ff24807dc8 Fix remote fetch order
5abd2bddaf Improve subtree update scripts
1cba98f1d1 Merge unitemp from https://github.com/quen0n/unitemp-flipperzero
96593b9d8f Merge atomicdiceroller from https://github.com/nmrr/flipperzero-atomicdiceroller
11c9033228 Merge totp from https://github.com/xMasterX/all-the-plugins
9b07a5b631 Merge seader from https://github.com/xMasterX/all-the-plugins
7a33b6c19a Merge picopass from https://github.com/xMasterX/all-the-plugins
2484327d17 Merge nrf24batch from https://github.com/xMasterX/all-the-plugins
1ddcad9d54 Merge nfc_magic from https://github.com/xMasterX/all-the-plugins
dffc45bd68 Merge mifare_fuzzer from https://github.com/xMasterX/all-the-plugins
4f061e863a Merge geiger from https://github.com/xMasterX/all-the-plugins
fa8ff0ae56 Merge camera_suite from https://github.com/xMasterX/all-the-plugins
b18188b94a Merge bpmtapper from https://github.com/xMasterX/all-the-plugins
67f9049a7f Merge avr_isp from https://github.com/xMasterX/all-the-plugins
370f3eb70b fix
a5d6329d7c upd nfc magic
2373f4bc98 datetime fixes
bc38e01d2e datetime fixes
6abf81f8b2 datetime fixes
dfe5c92fa4 datetime fixes
5d9fe43847 datetime fixes
6cc19118b7 datetime fixes
9d155d53a6 datetime fixes
82197e54c1 datetime fixes
ae8e6f4764 Fix build
8561f6b9aa Update to bit_lib
11f42a5686 application version fix
bfe3c92035 assets fix
5e32c899ea Simpler IR last settings import
a43579c0c6 VGM apps descriptions fix (#144)
5e7e04e805 VGM apps descriptions fix (#144)
7abc2e4bbb VGM apps descriptions fix (#144)
0ecfafc8f6 more fixes
96ac10cdc6 totp fixes
b00fb80506 add new ofw apps for new module
354a9cca8c add new ofw apps for new module
efa5ce6828 Merge wifi_marauder_companion from https://github.com/xMasterX/all-the-plugins
a7c2fb1468 Merge text2sam from https://github.com/xMasterX/all-the-plugins
de15348c47 Merge tanks from https://github.com/xMasterX/all-the-plugins
4c08719aa5 Merge picopass from https://github.com/xMasterX/all-the-plugins
4250811eb6 Merge nrf24mousejacker from https://github.com/xMasterX/all-the-plugins
d195b9f206 Merge mifare_fuzzer from https://github.com/xMasterX/all-the-plugins
320a393baa Merge i2ctools from https://github.com/xMasterX/all-the-plugins
c38d13cdaf Merge heap_defence from https://github.com/xMasterX/all-the-plugins
7c14fed916 Merge geiger from https://github.com/xMasterX/all-the-plugins
eca175d75f Merge flizzer_tracker from https://github.com/xMasterX/all-the-plugins
47d9bf482d Merge flizzer_tracker from https://github.com/LTVA1/flizzer_tracker
e62a09ae77 Merge flipbip from https://github.com/xMasterX/all-the-plugins
8d1d8704d0 Merge evil_portal from https://github.com/xMasterX/all-the-plugins
1c28e65d71 Merge esubghz_chat from https://github.com/xMasterX/all-the-plugins
1836cb8846 Merge chess from https://github.com/xMasterX/all-the-plugins
8564aef32a Air Arkanoid: catalog preparations (#142)
55726f0bfb Merge atomicdiceroller from https://github.com/xMasterX/all-the-plugins
7ed9afaeb2 Add video game module tool (#127)
27c5310235 Merge airmouse from https://github.com/xMasterX/all-the-plugins
4faf23dd7d Merge 2048 from https://github.com/xMasterX/all-the-plugins
add7b357e1 Add Air Arkanoid (#141)
501fd1e1a8 Update application.fam
e9c0f8e985 upd air mouse
7d8a26f959 Air Mouse with old BLE profile (#131)
64c9eff4f2 fix compilation
d688ab2658 upd evil portal
e9ae35c612 Level: get context
e3ec9f7f44 Fixes for gcc12
c108f40749 Fixes for gcc12
6f9f1c14c3 Fixes for gcc12
2c183e346d Fixes for gcc12
b778682361 Fixes for gcc12
5c6384e1c8 Fixes for gcc12
f891fa63ee Fixes for gcc12
4c20cad05a Fixes for gcc12
5acc8295fa Fixes for gcc12
b0c967994d Fixes for gcc12
62edce2d38 Fixes for gcc12
d56740dde4 Fixes for gcc12
f94da09829 Fixes for gcc12
83b274d726 Level: entity count
66bc57f3c4 fixes for mifare fuzzer
20255ba821 Workaround for furi_hal_gpio_add_int_callback conflict with expansion
e5f29ad68d Workaround for furi_hal_gpio_add_int_callback conflict with expansion
209129adea Workaround for furi_hal_gpio_add_int_callback conflict with expansion
3c162ab95d Workaround for furi_hal_gpio_add_int_callback conflict with expansion
523ed6bc97 MassStorage: Limit to .img and .iso files
e5e7f744a6 readme
8170272cbe license
647362dd31 Canvas: printf
79a25d86d3 Better sprite builder
3a00a275f9 MifareFuzzer: Fix protocol mismatches (maybe?)
f5efc5bec3 Fixes for toolchain 28 / gcc 12 pt2
25db1f08bb Fixes for toolchain 28 / gcc 12 pt1
e6729e297b Format
7586d7d91b Picopass: Fix compile
861fdbd5b7 EspFlasher: Marauder bins with Samsung Evil Portal by cococode
34a93e0974 Merge wifi_marauder_companion from https://github.com/0xchocolate/flipperzero-wifi-marauder
e830aee407 Merge unitemp from https://github.com/quen0n/unitemp-flipperzero
7280fedfc1 Merge totp from https://github.com/xMasterX/all-the-plugins
6b22c7d004 Merge totp from https://github.com/akopachov/flipper-zero_authenticator
058ed591b5 Merge subghz_bruteforcer from https://github.com/DarkFlippers/flipperzero-subbrute
0dc721a166 Merge seader from https://github.com/xMasterX/all-the-plugins
d1e3854bc6 Merge qrcode from https://github.com/bmatcuk/flipperzero-qrcode
e3ee15edb0 Merge picopass from https://github.com/xMasterX/all-the-plugins
e6aed3c972 Merge picopass from https://github.com/flipperdevices/flipperzero-good-faps
91c9118163 Merge gps_nmea from https://github.com/xMasterX/all-the-plugins
5f5d0d9550 Merge esp_flasher from https://github.com/0xchocolate/flipperzero-esp-flasher
d995298491 Merge airmouse from https://github.com/ginkage/FlippAirMouse/
798a08d6dd Geiger: Temp fix for gpio interrupt callbacks
8f81fa6bfe Entity: better event system
ffc6588ef8 EvilPortal: Fix sone memory management
aecfb6f1ea Game manager: superclass :(
7876baf1ce Vector class
7e2fc4e6da Game manager: sprite loading
4961b5aa77 Entity: ability to remove collider
ce3fd73e9c upd totp
d401b0bc2b upd picopass
0169a34522 bump ver
26906fdec2 Chess: Builtin scumm roman font
f5ac82b502 game: settings
6c5f37ed05 Merge pull request #71 from DarkFlippers/dependabot/github_actions/actions/checkout-4
1f473358f4 Merge branch 'master' into dependabot/github_actions/actions/checkout-4
62b5f57ea5 Merge pull request #70 from DarkFlippers/dependabot/github_actions/github/codeql-action-3
7fb860b380 Merge pull request #69 from DarkFlippers/dependabot/github_actions/heinrichreimer/github-changelog-generator-action-2.4
686198d1cc Merge pull request #72 from DarkFlippers/dependabot/github_actions/actions/stale-9
dceb6f001e build(deps): bump actions/stale from 8 to 9
2c2c2760e6 build(deps): bump actions/checkout from 3 to 4
65a49ad62d build(deps): bump github/codeql-action from 2 to 3
6cc9858036 build(deps): bump heinrichreimer/github-changelog-generator-action
4b58b02dfe Create dependabot.yml
b29a5871ca NfcMaker: Change tag type header text
6903235ad1 Possibly fix Flipper-XFW/Xtreme-Firmware#508
c01290b264 NfcMaker: Add comments for wifi gen
9cf9eaaa68 NfcMaker: Refactor, support different NTAG types
4d6fbb2e13 Level: speed up collision check
60dcf072cc engine: always give time for the system
f17f2d7176 game: fix context
4f34e318cd Replace director with manager
299da8d5f5 More declarative way to setup game
731560f8fd IMU
66dac52174 picopass: apply card to back view (#118)
5d78dbbd4f BleSpam: Fix click offset
4ee85ff91f Level: clear
6f3496d093 Entity: collider offset
a7cf03ed95 Update README.md
79178356a3 Merge pull request #16 from nminaylov/app_name_change
9e3d98a3b1 Changed app name
26c5e2c556 Sprite: new format
514c1e4fff Entity: events
f1be1c2806 fix: compatibility with obsolete firmwares
c8d62022ae Updated version
bc062bff65 feat: implemented standard navigation patterns (#223) (#224)
e076f4706e Update README.md
eee5d3ae1a collision system
4e19dbe308 Update changelog.md for app catalog
55054ccf75 Update version in application.fam
bd52f0cffb Copy serial fixes from xtreme-apps
10c20a738e Update changelog.md for app catalog
272eb25ed9 Support Unified serial PCAPs + Fix for OFW 0.98 (#47)
ce579fcc49 Level: relaible freeing
0fd5c92d3b update to firmware 0.98.2
2618f45ca4 Merge pull request #66 from haisenteck/master
73065913d3 Format
80bf99630e Merge flizzer_tracker from https://github.com/xMasterX/all-the-plugins
d970bd0c2a Merge flizzer_tracker from https://github.com/LTVA1/flizzer_tracker
3daa2720a1 Entities: debug leakage
feaaabd69b naming
eac54c905d Engine: simplified entity allocation
d855d02142 BleSpam: Add some disclaimers for patched things
0935a4a906 IrIntervalometer: Change display name
e0cf1c734b Format
ad7c954ca8 IrIntervalometer: Support external IR Blaster
3c5205b13f Fix merge
bdc15b2684 Add ir_intervalometer from https://github.com/Nitepone/flipper-intervalometer
1ac8f5dc69 Add second remote
e9e7b49393 Add ir_intervalometer from https://github.com/xMasterX/all-the-plugins
e835dec726 Fix merge
10ba39d17a Add usb_consumer_control from https://github.com/WithSecureLabs/usb-consumer-control
15979a9347 Add second remote
986af356d7 Add usb_consumer_control from https://github.com/xMasterX/all-the-plugins
30d0df5152 Oscilloscope: Tweak display name
914d8eacf9 Fix merge
0b5b9ddadf Add oscilloscope from https://github.com/anfractuosity/flipperscope
f647943c41 Add second remote
8f46a61ae2 Add oscilloscope from https://github.com/xMasterX/all-the-plugins
aee7b26c37 BtTrigger: Use system icons
18ef160397 Fix merge
f5f3295e07 Add bt_trigger from https://github.com/Nem0oo/flipper-zero-bluetooth-trigger
c6cc38cc86 Add second remote
8c90b88a9f Add bt_trigger from https://github.com/xMasterX/all-the-plugins
0f2977f7cb MfcEditor: Use system icons
8c0ca9f641 Fix merge
cbe637eeb2 Add mfc_editor from https://github.com/TollyH/flipper-apps
4382659af8 Add second remote
2ad78513d6 Add mfc_editor from https://github.com/xMasterX/all-the-plugins
cdb1d761ef GpioController: Tweak name
1a750ad077 Fix merge
137ef5d981 Add gpio_controller from https://github.com/Lokno/gpio_controller
9fefc9a39e Add second remote
a0ebe2dfe5 Add gpio_controller from https://github.com/xMasterX/all-the-plugins
0e0ee7444b T5577Multiwriter: Use system icons and tweak display name
3d2ff65595 Fix merge
9800e0c3af Add t5577_multiwriter from https://github.com/Leptopt1los/t5577_multiwriter
86297894fc Add second remote
c43c75edb5 Add t5577_multiwriter from https://github.com/xMasterX/all-the-plugins
1457614a6a Em4100Generator: Fix paths and change appid
e929c7097d Fix merge
70324366c3 Add em4100_generator from https://github.com/Milk-Cool/fz-em4100-generator
33e6799f30 Add second remote
c5f8574f34 Add em4100_generator from https://github.com/xMasterX/all-the-plugins
233a9f0a2b XRemote: Use FW infrared gpio settings
69a24fcdcc XRemote: Use system icons
20fb61622f Fix merge
dcc7ed039b Add xremote from https://github.com/kala13x/flipper-xremote
bb16410a33 Add second remote
f8294dda6b Add xremote from https://github.com/xMasterX/all-the-plugins
b3f33b1fcd Seader: Use system icon asset packs
f59b3eb39e Fix merge
b926006cf4 Add seader from https://github.com/bettse/seader
e0cba1fbfd Add second remote
dec417bed8 Add seader from https://github.com/xMasterX/all-the-plugins
70a5b56bba RollingFlaws: Tweak app name
4ab455f399 Fix merge remotes
acefcf07d3 Add rolling_flaws from https://github.com/jamisonderek/flipper-zero-tutorials
63c3bd3c8c Add second remote
1e76988825 Add rolling_flaws from https://github.com/xMasterX/all-the-plugins
88155ffd3c Remove brainfuck and ocarina
6fbc11f594 Remove SAM, Mandelbrot, Music Beeper, Zero Tracker
52767059f0 Update marauder 0.13.7 and companion 7.0
1051cf5a9d Add Came 12bit 330Mhz
334b94d1f7 Unitemp 1.4
f686b00ad9 Format
0665a9f516 v2.4
549a5d3978 update with fixes from @xMasterX
3da0790709 readmefixes
f8f1e9aea2 Engine: simple level-entity system
5f0b3e1f84 EspFlasher: Add Multi-Fucc Wardriver bin
c1789461ba EspFlasher: Tweak naming a bit
11db123e71 fix! no more bugs please
9101e77110 add mfc_editor app
387778c312 Fix remaining UART apps for expansion changes
4f02d8a789 Fix build
8920399d57 Format
74c43a7942 Merge dap_link from https://github.com/flipperdevices/flipperzero-good-faps
08201ff5f2 Merge wifi_scanner from https://github.com/xMasterX/all-the-plugins
f737ed5ce1 Merge wifi_marauder_companion from https://github.com/xMasterX/all-the-plugins
0f34884e80 Merge wifi_deauther from https://github.com/xMasterX/all-the-plugins
54d49307f0 Sprite: check that sprite is loaded
b4d42de456 Merge uhf_rfid from https://github.com/xMasterX/all-the-plugins
ff03bbd6fa Merge uhf_rfid from https://github.com/frux-c/uhf_rfid
1176130bb7 Merge uart_terminal from https://github.com/xMasterX/all-the-plugins
fc16169baa Merge subghz_bruteforcer from https://github.com/DarkFlippers/flipperzero-subbrute
79fba80a94 Merge sentry_safe from https://github.com/xMasterX/all-the-plugins
e9ccb337a5 Merge picopass from https://github.com/xMasterX/all-the-plugins
638f5af272 Merge picopass from https://github.com/flipperdevices/flipperzero-good-faps
25ab351e4e Merge nrf24batch from https://github.com/xMasterX/all-the-plugins
354e084884 Merge minesweeper from https://github.com/xMasterX/all-the-plugins
cdf5bd2d5d Merge mass_storage from https://github.com/xMasterX/all-the-plugins
48af1c3689 Merge magspoof from https://github.com/xMasterX/all-the-plugins
8a2ccf2940 Merge ifttt from https://github.com/xMasterX/all-the-plugins
18e7c8ff39 Merge hc_sr04 from https://github.com/xMasterX/all-the-plugins
20f57d29e5 DapLink fix for new UART API (#122)
128838dce2 Merge gps_nmea from https://github.com/xMasterX/all-the-plugins
8c60d26e85 Merge gpio_reader_b from https://github.com/xMasterX/all-the-plugins
e9d4a97a32 Merge evil_portal from https://github.com/xMasterX/all-the-plugins
85fc7254e4 Merge esp8266_deauth from https://github.com/xMasterX/all-the-plugins
1840bbd91e Merge doom from https://github.com/xMasterX/all-the-plugins
af1ed5ea59 Merge dap_link from https://github.com/xMasterX/all-the-plugins
e206f5c60a Merge camera_suite from https://github.com/xMasterX/all-the-plugins
7ce1e0a15c Merge camera_suite from https://github.com/CodyTolene/Flipper-Zero-Camera-Suite
42f1ffcdba upd airmouse
53e72b589b upd picopass
115da70121 Picopass: rename AA1 to card_data (#119)
70b8819e23 bump versions for catalog apps
22d14da6b6 bump versions for catalog apps
f739306e76 bump versions for catalog apps
8c6c6fd40e bump versions for catalog apps
36fb488813 bump versions for catalog apps
8981b09a3f fix uart related plugins to disable expansion protocol
78f0e4ad6d fix uart related plugins to disable expansion protocol
656fcc6cb5 fix uart related plugins to disable expansion protocol
4c8f2e37bc fix uart related plugins to disable expansion protocol
ee0419f061 fix uart related plugins to disable expansion protocol
64a8a7ef28 fix uart related plugins to disable expansion protocol
6482de895f fix uart related plugins to disable expansion protocol
2f7ef301f8 fix uart related plugins to disable expansion protocol
eae9e729e5 fix uart related plugins to disable expansion protocol
db2eff08ff fix uart related plugins to disable expansion protocol
317ece7386 fix uart related plugins to disable expansion protocol
ac8a90f27d fix uart related plugins to disable expansion protocol
2a405c0b28 fix uart related plugins to disable expansion protocol
7c839db284 fix uart related plugins to disable expansion protocol
ac32a95541 fix uart related plugins to disable expansion protocol
6de167fc03 fix uart related plugins to disable expansion protocol
0ee6802adf BMP loader
f80e6bd9b0 Engine: start and stop callbacks, ability to enforce backlight always on
201996b2af Engine: type safety
8cd9d6512a Engine: game callback
af5faccd3d Periodic timer: simple than never
433f269c48 Engine: fixed naming and added input processing
e92fc5c3ac Engine: minimal stage
0e54ab8915 Simple periodic timer
1e08975fd6 Update manifest screenshots.
6a3bdf26d0 Update screenshots.
a9251ed214 upd version
eb9a20c62d Update changelog
8c54cd8fc1 upd seader
61e6055c4e upd minesweeper
0ecd276047 Fix build.
e661061a2d upd picopass
53e849891d Remove staged wifi features from FAP. Future TODO.
0f4ddd097d MassStorage: Fix index on open
2d0b144154 Fix 4K access bit edit header
7421f25815 Add info for the app catalog
10b7658d63 Reword invalid access bits message
21b23813f5 Reword shadow load prompt
fa5bc636f9 Merge pull request #64 from IIAIronWolf/patch-1
7efd9d9be9 Show range of affected blocks with 4K access bit editing
c0b9d55106 picopass: remove backticks in changelog (#116)
a6ceb88cf2 Update README.md
aa49a4ba44 minor README update
0e03ab5d41 added pics from offical discord, thanks to @digits7025
f14deede51 updated README.md to mark progress
9072b58f08 Format
1df4e3ac68 Update changelog and bump version (#114)
606fad5ebc Picopass read improvements (#109)
ef7e1fd45b Remove start menu
e7be67e38d Implement saving
0ca43a0eeb EspFlasher: Better board selection menu
a8775f244b Warn before fixing BCC
6a1aa20919 Simplify byte list rendering
22eee1af5c Simplify access bits access
ac9a5114d4 Warn upon mismatch of UID and Block 0
16c2ae3f93 Add Duplicate Existing start menu item
1d8db4adbf Implement content editing
c7992fd317 Implement access bits viewer
786b259566 oops
fb0ffb0991 fix seader
b648c93c5a upd picopass
3a3d66444f upd seader
65ec1a8d12 Add circuit to picopass readme (#110)
7b4fc4df4e Picopass nr mac improvements (#108)
7929507b57 upload new multiki
9aca17b015 builds against RC
f18238d7ea Fix baudrate reset (thx nano!)
3f716421b2 uhfrfid merge
27c8d3fd05 merge fixes pt2
839ac81df3 merge fixes pt2
1a23e9c37a merge fixes pt2
6bd16403df merge fixes pt2
43792d8a7d merge fixes pt2
8a5189892e merge fixes pt2
28895031d9 merge fixes pt2
62ea759441 merge fixes pt2
c814a81923 merge fixes pt2
3c8d7b9674 merge fixes pt2
170903616d merge fixes pt2
32f5911b54 merge fixes pt2
ccf5231b0d merge fixes pt2
97b7b9a2fa merge fixes pt1
03470baf65 merge fixes pt1
a40568f539 merge fixes pt1
936cf00823 Add block data viewing
f5276580ad Add back button to data view
9b8a8c80a2 Implement user byte viewing
3cec085ed7 Merge branch 'dev' of https://github.com/Flipper-XFW/Xtreme-Apps into dev
a1d5cf69f1 Temp workaround for same uart callback
55abecde15 uArT rEfAcToRiNg!1!! (jk its better now)
56b91c7da0 Format
02c10bd4f4 Minesweeper: Use asset pack icon
1d780c52b7 Merge camera_suite from https://github.com/xMasterX/all-the-plugins
d1dddb5197 Merge unitemp from https://github.com/xMasterX/all-the-plugins
b8e86fe29f Merge uhf_rfid from https://github.com/xMasterX/all-the-plugins
8b68adb5e2 Merge uhf_rfid from https://github.com/frux-c/uhf_rfid
d54a12c1e7 Merge totp from https://github.com/xMasterX/all-the-plugins
28d1e07c2c Merge totp from https://github.com/akopachov/flipper-zero_authenticator
7aab7abb01 Merge picopass from https://github.com/xMasterX/all-the-plugins
82e02469b2 Merge picopass from https://github.com/flipperdevices/flipperzero-good-faps
22b56d2bf5 Merge nrf24mousejacker from https://github.com/xMasterX/all-the-plugins
33b1bc02a0 Merge nfc_magic from https://github.com/xMasterX/all-the-plugins
93a003d47f Merge minesweeper from https://github.com/xMasterX/all-the-plugins
b194de8b7b Merge mifare_fuzzer from https://github.com/xMasterX/all-the-plugins
3f30449e6b Merge lightmeter from https://github.com/xMasterX/all-the-plugins
caa522f4b1 Merge doom from https://github.com/xMasterX/all-the-plugins
bca7ec2d25 Merge camera_suite from https://github.com/xMasterX/all-the-plugins
4b9ae138cd Merge camera_suite from https://github.com/CodyTolene/Flipper-Zero-Camera-Suite
450a14e15d Merge brainfuck from https://github.com/xMasterX/all-the-plugins
2f5341f9d4 Remove unnecessary size specifiers from format strings
d391a52290 Add message for when stored BCC is not read
19dbaa0e9a Use more suitable furi string methods
7facd1904b Implement key viewing
cb31b4d037 Add BCC view/calculation
2a694822b9 Get MFC data that can be edited
bb274e73bc Builds against uart refactor
35c7034b32 Fix manufacturer byte logic
d15fa8fd79 Start on data view scene
6e5dcb91e5 Add create new option to start menu
474f37ce55 Use FuriString for dynamic labels
0abe1ff4d9 Implement block selection scene
12b84150df Start work of wifi I/O.
821425d1b8 readme added
40dacdbf5d v0.2: code cleanup
6142be5346 Begin work for WiFi camera server.
0a2f0bb2fd Fix scene flow
bd63867da4 Add sector selection menu
39f91d4340 Add invalid file popup
544d010a66 Implement file selection
891ff7d9a2 Implement submenu for start scene
c066d22c04 Initial alloc and free code
86c164b297 FX > Effects
270d59ed7c Fix memory leak. Ref https://github.com/leedave/flipper-zero-fap-boilerplate/commit/b19f15bcec18723d493575de873f1c5369d6fcc0
e96b801998 Stage new view/scene for wifi streaming. Various other updates and improvements.
7d8ebcc293 Add MFC editor template
90d70abdaa Acutally use the fake_csn when downgrading from non-picopass
a605f4ed4d upd uhfrfid
d5638b30a2 v2.3
6f1706ed44 correct CSN for picopass
b3093ae670 Fix build
a6e81a8f56 rename conflicting funcs
fee3840eba remove unused icon
61220e25e0 trying 83
a06ad73b28 picopass: Add support for non-secure cards (#106)
62d081cdcf numlock support in mousejackers
c25d08b529 upd minesweeper
eba1fff6e6 removed template file
5f38a6dcab Merge branch 'master' of https://github.com/frux-c/uhf_rfid
97ce3f1586 reworking module info and tag view scenes'
1571dc8602 Update changelog.
95b77235a7 Ensure view dispather removal for new view.
e54cf058c5 Seperate settings into two views: app and cam settings.
5b8457db52 Update the README with a new splash screen image preview.
c558ad9925 Bump to version 1.6
a61bd9baaa Add new pinout guide to camera not connected screen.
3e56de2df1 Linted changelog. Updated header with feedback.
da2cd5eb55 Improve start screen with new graphics.
0db54f588f Version bump to 1.5 for Flipper Application Catalog
37c6bdf61c replace minesweeper with redux version
0727b78a3b update totp
bc97e9e475 update picopass
cd4e09f685 add missing furi_string_free
a4b798a8c0 add missing furi_string_free
7350f1c4d9 add missing furi_string_free
a3174eb6ae add missing furi_string_free
0d7d8b7a5e fix includes to allow usage with ufbt
db719d5d04 Update changelog
b381707706 Fix up missing image in newer builds.
619ebef824 More readable char values
e91ccdac88 Fix some explanation comments
87e53b42f9 NfcMaker: Update to refactor NFC files
6add6e1d7f NFCMaker: Show error screen
7c6a85b8eb Update README and TODO
7fd38a6be6 Blink the LED while emulating cards
4ae8d7d87b Add card emulation logic
8c1ef3d058 Add .gitignore
2c84c221a5 Updated version
8c8a960202 Implemented export (#219) (#220)
cc9658ceb5 fix missing icon usage
2a6255513e fix missing icon usage
673305f617 Fix goofy includes
07bc252f37 Update to new icons
7231191878 Format
87e6ffcb5a Merge counter from https://github.com/Krulknul/dolphin-counter
10685f184d Merge wav_player from https://github.com/xMasterX/all-the-plugins
412fde62a2 Merge picopass from https://github.com/xMasterX/all-the-plugins
895c821e31 Merge picopass from https://github.com/flipperdevices/flipperzero-good-faps
ccc753c5e4 Merge nfc_magic from https://github.com/xMasterX/all-the-plugins
8358f67c59 Merge nfc_magic from https://github.com/flipperdevices/flipperzero-good-faps
18419a2904 Merge counter from https://github.com/xMasterX/all-the-plugins
cd2c25f537 Merge airmouse from https://github.com/ginkage/FlippAirMouse/
aa0a38eee7 upd seader
82af06275f upd picopass
80ebd5a038 add new app
74d04f3b89 t5577_multiwriter initial state: v0.1
693da4ed91 Initial commit
0dbfb0c939 upd counter
250db9eb46 NFC Magic: application.fam minor fixes
d7ec901316 NFC Magic: Incorrect total blocks usage fix from (#102)[https://github.com/flipperdevices/flipperzero-good-faps/pull/102]
6ee37bd121 NFC Magic: gui fixes, code cleanup
635fefb923 nfc_magic: Fix support of 4K fobs (#102)
6004b3a03b v2.2
e8fa4f9cae Picopass: Create seader directory if needed (#101)
d7175cff16 Picopass: handle NR-MAC auth for legacy cards (#95)
a000c7d053 Fix seos support after ev2 trick
907b363c25 Intercept Desfire EV2 request with file not found
1decb30df8 upd wavplayer
6257bb3080 Store approx SIO length
7bd7fe7ad1 Store diversifier len
d4b72caee7 Capture SIO of Desfire EV1
7c0ff50e82 Add link to app catalog entry
41b2bb848b Rename 'Load' to 'Saved' to match other apps
3cf57d2cba Update README.md
763058046b Update README.md
1866bcea2a Adapt to new Unified serial PCAPs system
17fba35567 This is not needed anymore
0c6d6a54af Merge pull request #8 from Mr-Proxy-source/dev
d9589699aa update readme
d69a4596af add dist
4a27c75d78 add gitignore
acdcb838b3 change fam file to fix build error
41476eae81 WavPlayer: Skip LIST metadata, better logging
17c2b5390d NFC Magic: GetCFG renamed to GetCfg
51d7ed9728 NFC Magic fixes: new back button event handlers, cleanup
71d601ad4b NFC Magic update to 1.5
af95a7c1fc Format
591bcba83c EvilPortal: Ignore Marauder PCAP data just in case
90c164c3c1 Merge wifi_marauder_companion from https://github.com/xMasterX/all-the-plugins
83d710bac0 Merge wifi_marauder_companion from https://github.com/0xchocolate/flipperzero-wifi-marauder
0d65829ac8 Merge subghz_bruteforcer from https://github.com/DarkFlippers/flipperzero-subbrute
f5c348ee85 Merge spi_mem_manager from https://github.com/xMasterX/all-the-plugins
2d72444ab7 Merge spi_mem_manager from https://github.com/flipperdevices/flipperzero-good-faps
9ebac91525 Merge qrcode from https://github.com/bmatcuk/flipperzero-qrcode
216b2b0205 Merge picopass from https://github.com/xMasterX/all-the-plugins
7f47af7a9c Merge picopass from https://github.com/flipperdevices/flipperzero-good-faps
c34412c9a4 Merge nfc_magic from https://github.com/xMasterX/all-the-plugins
125498a2eb Merge nfc_magic from https://github.com/flipperdevices/flipperzero-good-faps
7635112dac Merge mayhem_marauder from https://github.com/eried/flipperzero-mayhem
9962758b52 Add vibro feedback on add
f4e1a985b1 Add reset on long press back and handle keys different way
fc75d6082d Extend the range of the counter to 99999
5871333fc5 update to firmware 0.97.1
4a352f9849 Added new devices
544d673a74 ignored examples folder
e6bd999eb4 Added Vision Pro
53db53d94e upd picopass
6d2754219d Added XM25QH64C and XM25QH128A support for spi mem manger app. (#94)
5f65357abc upd spi mem
6ea20a00a2 fix missing lib and wrong appid
26bb92b6a7 Fix markdown headings in the picopass README (#93)
1d1083f02e Picopass: NR-MAC instructions (#92)
b8bcc6f21e Picopass config se problem (#90)
0319857aaa Add additional keys to elite dict (#89)
66a657f45f Picopass: update working with keys (#88)
e0773f7634 upd picopass
7d87d558d3 upd picopass
1adc3845dd upd picopass
48285b4f7b upd picopass
dc8a5f85ef sync nfc magic
5d391d199f upd motion mouse
ca25c7e43d upd seader
e879d4142d upd wifi marauder
e400f65378 Bump NFC Magic version (#91)
a799daed2f Motion Mouse app (#83)
d98d580225 New nfc_magic options for gen4 cards (#82)
bca643df1e Update marauder companion
42a47f2abb Merge pull request #63 from DarkFlippers/feat/ci
fabc835ce2 Update CHANGELOG.md
56e48bdcbc Merge pull request #50 from DarkFlippers/fix-49
48977fe00e Merge branch 'master' into fix-49
ab07a32d32 docs: update `CHANGELOG.md`
0219eba397 Update README.md
cbccad575f Update CHANGELOG.md
9155b3a366 ci: Update changelog.yml
970d608100 ci: update changelog.yml
c48c7cdf28 docs: Update CHANGELOG.md
1d7b210b45 Merge pull request #60 from DarkFlippers/master
b70b044d9a Merge pull request #59 from DarkFlippers/feat/ci
e5eb975dd8 Merge pull request #57 from DarkFlippers/ci/disable-codeql
6f427c2a99 Merge pull request #58 from derskythe/fix/max_value
f983055a3a fix: Improve formatting of subbrute_protocol_calc_max_value declaration
97dc2a88d4 Update codeql.yml and disable on push events
bae0dfcfdc Merge pull request #56 from derskythe/docs
df466310d2 docs: Add extensive documentation in code comments
4523b46ae8 Merge pull request #55 from DarkFlippers/master
725ab243a7 Merge pull request #54 from derskythe/master
337b1b969c Add workflow to automatically close stale issues and PRs
b574fa373d Merge pull request #53 from derskythe/master
7bb0680368 Add workflow to automatically close stale issues and PRs
a40c526972 Modify GitHub workflow to generate releases
5cdf98df61 Update release link in GitHub workflow
2269c09caa Update release body in Github Actions workflow
6f8d6b74ee Update dispatch input description and remove redundant code
8e6b42c014 Refine workflow dispatch input and clean up unnecessary code
872908c52a Update description text entry in GitHub workflow
53435d5a68 Update GitHub workflow for better log readability
da1a29ee1f Update format of firmware tag in GitHub workflow output
627c1c758b fix: Correct typo in filename of build workflow file
86a2646380 fix: Correct notice titles in build workflow
e410e8a7cb Disable release types in build workflow
9e9f4ad2f5 Update notices in build workflow to include firmware
863b4d1759 feat: Update git tag creation process in firmware build workflow
e804bde2d0 feat: Update git tag creation process in firmware build workflow
5e2d26546e Improve version handling in firmware build workflow
5064991533 Improve version handling in firmware build workflow
0802191c3f Update version handling in firmware build workflow
54a98f9f15 Fix: Update substring handling in firmware build workflow
db596a7a05 feat: Update firmware build workflow concurrency settings
615a7989fa Correct parsing of minor version in build workflow
0d9c6ffcfb feat: Refactor GitHub workflow in 'Subbrute'
2d54641c8a feat: Refactor 'Subbrute' build workflow to remove FW_URL
4de546486f fix: Add Github token to 'Subbrute' build workflow
5b5c867e98 fix: Update release tag check in 'Subbrute' application's build workflow
7def788b43 Fix: Update check for dynamic release tag in workflow
5d2297dafe fix: Update check for dynamic release tag in workflow
65646825f0 fix: Update API call to check for specific release tag
175fd3c355 Fix: Suppress Github API call output in build workflow
63efc78e35 feat: Remove unnecessary code in Github workflow
c84a6ba7ef fix: Replace Write-Error with Write-Output in Github workflow
8763f248c0 feat: Refactor error handling and release creation in workflow
b6d3225b95 fix: Update release version naming in GitHub API call
57fbaae76a Merge pull request #52 from derskythe/master
84c94c3c61 refactor: Refactor variable naming in build workflow
e0bd2983bd refactor: Refactor build workflow and simplify naming scheme
64ba4b83e5 Update build-with-firmwware.yml
a4f1be18ba Merge pull request #51 from DarkFlippers/master
f0b1731673 Update CHANGELOG.md
81fe067342 docs: update `CHANGELOG.md`
1e7795cd8f feat:Update Sub-GHz BruteForcer version and clean up subbrute_main_view
fbfade509b Picopass: More info view (raw bytes) (#86)
f4cba6e4ae Picopass: detect config card (#87)
1b41e8968b Update name_generator_make_auto invocation based on attack type
178da0beef Update changelog.md for app catalog
b3e9147a4c Update version
20dbbacdd1 Fix script user input hanging bug
4d7d22855a Add samsung and all spam (#43)
1198cd268d upd wifi marauder
7f4398ff05 upd picopass
744c8e6318 Picopass save partial (#85)
ddc6c34f96 Merge picopass from https://github.com/xMasterX/all-the-plugins
e6ff9219a5 Merge picopass from https://github.com/flipperdevices/flipperzero-good-faps
213e55b28c Merge esp_flasher from https://github.com/0xchocolate/flipperzero-esp-flasher
5aed400b14 BleSpam: Fix custom model not saving and freezing
98fed490a8 Use https instead of ssh for submodule (#14)
df84ffa38e range function and md5 library
b90571caa6 upd picopass
ebb6ce8f01 PicoPass: Fix name buffer size issues (#84)
66d44fe06d logging and error handling
9058c0c6a9 PicoPass: Hopefully fix name buffer size issues
1f0a221fa0 Card read success back -> sam present
b68d1ffca4 tweak ccid retry counts
890c43905e Update Github CI Dependency
b5192c7842 application.fam: Update metadata
c723de118f Merge unitemp from https://github.com/quen0n/unitemp-flipperzero
38331e7f2f Merge qrcode from https://github.com/bmatcuk/flipperzero-qrcode
5323be716c Merge nfc_magic from https://github.com/xMasterX/all-the-plugins
f454caff66 Merge gps_nmea from https://github.com/ezod/flipperzero-gps
aaa89dfa32 Prevent deleting when saving as different format
fd8f1afa7e Move saves into separate functions
ec39839ef8 Update CHANGELOG.md
4b0b91bd10 Update README.md
46e93e2515 Update app version
16947065c0 Update BME680.h
9c0bf6a87b upd nfc magic
550701aed4 update to firmware 0.96.1
3c674564d4 Totp: Exit on short back press
a0615641b8 Expand sio size, add more to virtual processing
cb38588d1b BleSpam: Memory management improvements
9c47f1d2a2 Make README graphics transparent for dark GitHub themes.
52c1c0f690 Update picopass app name
71dd2ed917 Update readme
2b8abcbfe6 Add app inclusion disclaimer (#3)
32e13721a0 Format
9b14f67904 Merge uart_terminal from https://github.com/xMasterX/all-the-plugins
56420c264c Merge picopass from https://github.com/xMasterX/all-the-plugins
6e4c0f3b84 Merge picopass from https://github.com/flipperdevices/flipperzero-good-faps
dfeb0142cc Merge nfc_magic from https://github.com/xMasterX/all-the-plugins
144c866090 Merge nfc_magic from https://github.com/flipperdevices/flipperzero-good-faps
007c33ed3c Merge mayhem_marauder from https://github.com/eried/flipperzero-mayhem
d52faa56c8 link to app catalog https://lab.flipper.net/apps/seader
59a1e67823 upd seader
33409fea4c upd nfc magic
ca2458030d upd picopass
bed7ff48ef Picopass save as seader (#81)
cca8f894d4 Remove early push to view during virtual
a2bd8f0b31 v2.1
689cd62fd6 Merge pull request #4 from bettse/virtual_card
b20353d4e1 Save picopass to picopass folder
b35531d7e0 typo
0e0af8300b more logging
d4c4fc89b4 Specify in error scene that only Gen1 magic and Gen4 UMCs are supported (#75)
1a0e729a36 [FL-3667] NFC Magic fix gen4 detection (#71)
9fa5fa4ed3 Picopass read card using nr-mac (#79)
3fb7ec7c46 Picopass: Update loclass notes (#80)
fc7ae6994a Added FlipC screens and banner
08b008e8f0 Update README.md
aaf90130ed Format
99cf56eceb Experimental PCAP on main USART support
a580c9372d format
40885c5c63 use loclass_opt_doTagMAC
14d94d1d02 Updating companion app, some extra missing changes
5dfd2cd8c2 Remove delay in virtual processing
31894f4584 Virtual processing with Seader credential file
b1c0f1e05d Only show pacs in log for successfully loaded cards
31c3ccd21b Reducate delay in virtual card loop
7dcf6450c3 Show 'unknown' for None type
ec3ded124f continue work on picopass state machine
27786723fe use define for array size
5e1c5a893a Consolidate some defines
d83fa2e41f add mbedtls lib
b5290e7b15 add loclass
be889102c1 picopass state machine
acb848d98e WIP: detection
faef7b56f4 UI for virtual card
2e4f5abead replace ccitt stuff with iso13239_crc_append
7c58be4e15 correct sam_start reset
ff980cf932 Print asn1 before processing
99f4c3f4e5 inline seader_process_apdu
eea9f7b250 upd picopass
006628ca2e uart terminal add missing uart deinit
024eadbb1e Merge pull request #31 from hryamzik/ptt
e03773fba4 Fixed build on latest official firmware
fd66bd51c6 upd seader
7e0c65947f More semantic event
b0fda2f9cb remove a debug log
cca18c5aa5 format
f5b9f6b268 Back on read goes to SamPresent
3ef7e9e721 upd seader
ae66f8bbcc rename asn printing callback
1104af4e0c correct variable scope
df88756d96 stack array for sending apdu
6dafaa0d93 invert logic for card detect type
048b408d05 card read success back button now goes back to main menu
4cee853d3a less agressive 14a error handling
9fb58d2853 set version to 2.0
08e63aa8c2 push to next UI on error
d15be5cbb2 working on error handling
acaec81600 add new app
c8103f5d64 move from broken to working apps
50a1e5f39c Break some functions out into a sam_api
a8f46f7af6 Upload icon
1959719a2c Initial publication of source code
96668802af 37bit rfid save fix
2c9b3d87f7 SeaderPollerContainer
39d577b045 log and comment cleanup
7b012c4293 cleanup
86ae5e3108 cleanup callback calls
95f528e2c7 Add GPLv3 License
b50a757940 switch queue message to simple struct
d373ea4d99 capture SIO
a625e9a164 Add fake epurse update
e389110175 remove hacky use of return value
5dd8d03945 move stage to seader_worker
b4d34d9c6b format
667130b113 fix credential clearing
ec7a503ffc reduce logs
de1c0a1c55 set sak/atqa when nfc
ca96807cb7 increase uart threads to highest priority
c7674c9d0e cleanup SeaderWorkerStateRead14a
bc211e7ead Remove credential from seader worker and only leave in base struct
308e7d2dc8 switch printing asn1 to only when message is processed
32bda09081 can re-read picopass
005792bf1a succesfully read picopass
80e6715580 Cleaup conversation code; add online vs offline to state machine
bbeb0a5765 format
fc6219b766 back and forth with picopass
ab5b922b7a fix xremote_get_version temporarily
34ebc9b67e format
4369b01ab7 Add stage to picopass
5ad9cef834 WIP
6c658ce55f Initial commit
280b099c9f Add picopass protocol files and strip out unused
4ea3b1661a builds
e73874ce98 refactor card details into a function
2f64dcbcdc FWT timeout
9d1ed51851 reduce logging
059fbb4540 FWT timeout
99c04ee2ed WIP: reduce thread priority and use a message queue
1c94ee9ea3 fix popup callback
2a837eca2f respond to seos
44051c3d34 WIP
a7ad022bcd WIP
eb853d6fb0 Update for TaskHandle_t change
1792f3229d fix connections missing on readme
ceabbce615 upd xremote
ffb9c150e8 Update README.md
3d138f7455 Update README.md
02d63f009a Updated readme
035b530c12 Removed backtick markdown element from flipper catalog readme
73220eb880 Implemented custom layout page and button editing menu (#4)
8ca5d42fac upd seader .fam
0d4641d415 bump version
8eacffc3b2 Update sources list
ff09af7f0a Update README.md
af06fab7f8 Update README.md
8c46e20644 update xremote
c26ea5ca18 Fixed furi_assert fail for view dispatcher custom callback set function
e56a0c23b0 Updated settings file schema
faf55240a5 Changed changed settings file location from assets path to APP_DATA_PATH
e006f80578 update xremote
5e725be916 Use submenu orientation function only in case of unleashed firmware
3826cb39ec Formartted project with clang formatter to match flipper catalog requirements
ee32e15811 Prepared to publish in flipper app catalog
3b587d93b9 Removed unused definition
a08a27baaf Finished learn mode and signal analyzer (#3)
b9523bdbf1 Add xremote ir app
e16ee18000 update seader
e6a83b1270 Fixed back button behavior in control page
e1add54a8d Update README.md
58382671e3 Updated icons, layout and button pressing stuff
b4de593fe3 Merge branch 'main' of github.com:kala13x/flipper-xremote
cfeb65f156 Refactored button press logic
db6a36a937 Update README.md
eef0709424 Updated readme
f841dfb1b9 Highlite button only if its pressed
95aeb2bb30 Remember last opened file or directory
a5bfd17635 Implemented horizontal view support for all pages
2921c9ed34 Optimized back button behavior
2df6dd0b32 Implemented exit button behavior setting
ec80b46c6f Changed settings context allocator definiton to static
7af67670d9 Merge pull request #2 from kala13x/settings
22055b7e26 Merge branch 'main' into settings
bcc37c45f3 Finished settings implementation
7e4303ad4f Update README.md
958af1d9a9 Merge pull request #1 from kala13x/settings
313794927d Allocate system wide settings and load from file
2cdc442545 Implemented settings load and store functionality
845666e18a Updated readme
27784cd3a7 Added button name scheme in readme
e1ab61fefc Updated screenshots and readme
f45f642693 Finished control page
3c951f1111 Update README.md
8dbafef776 Implemented saved remote general buttons view
c4b08cafa4 Update README.md
2ca26c7874 Update README.md
b529ce9281 Separated navigation and control pages
125bd3e6b2 Fixed spell mistake
3ac5d47f0c Initial commit
71dbac978a Initial commit
51646547f3 Correct save as rfid
1aa061dd40 update seader
6e3498f7aa Prepared for catalog release
339c673535 Remove delay that allows race condition
db77f98852 Create build.yml
c57076b4b0 Update README.md
f756524aff Uploaded screenshots
0615a6ad9e Removed useless code
601fa90530 Create README.md
16e543a196 Update pc_monitor.c
fd5de13dbe update version
b1c48c7605 Lint
a2f2b7dde6 Bars now in center
fdea5cb5cb Update naming include
9dec8c9374 Formatting + NoData state
de271b331e last message timestamp
7d78be8ef7 only log nfc response a second time if changed
07e27815df Metrics hide when data is unavailable
33999af473 Add link to nard case
3cfd397e5c Update rolling flaws, move to base pack, add more freqs
76bb3be2b2 v1.5 (L/R count, OK=flush+CLOSED, signal=vibrate)
4051071e58 update ublox, game15, uart terminal, intervalometer, seader
62b238b9f3 update ublox, game15, uart terminal, intervalometer, seader
59396f9ee8 New naming fixes part 1
cf68ab1e97 Catch Long Presses on D Pad
67879dda35 Add Support for Additional Cameras
38bc008fc6 Also increment fap_version
8e688bcefb bug fixes (see changelog)
09b08f5be4 update comment.
8cbcebef85 update .fam file.
794f7d5470 Fix huge delay on Transmit Signal.
35336904bf Merge pull request #2 from bettse/mfc
0433946a83 Add ver info to readme. Add note about Xtreme DEV.
76dca923ab Add version to FAP DESC as well.
5da31e66b6 Added versioning
2656582d72 Add .flipcorg meta data.
277b4be258 Add description and YouTube link
00bc7d31e1 Latest updated based on video
168f2ac1d7 MFC Support
93e0cba521 Add Keeloq diagram
8ebaaaeb91 Added "Test attack" diagram
8bfef6a2f2 Update contact info
f8825552fc Rolling-Flaws (KeeLoq rolling code teacher)
a7c091eb13 update flipper scope
610aaaa16d Bump version
ba06c88ac7 Processing captures
bf9ebe0eac Spelling
a451de06d7 Intial save support and docs
57c69dadc7 update apps
cfad4e075d links to stores selling SAM
62637e6efc Disable ADC and timer
2741e8ea26 Capture menu
77ee1e9357 Play and pause icons
64f2ddef44 Formatting
5d7fcecae1 Remove old binary
08e5a20906 link to 3d printed case
25e960cddd update apps and add new apps
273af96bbb update apps and add new apps
ae2cf23493 Improve ccid logging
c4100d192f handle no-change slot notification
430774216a Rename seader_worker_process_message to seader_worker_process_sam_message
a08456d490 default xfer block to sam slot
0d0084f8d8 Include to/from/replyTo in log line
ec1b4fa3a8 improve card notification handling
c9fcfffcf8 make powered into an array
03745d9c47 Add slot param to get slot status
425d93145a Support 2 sequences
19fc6d9795 Added sub-menu to set each pin for input or output, and set the value for outputs.
c2526525ac Added a fixed delta time to improve animation; Replaced gpio_item header with internal code for handling gpio pins. Added display for digital pin values.
0445435d11 Refactored code to use structs for each gui element; added a wiggle animation if a pin that cannot be set is pressed
d1a8b915fd update apps and add new apps
301d2a54f5 update apps and add new apps
08a924550a update apps and add new apps
1840c143d9 v1.1
fa73d23f75 initial commit of application; WIP - select pins and press ok to send a high value.
4ad525c3f0 Initial commit
06e20e5d6a buy me a coffee
a9c2665b14 remove update.sh
286f83d396 mention faq
49a6a14c6b Remove builds
b57a918ed3 Add link to RTT
d8b67d779f Update application.fam
d2901a9d74 removed image
11b98c5e46 	new file:   .clang-format 	modified:   key_generator.c
e028e950ea fix issue #1
2e6bfc11c7 bump versions and set bt trigger to use keys from ble remote
bbd321f86b fix plugins, remove dupe
96425ff24a new apps and updates
1e0481cae7 new apps and updates
8f1dde57c0 Expose iClass SR and MFC options
e1c593e8b6 Better description
346bba0c36 Description
b184cc95b1 Screenshots
c5d6f8d436 Update fam
c88a334a32 Add version to manifest
c1c7375d6e Format
9b52d4c93d Bruteforce solution for TIM2
0dd0f6fa58 Change category to GPIO
5ac47f06db Switch from HAL to LL
6aab1014fc Set CSN to diversifier if saving SR
18cae05fbd save as MFC
44e41370c6 format
828250a033 copy over picopass crc
63cbb60a45 feature to prevent epurse update
85427bdb28 Info log when updating E-Purse
f991626b5c Fix transmit log messages
fef74d034f cleanup by prefixing methods with project name
9992838fa3 fix desc
d4cdbeb2a6 more updates
d146e7c8c0 Proper fap_descriptions
b518cce4cf Update application.fam
754269107f cleanup by prefixing methods with project name
691407c687 Pull SIO from SR
349a47db26 Update apps
bb5620f658 Change sio detection to look for 0x30
14908b2745 add +sio to card read success screen
a16d86aa42 reset name when clearing credential
47dc819337 show +SIO on screen if saved
ffda9de789 Set credential type to none when reading from file
6982b4533b Add view showing gpio traffic
6351e2c00a Improve perforance related to sam insert/remove
11ce3a5e52 add new apps
74b2f77f39 format
bd2373c378 Add weburl
74aca1fa39 Try 3 times to show FW version on menu
2e3f481bcc format
b00ab1c854 rename sub.h to seader_bridge.h
91eaece340 track rx_cnt
7a16401108 Add SR format behind debug
2cf59a4261 Hide sam info behind debug being enabled
fa001c773c move apps
11edcb82b0 rfid rename
74d5ad908a reset power bool when checking manually
93bcd20125 prevent power on from being called more than once
6ce17745fa Bluetooth
193ba07d58 categories part 1
b4b832f20b categories part 1
7f1b3559df make link to flipc
80a3ba48c2 build data
5613d2d2e4 Stop 0 padding credential
a27291631f ufbt format
725ce52ea3 async request version, show on new scene
38dbd85eba reset hasSam on slot status call
401d9bb266 Screenshots
628905f8c6 cleanup unused
e796250786 ufbt format
a8b472282f Show version on UI
dbe6339695 Add type
a4fbfacbfa rename versiont to samversion
d5dca03817 seader_worker_send_version
3a00184049 add version asn1
4d8db0e563 more manifestos, xbox controller and videopoker ufbt fixes
416e29c53d more manifestos, xbox controller and videopoker ufbt fixes
4fd9a433d6 Add Screenshots
7587d7175c Store SIO/Diversifier
541ec26ed7 sniff iClass SIO and diversifier
677dcea5d0 Fail on unrealistically large PACS
89b1671dc3 ufbt Fixes part 1
e7100c7216 API 31 / unzip sources
323fedffe7 API 31 / unzip sources
858c36044f Binary format of data
e0b22911bd tracking
97878f7f22 Prototype
32a6261912 Add author and version to fam
c8ac6eeb81 Changelog header
6f51327903 non-empty changelog
7a086ac167 changelog.md
54443a351e Update binary
198704009a Fix for latest versions of firmware
37015a18c8 Update dev notes to ufbt
d19d1e0296 Initial commit
fe3897689e remove favicon zip
120afebff3 Create LICENSE
a739d4d1f4 update readme to github
24a1691e7a Add screenshots
89902c73cc Add banner
957fac8956 update reference to github
012b7cf052 ufbt format
c685c4a4d4 fix DOLPHIN_DEED
6307e0df90 add workflow
f0a11d3b71 API 30.1
2b07a7f604 Add Github Action for uFBT Build (#1)
32825da053 fix printing asn1
a5ebff76b9 api 28.2
32b9a99385 Add a nice readme
cef7ca83b7 Reach Functional MVP
bae9c09959 Add Rough Settings Menu
65e6d62c0d Add Real Sony IR Blaster Code
18d487d9bc cleanup archived binaries
3525cacf39 Initial Implementation PoC
270deb0ee0 catch wrong ATR
5d48e25cb4 remove 404
84143df847 add 26.3, archive pre 20.0
83d70158d2 changes to support ufbt
50cd60071e api 23.1 and 26
3324af2bec Merge branch 'fix_win32_build' into 'main'
e2cbe6cf9f Rename file extension .S to .sx to fix compile bug on Windows
495ce8094d API 23
88bcb2341f Bundle STM32 files
15727cca89 shorten protocolName display
437e19f098 read error for MFC
6f3a274ebf update readme with asn1c command
4a67feaeee regen asn1 c files
7786e34e04 Change for latest dev firmware
e797a06898 update readme from index.html
36499986e4 Add API 21
a08952a2e6 initial import
378e78df93 Readme
25b53b3ed0 Delete .gitkeep
37e2e1cc81 Add files via upload
2c58ae55d3 Create .gitkeep
8edd44e678 Delete Screenshot-20230223-203332.png
9599428a05 Add files via upload
eeef5d05f5 Update README.md
960c78ca01 Add files via upload
f6189a8464 Initial commit
f0051403a8 Readme
9c52cd9c19 Readme
95b7a0aff6 Readme
c64938abd1 Update binary
7f8318652e Create FUNDING.yml
ee9370c7dc Make arrays used in measurements static
c41296ac11 Readme
2693876f6f Fix voltage measurements
cc7927fdc4 Comments
d1a3d01133 Photos
69715da0f1 Readme
bc87a65b48 Readme
a590a76a2a Measuring of frequency of waveform
766ece90f6 Compact the repo structure
cfcc6d9bec Allow measuring of voltages
25047b6d1f Merge pull request #7 from Nem0oo/minor_changes
b29a4d834c the intervalometer takes a pic on start then launch the timer + comments
ead994161c Merge pull request #6 from Nem0oo/renaming
e2fac0fc1b removing ios references (tested on android)
fe93e0e119 Make time period more understandable
64e5badfd5 Demo
becfba1d74 Pause button
5690e952a3 Add image directory
b6c412cf28 Readme
a01c9c12b4 Small tidy
0516546bb5 Readme
350150ceba Merge pull request #5 from Nem0oo/delay_positive
9f0280ffaf moove keys to appdata and change tag
ad26554395 Inspiration
f139dd4516 Readme
16ffbd1c68 Add menu system
d00d417033 Merge pull request #4 from Nem0oo/delay_positive
856fa44d57 delay must always be more than 1
37d827552e Merge pull request #3 from Nem0oo/remote_and_lock_edit_while_shooting
1cd5a68f0e UI modification, allowing single shots and resetting shot count
35a9714002 input handling
cf77f7a046 Double buffer
fc07faafa8 Customise time period
73f00345e1 Draw lines between points
0e4570ca06 Start plotting
ea402ab12e Stop DMA on exit
e8f74431ea Relocate vector table
ab3da35731 Merge pull request #1 from Nem0oo/dev
c8ac007f86 Delete r
eeebff4515 Assets for th UI
dc46b18616 Creat assets dir
e1df08c125 UI creation
11c3e20306 Create project
63d33fbab1 Initial commit
8140e5eea7 Readme
57ed36f976 Use DMA
e3ff8565e4 Initial scope app
7ed57c7745 Initial commit

git-subtree-dir: applications/external
git-subtree-split: 9f74b3362f0f75ca37b11d3da35f6e9ec09fc43e
RogueMaster added a commit that referenced this pull request May 14, 2024
0283eaee669 Format
4dc9e472384 Merge pull request #8 from leedave/feature/cross_remote
3074e48081b Add cross_remote from https://github.com/leedave/flipper-zero-cross-remote
01eb2c1 Merge pull request #16 from leedave/feature/fix_0.100.3
642afe4 Fix for crash on exit in 0.100.3
4d4962f Merge pull request #14 from leedave/feature/subghz_encoded
7f17cb6 ufbt format
925d739 Update Readmes, added version to info screen
34a5851 Settings & Storage for SubGhz Timing
6cf5fb9 Encoded Subghz works with standard 500ms setup
8520f4c Merge pull request #12 from leedave/feature/catalog_sdk_upd
8fc794f ufbt format
3087d4b Fixed initial crash after creation of chain with Subghz element
2b2adc2 Merge pull request #11 from leedave/feature/catalog_sdk_upd
99ae845 Changed subghz_protocol_registry source
09de2e5 Changed subghz_protocol_registry source
3a3a767 Changed subghz_protocol_registry source
5c100bf Changed subghz_protocol_registry source
bb92af0 sdk headers test 3
c2b122a sdk headers test 2
c24026f Update to help build detect icons that were already there instead of using from Firmware
d92d744 sdk headers test 1
275accc ufbt format
47aea2c Merge pull request #9 from leedave/feature/ir_ind_timer
d5256ed Added IR Timing feature
2383b0f Added int keyboard
dd546b5 UI Menu to set IR Time
ff25784 Merge pull request #8 from leedave/feature/subghz_like_meal_pager
32041e2 Linting
b64e36d Fixed bug where crash occurs after deleting an item
14db43d Stabilized save and run, still a crash left after deleting items
28bbaaa Removed not needed settings Sound/Haptic
06608e8 Does what everything it should, but still crashes a lot
644227f Callback after subghz. Waiting still not correct
97c98a8 First time IR and SG work together, but still very unstable
098497c Included library for Subghz signal
f8b524d Aligned format for IR and pause timing
cdeb124 Fixes for new timer in IR commands
a523e11 New save format
36c07d0 RAM fix for SG remote
76ecb27 Cleared out old SubGhz module
cb639c1 refactor cross remote item methods
bc56826 refactor xremote_cross_remote methods, fixed RAM leak
56d7a9d Storage of subghz filename
abcfdf3 Restored SG animation
8bdfcaa reactivating subghz menu (no actions yet)
bb5e131 Merge pull request #6 from leedave/feature/ir_timing
d760cb5 Fix for mem leak
b7c9e37 Merge pull request #4 from leedave/feature/ir_timing
3a1bba7 bumped version
f896686 Merge pull request #2 from leedave/feature/ir_timing
12cd62d Added IR Timing Feature
ae626bd Version Bump
5eb59ec Updated changelog
6fbd30c removed builds
c6f71ae CLANG Formatting
83d453a Moved to new repo, updated for compatibility to 0.95.0-RC

git-subtree-dir: applications/external
git-subtree-split: 0283eaee669ce171ffad820b5ea1bbab4d87abb9
RogueMaster added a commit that referenced this pull request May 19, 2024
08e6a50866 Format
7b24042e85 Merge slots from https://github.com/xMasterX/all-the-plugins
d8cb256caa Merge pokemon_trading from https://github.com/EstebanFuentealba/Flipper-Zero-Game-Boy-Pokemon-Trading
4b91e13622 Merge nrf24mousejacker from https://github.com/xMasterX/all-the-plugins
17dea5554c Merge nfc_magic from https://github.com/xMasterX/all-the-plugins
4a454cb4c4 Merge mifare_nested from https://github.com/xMasterX/all-the-plugins
56b24f9dd0 Merge magspoof from https://github.com/xMasterX/all-the-plugins
b09549dc5d Merge flashlight from https://github.com/xMasterX/flipper-flashlight
b33e3560e1 Merge flashlight from https://github.com/xMasterX/all-the-plugins
72eab00ca6 Merge cntdown_timer from https://github.com/xMasterX/all-the-plugins
41db75d2f6 Fix merge
a693d1ff49 Add meal_pager from https://github.com/leedave/flipper-zero-meal-pager
9658164b62 Second remote
2009bd0984 Add meal_pager from https://github.com/xMasterX/all-the-plugins
1fe90b927b Name and category
cd42027fa8 Add gpio_badge from https://github.com/jamisonderek/flipper-zero-tutorials
570e72f162 Fix merge
1fd5c5f07f Add ethernet from https://github.com/arag0re/fz-eth-troubleshooter
3ff6c509a0 Second remote
3b1516865a Add ethernet from https://github.com/karasevia/finik_eth
88bdddb870 NFC Playlist: Fix incorrect free
ebd64efef0 Format
3692a195a8 Fix merge
e7d36eec06 Add nfc_playlist from https://github.com/acegoal07/FlipperZero_NFC_Playlist
fc8831a879 Second remote
b8a913d598 Add nfc_playlist from https://github.com/xMasterX/all-the-plugins
32645c883c Fix merge
259f455807 Add quac from https://github.com/xMasterX/all-the-plugins
0758879dc5 Second remote
eafa11373c Fix merge
25e8645ba7 Add pokemon_trading from https://github.com/xMasterX/all-the-plugins
e702df53f9 Second remote
205dd0380a upd version and readme
4e93f13 upd readme
f8734c2 sync with alltheapps
6f51e81eed add flashlight connections picture
30bd363ae6 add quac app
a7ec92bb76 upd nfc magic
d733ca3bd0 merge memory management fixes for nested
e484c13a0a upd pokemon trade
ae9996cfaa upd slots
bc4c80a1c5 upd magspoof
287664c89a upd mousejacker
e676b1ecd3 upd coundown timer
530fc9f Merge pull request #22 from acegoal07/dev
bdec676 Adds new skip error setting
b9fd9dc Merge pull request #36 from Willy-JL/fix-double-free-crash
4066eb5 Fix double free crash at app exit on TLSF
8d0e6d3 New rename
4eecf4c Revert "Update nfc_playlist_scene_file_rename.c"
1e5c189821 backported ported and added kostily and velosipedy
041e17f fix metronome crash
3f7302e move back to working apps
9bcd76d upd vb migrate app
2b20fc9 upd mfkey
80af529 upd colorguess
5597c36 upd picopass
6923d54 add links to binary sources
a3e4906 update espflasher
91b7fb2 upd hex viewer
a15380b upd magspoof
85e9525 fix unitemp icon
4db8b6b upd subbrute
3c7fdd3 upd readme
91093d3 upd blespam
9257a40 fix pocsag version and about
576174a upd magspoof
66ef95b update unitemp
d63e2da update findmy
352969b upd readme
3d35b48 Revert "testing unpacked assets"
a26e26c add error handle in switch
e025802 upd findmyflipper
5ab0b9e remove app
dcd0f61 upd readme
568a4c9 testing unpacked assets
0556b0a upd gps nmea
91a93bd fix picopass plugin path
c294d2b update magspoof
4425c28 update totp
838813b oops
fd25990 upd seader
ad8745d upd picopass
79759af Update nfc_playlist_scene_file_rename.c
801ed11 Update nfc_playlist_scene_playlist_select.c
ccfe2de upd readme
8ccf444 upd version nfc magic
e112358 fix uart terminal
42df96c upd picopass
570cb8b upd flizzertracker
4341a56 upd findmyflipper
7f50b71 sync nfc magic gen4
9c98d45 upd blespam
a80208f upd badkb
67d8655 Moved stored variable
42381d1 Merge pull request #21 from acegoal07/dev
6a6bf77 Update README.md
e8c40d8 Merge pull request #20 from acegoal07/dev
9bdc60a Update README.md
d9cb04b Update nfc_playlist_scene_name_new_file.c
2481c5e Merge pull request #19 from acegoal07/Momentum_Support
c1a5bee Update nfc_playlist_scene_emulation.c
cda4499 Just some small tweaks
c1eecf4 Update README.md
50bcedf Improvments
88a32ff bump version
e5c07d3 fix typo, fix difference with ofw
f0a0914 Overhaul
b586b00 Merge pull request #18 from acegoal07/new_scene_manager
cd66660 Further cut backs
8ad052b new scene manager
328cefa fixes spelling mistake
b95887d update readme
86b0e95 remove duplicated app (local player only)
76ce61972f fix missing frees
17a48b4 fix missing frees
86dd162 Create playlist
16d6509 Update README.md
340a3d5 Add items to playlists
42e436c small UI fix
ada95eb Adds view playlist content
0e31325 update readme
7802de5 upd ble spam
7b685bf nfc magic sync with gen4
bf06a6f upd picopass
ec33779 Cut down
1f56464 playlist select tweaks
fa1d26f Update settings.c
32e27c9 Update settings.c
e5d93c8 Update emulation.c
7c6ad46 Merge pull request #17 from acegoal07/main
294fc6a Merge pull request #16 from acegoal07/dev
11c121a Merge branch 'main' into dev
93cb03f Quality of life
5dcdf94 Merge pull request #27 from leedave/feature/fix_0.100.3
7813bcf Fix for crash on exit in 0.100.3
a7df03f fix icon
288ecd1 bump versions
c8e11f2 upd readme
5eaa423 upd wch_swio_flasher
3348951 return missing part
f746977 no gen4 ? :(
19b0f83 upd weather station
9b98911 upd findmyflipper
2b9d505 upd badkb
fb49d09 upd flizzertracker
ddef3d2 upd blespam
999dc95 ir apps add support for new settings
9313050 upd mfkey
7fd5152 formatting
2f513b0 Major Improvements
a6f6996 Update main_menu.c
c237b91 Update README.md
646e30a Update application.fam
276fabe Merge pull request #15 from acegoal07/main
12aa3dd Merge pull request #14 from acegoal07/dev
fdcdd56 Adds back debugging + Adds folder exist check
4b245e1 Merge pull request #13 from acegoal07/main
f45826d Merge pull request #12 from acegoal07/dev
990adc1 Merge pull request #26 from leedave/feature/ufbt_update
6b5b5ad Update for compilation on ufbt or cfw
86596b3 fixes for latest api
30309ab upd readme
fa85291 Fix for firmware API improvements
de11574 Merge pull request #92 from noproto/dev
d58b555 Update MFKey to version 2.1
8f812c3 oops
6e9c797 "fix" adding spi sensors unitemp
47d5101 update nfc magic
317d576 fix unitemp UI being not updated if app started from favourites
626123b fix UI
df3cbe9 fix newline
5dd3520 upd readme
7f07604 nfc magic fixes merge
90edac5 update ci
aff265d Merge pull request #89 from noproto/dev
11f0c1f upd readme
2a30138 revert gen2(not ready for release yet)
6f19c6d Fix UART deinit issues in multiple apps
7172669 Fix view alloc/free
7b4b27b Replace Mfkey32 with MFKey
8245889 upd readme
c8a5d83 nfc magic updates
9b3ef0d remove duplicate
844cdc4 use previous path
a5e9150 use status led properly via notifications
ef52585 update dcf77 sync
26fcf9d upd readme
d453cfe upd airmouse
61bbee6 update xremote
83d7bdd update seader
9461329 upd uhf rfid
f242900 upd wifi marauder app
26ad6d8 upd findmy flipper
05f4814 upd readme
0885def upd wifi marauder companion
c810e25 upd esp flasher bins
ca26d68 sync badkb
f37d0d5 upd blespam
3c15091 upd atomic dice
2c5ff59 upd geiger counter app
cc5ecab upd camera suite
f5c4d9d fix duplicate
30378bc sync airmouse
ead0694 upd barcode gen
ab2ba32 upd totp
c9ea186 upd findmy readme
5a354dd Update Version number in app
b9b9e89 Merge pull request #25 from leedave/feature/fixes_0.99.1
b27b217 Fix for compile errors under 0.99.1
2dc4331 Fix for compile errors under 0.99.1
a8dc713 bump versions
bd432cd fix typo
9f9f020 what?!?
4f43fde revert part
f147cc7 some fixes
81d75dd upd readme
d27c8fc update findmy
f357174 upd bt kodi remote
1380811 add findmyflipper
1e6a122 add 2nd dcf77 clock sync app
d56472e add air labyrinth game
455f94b upd nfcmaker
ebda850 upd blespam
8bafb1c upd espflash ver
bc063f2 upd air arkanoid
efc1c53 upd avr isp
e8505a8 upd picopass
da7101b upd airmous ver
a7c86b6 upd seader
ce1e291c50 Update fapping.yaml
a72282af52 Update fapping.yaml
78187d09b1 Update fapping.yaml
0ca32231ed Update fapping.yaml
689a139819 Update fapping.yaml
121497fded Update fapping.yaml
1213e51128 Update fapping.yaml
c2f6ca50d7 Update eth_save_process.c
ae56737692 Update fapping.yaml
00b2435dd1 Update fapping.yaml
ae5bb12421 Update fapping.yaml
dc77a10407 Update fapping.yaml
0ed8d3312d Update fapping.yaml
55264f4d2d Update fapping.yaml
157f334332 Update fapping.yaml
b1efae18ac Merge branch 'master' of https://github.com/arag0re/fz-eth-helper
b02c0fa976 cleanup
045fc88a54 Update fapping.yaml
6aa6d94587 Create fapping.yaml
a3f0fd50af removed big u8g2 lib and only added the needed stuff into eth_view_process.h
0c1e9a5f1c updated file location of screenshots to not hinder builds
9b57fe9 Removes error screen and fixes rename
bad0821 upd readme
1dd4978102 add nfc playlist
b066300 add nfc playlist
94e5cbb upd blespam
ee439dd add pc monitor app
5464006 upd totp
8b99bc6 upd seader
957b673 update
bf9314c Worker update
aaa7858 Adds error light
5971c2a Update file_exists_error.h
bf749c6 Update file_exists_error.c
38e733a Rename error screen
623192432c Merge branch 'karasevia:main' into master
de95b93 add screenshots
c7b67bd compile error fix
c626381 Merge pull request #11 from acegoal07/dev
45118d4 Version Bump + Formatting
bb251e1 Update emulation.c
caaa6e1 Crash fix
62238cc Update emulation.c
e666ec3 revert of the revert
4bc5176 upd readme
892dc02 to base pack
c6459fe upd readme
ed1f34c fix cicd
fe71187 update vgm tool
09f1688 Revert "upd nfc magic"
287ac5c update wifi marauder app
49f4228 Make is so the nfc data can be cleared
bfbf7d5 Update README.md
0f10921 fix for new c version
45798c6 fix badge
b3af2b2 upd readme
367bec3 fix for new c/cpp versions
256b734 upd vgm manifest move to gpio
e38c736 upd blespam
aca6de0 upd picopass
94ec628 upd totp
3d5cbb3 replace badbt with badkb
5ebd692 Merge pull request #10 from acegoal07/main
5040683 Merge pull request #9 from acegoal07/dev
fe37f03 Merge branch 'main' into dev
b578ea0 Formatting
f036552 Revert "Hide error setting"
de776b3 Update emulation.c
c142e67 move for now
a534b79 upd airmouse
0c46ae9 upd airmouseofw
79de917 triggerble updates
fb12c36 upd blespam
8a687a8 totp updates
a7f3699 fix
8f34ad7 upd readme
574c479 upd nfc magic
d8becee datetime fixes
8e34246 more fixes
74944b1 totp fixes
3d80280 upd readme
834c914 upd submodules
2fca679 add new ofw apps for new module
d87bc7d upd readme
a55a6b6 upd air mouse
b5b85fb upd esp flasher
84d2025 upd evil portal
9fb7fcecd7 Fixes for gcc12
7d8eb6d Fixes for gcc12
708e25a fixes for mifare fuzzer
f6b603e8b1 Workaround for furi_hal_gpio_add_int_callback conflict with expansion
99f6bc2 Workaround for furi_hal_gpio_add_int_callback conflict with expansion
f43f8c3 upd totp
ea84dfd upd readme
8104610 add new game
d6398e6 upd blespam
9dc271e update nfc maker
a937495 upd picopass
6e49d82 bump ver
2bc295a150 upd meal pager
90e6ce0 upd meal pager
5999573 Hide error setting
42ce380 Moving settings
df60e6e Format
3f42ba6 Formatting
e2af6cc Merge pull request #8 from acegoal07/dev
d852cc8 version + readme
5765690 No playlist
4e1dc64 Update text_input.c
be7ffc0 Merge pull request #24 from leedave/feature/cfw_cleanup
460d7c8 Version 1.3
8c94d96 Rename improvements
4d6aeeb Update emulation.c
0107074 Rename playlist 1
9154d45 Rename playlist
c18aa25b97 temp fix for meal pager
af7d2cf temp fix for meal pager
75629d3 Edit playlist
fe62eab readmefixes
f76165d fix! no more bugs please
8706168 update readme
f44ede8 add mfc_editor app
37833bb upd readme
c5a37d8 bump
d298d17 upd airmouse
49f0ffd upd picopass
e71aa91 bump versions for catalog apps
0875b3c fix uart related plugins to disable expansion protocol
679b99e07e upd mealpager
7c8d72c upd mealpager
9c1f2d8 upd readme
4940105 upd esp flasher
fea8ac6 upd version
e8ac70f upd seader
d50f8b7 upd minesweeper
a3015b0 upd picopass
9844072 change ci node
9b81ac6 Merge pull request #23 from leedave/feature/cfw_cleanup
a42e22d Cleanups for better support in CFW
392f66c493 added README.md
4d6e727dc6 renamed stuff to eth_troubleshooter
dbdbb1e fixed some typos and fixed a ui bug where it flipped the hex-chars of the mac
ee08c7c make stuff work
57a0d14 fix duplicated apps, wrong folder in ci
4c1bdae oops
89c9dde more fixes
141de86 upd readme
7f288e4 fix seader
e30bbdb upd weatherstation
648dce0 upd picopass
cb94234 upd seader
b31a49a fix hidfiletransfer
940c260 upd readme
8f510d6 update led tester
f0fabb6 upload new multiki
3660138 FIXES FIXED - Fixed by RogueMMX WILL BE IN LATEST RELEASE 2024
b00abe1 uhfrfid merge
5b4cd59 merge fixes pt2
ed94779 readme upd
aacb85a rename espflasher
509478f espflasher version by Willy-JL
822dfe6 merge fixes pt1
9699914 Update emulation.c
28c4893 Update issue templates
25919b0 upd readme
e9f02f2 upd uhfrfid
4c4ee80 sync readme
5005521 rename conflicting funcs
51f62b2 remove unused icon
e3ec858 upd readme
d8b5be8 trying 83
c5a4ffe Update nfc_playlist.h
36b2187 numlock support in mousejackers
978271b upd minesweeper
0af2b82 Update nfc_playlist.c
a6bb802 Delete catalog directory
2144e72 Update nfc_playlist.h
590288e upd readme
aae0279 Merge pull request #38 from Kondenko/mifare_fuzzer_card_emulation
2e518f0 upd readme
d69e2cb add new apps
0144591 replace minesweeper with redux version
16e2482 upd hangmangame
b0c71a1cb9 add free's in case of return
96cb4c0 add free's in case of return
4511ead7fd upd meal pager
3ccfd66 upd meal pager
8148d34 upd nupogodi
5d6fe16 update totp
5d86ba6 update picopass
c61f86f add missing furi_string_free
a6ddbef Update nfc_playlist.c
df5a44e Check fix
9721102 upd nfcmaker
84a8a0c Catalog
9ed8bef Update emulation.c
cde30bb fix includes to allow usage with ufbt
45c8a02 Create chanelog.md
866c7c0 Assets update
c17baa9 Update file_select.c
055fb31 Update README.md
c1dd710 Update README and TODO
a540e69 Blink the LED while emulating cards
fb02471 Add card emulation logic
54f8154 Add .gitignore
fe4c1d7 Update README.md
1035a10 Optimisation
663a985 Merge pull request #22 from leedave/feature/stationSet
284498d Added limitations to first/last pager/station
42049b3 Merge pull request #21 from leedave/feature/stationSet
9d8cc15 Fix Memory Leak
a627f9a Added new UI to define stations/pagers range
99c9556 Optimisation
0b96ee3 upd readme
e1c72bb Struggling with null pointers in int_input form
d8fc459 fix missing icon usage
11a23ce continue work on number input
b861e0e Merge pull request #7 from acegoal07/file-select
8e94168 version bump
17b1eb6 Tweaks
5736a4d upd readme
cbeb65c upd weatherstation
6cc3a52854 upd mealpager
dda9b40 upd mealpager
dab2bfa Initial add of file selector
6f038da Started on UI for Station Id
d866416 Merge pull request #20 from leedave/feature/td174
e2e3c2e Added support for TD174
b6dcd49 Solved issue with different Frequency on TD174
01e8273 Merge pull request #19 from leedave/feature/td165
810bec7 Added support for TD165
31dbb69 upd ci
9875821 upd readme
78b2d3a upd seader
35d7166 move to firmware repo
52784f7 upd readme
c32ae53 add lic
7a3e7b8 add new app, apply fixes
9382de4cc0 add new apps
2ffce83 add new apps
9bb8658 upd progcalc
91e6e2e upd picopass
0ed0713 add new app
0e9c7a5 Update FUNDING.yml
85a94f8 Merge pull request #18 from leedave/feature/repeats
ca16f0c Version update
771a649 Added signal repeat feature
cc0c618 Merge pull request #17 from leedave/feature/linting
f179b0d Finished linting and reducing manifest and includes
a0794b1 formatting/linting
908eb0b Merge pull request #16 from leedave/feature/td157
48684e7 Support for TD157
65b7247 Moved common functions
b058080 Create FUNDING.yml
ae0b74b Update README.md
c4abdfa Merge pull request #6 from acegoal07/Settings
82ed1da Update emulation.c
22fb491 Update settings.c
50bf4fc Merge pull request #15 from leedave/feature/subghz_updates
d42c5ce Shifted assets out of root
524fc2e Merge pull request #14 from leedave/feature/subghz_updates
36d024a Display when data is being generated and when it is being sent
782ee25 Merge pull request #13 from leedave/feature/subghz_updates
c687b9d Fix for wrong blinking settings
441d7b2 Merge pull request #12 from leedave/feature/subghz_updates
6be3d60 Updates for interrupted transmission
11bbcfb Merge pull request #11 from leedave/feature/subghz_updates
215b772 updated readme
c03560b Merge pull request #10 from leedave/feature/subghz_updates
ba29d9a Set defailt last station to lower number to prevent memory crash
1aaffe0 Merge pull request #9 from leedave/feature/subghz_updates
effec4e Cleanup root
e6689e7 Merge pull request #8 from leedave/feature/subghz_updates
31f62b8 Can finally send, correctly control LEDs and return to menu when done
3ea8078 Merge pull request #7 from leedave/feature/subghz_updates
238a5b3 Stop Programm if cannot open tmp file
7ce4cfe upd readme
d848829 add new apps
e575513 upd counter
8f2b917 fix icons
41620b9 upd readme
47a502b Merge pull request #36 from Leptopt1los/dev
1316afb NFC Magic: application.fam minor fixes
77d8de9 NFC Magic: Incorrect total blocks usage fix from (#102)[flipperdevices/flipperzero-good-faps#102]
cc246d5 NFC Magic: gui fixes, code cleanup
5803cfe upd wavplayer
5fefacb upd ublox
50bab0a upd progcalc
86023e9 Settings view
25a1afe NFC Magic: GetCFG renamed to GetCfg
ac41bc5 NFC Magic fixes: new back button event handlers, cleanup
0b7aebd NFC Magic update to 1.5
e4c6137 upd readme
9f90187 Adds Icon
1d550e4 Update README.md
940f7de Merge pull request #5 from acegoal07/Early-Stop-2
ee965b6 Final push
86dde6c Formatting
d2620fa State
d8a7c3e Update emulation.c
e1543db Tweaks
9a9d87e add new app
8350da6 Merge pull request #34 from Mr-Proxy-source/patch-1
e2f9998 Merge branch 'Early-Stop' into Early-Stop-2
506cca0 Added new devices
44df993 upd readme
b4d94b1 upd picopass
ea43c22 Led indicator
3d39d1c upd readme
e92de59 upd readme
30b09d8 upd spi mem
d4815da240 fix missing lib and wrong appid
374a2b7 fix missing lib and wrong appid
7dca89a Settings changes
a9ae66c Stop early
db1b36e upd readme
f720fbb727 upd pokemon trading
7c6052b upd pokemon trading
e4dc07f upd picopass
378630d upd picopass
0e320c6 upd picopass
bbf4ed1 upd picopass
7c40674 sync nfc magic
f444e8c upd motion mouse
ea69e74 add new app
f8c5826 add videoplayer lic
d541476 upd video player
35865a9 upd hangman game
ab51889 upd seader
2da78ea upd wifi marauder
6fb4f14 upd subbrute
85b58f3 Update emulation.h
df9aa70 Update nfc_playlist_worker.c
8b2e4cf Update README.md
f3fcc1d Refactoring
ee805ea Split scenes
db2900a Update README.md
b2d6812 Update nfc_playlist_worker.c
e95aafa Update nfc_playlist.c
881391a Menu tweaks
816c0d9 Update README.md
2dc8f38 Merge pull request #2 from acegoal07/New-UI
9330ae6 New UI Update
3f596c1 Merge pull request #33 from hryamzik/hid_app_ptt
19e4eb1 upd readme
5c6bec8 upd wifi marauder
2ead2ef fix readme
b2498d2 add new app
40f2c0e upd picopass
6512b39 upd blespam
5f807c4 Emulating improvements
103bf81 PTT: fixed 'raise hand' for zoom on mac
b837101 Update README.md
f69b9ea Merge pull request #1 from acegoal07/Timeout-Improvements
3412037 Merge branch 'main' into Timeout-Improvements
d09861f Update README.md
0d7fc57 Update nfc_playlist.c
4e8be3d Update README.md
7bb227c Update README.md
12a6e35 Update README.md
5ddd829 Update README.md
ea5693d Adds new timeout
4728659 Fix timeout
17c86f7 Fixes UI
b925047 return 5px movements to mouse jiggler
590c023 upd readme
721936e upd picopass
4cfd1cd Adds UI
127faac Update application.fam
57a7086 Update README.md
a27df3d Worker Added!
3ecb84a Update README.md
6a34f2b Name changes
eea3cb3 Merge branch 'main' of https://github.com/acegoal07/FlipperZero_NFC_Playlist
318dc9c Add code
6aa95d7 Update README.md
6594489 Initial commit
cafb07c upd readme
d70f146 upd nfc magic
25a1579 upd hangmangame
8a35240 update blespam
7e9cfca Merge pull request #6 from leedave/feature/subghz_updates
c934ddd searching for error with tmp file being open
d270d69 Merge pull request #5 from leedave/feature/subghz_updates
49cfa7f Seems to be sending, but doesn't close nicely
1b45037 Merge pull request #4 from leedave/feature/subghz_updates
52f1e75 Debugging SubGhz RXTX
03cd4ba Merge pull request #3 from leedave/feature/subghz_updates
7b5b0a2 Removal of obsolete logs
3ee5280 upd seader
3659155 upd hangmangame
374a9f9 upd readme
785be88 upd nfc magic
c470295 upd picopass
b55c5ff format
544d20b Working on TX
4c22643 upd wiegand
e8cec59 upd readme
390b301 upd hex viewer
a2f906f upd readme
ec3e655 upd picopass
aa7fcb7 upd hangmangame
0a2f3ea upd ublox
199ce67 uart terminal add missing uart deinit
f108761 upd blespam
7e6a9fa add some missing frees for subghz playlist
ca7b211 rework esubghz chat to use mbedtls
84c97f6 rework atomic dice roller to use mbedtls and fix otg
bc91d51 upd readme
3a74df4 Merge pull request #2 from leedave/feature/adding_subghz
d2a81e2 hotfix
c0e2fcc upd readme
c5f4426 upd blespam
efeac36 upd readme and uart term co-authors
7364830 bump versions for catalog
1010eda Added LED Effects for compile & subghz
bdb10b6 Merge pull request #32 from rnadyrshin/hex-mode
6fac013 Added SubGhz classes without features
21a95de Merge pull request #1 from leedave/freature/refactor_includes
41a408c Refactoring Includes
8f4d942 Now generates tmp.sub file for transmission
2212ab0 readme fix
c365e77 Hex mode & bug fixes
0916cc1 upd readme
42e9c7f upd blespam
ddf2f1c upd blespam
d2610f2 upd readme
8d57666 upd readme
2986d78 upd blespam
c593c54 Initial Commit
a750fd5 upd evilportal
fd7cdae restore usb app icon
21ba455 Merge pull request #31 from hryamzik/ptt
07c08b3 PTT: added webex
41c4dc0 PTT: added google hangouts
8ccdbfc PTT: added slack and signal
bdd526c PTT: help text fix
7dab4d9 PTT: improved disconnect notification
34610b4 PTT: added menu, new apps and improved controls
e027d10 upd readme
a54596f upd nfc magic
7949334 upd picopass
c0bf8c3 upd spi mem
36d2e9c upd seader
cbac196 upd hangmangame scripts
67158a3 upd espflasher
3a90d16 upd blespam
be7c52c update readme and move app to working apps
4421edb13d upd pokemon trading
81c2264c1f pokemon trading update (refactor PR)
24fde89639 upd pokemons
d4d5a81 fix compile errors
19f7020 fix dhcp
58bd123 ping work
7ca5218532 Update README.md
05c0b58 add  statici[
6696e166f3 Add "binary counter" effect
f563e450c6 Update screenshot
f01fdb58bd Version 1.1 (more effects)
dc7bde3 app fixes
3a0272a31d update banner image
78ead920aa Add .flipc pictures
ef82521f8d GPIO Badge v1.0
b90babf save success ping TODO: normalize code
73b16f9 cool dhcp work
6e8ba51 dhcp work
d5516e3 add normal module check
a1b1d88 fix ptr error
f9d3091 fix bugs
1e75210 first connection to w5500
fa03054 add eth_log
36de235 add power indicator to view
4a70e3c log
8d00470 add log
17386d9 save all configs
2e60d50 add save mac to file
0f3117d move app icon
096c0ba evp_printf, dinamic strings count
dbd1112 delete old structures
772839f gui changes
f284f3ed74 move apps
a4c8bd2 gui fixes
84dca5b add ping process
4c645f7 gui fixes
0234554 add static menu
c217027 add mac adress redactor
688a8af new screens add
1f050d4 fix memory
1a7afc6 new gui iteration
4d0e1d2 gui changes
4500353 add power consumption monitor
c0684d7 it's alive
9f7c8c6 move to lib
c5d2b83 save
a5b5bf2 add W5500 driver
f2ff7e9 add new ethernet icon
20e16d7 change naming
de62fef Amperka example

git-subtree-dir: applications/external
git-subtree-split: 08e6a50866e1b336e3eceedca1c6dceda509262f
RogueMaster pushed a commit that referenced this pull request May 20, 2024
RogueMaster added a commit that referenced this pull request May 23, 2024
e57513706a Merge seader from https://github.com/bettse/seader
0726f8e roll back a few free that are on decoded structs
9633df8f98 Format
831c7dc3e1 Merge nfc_playlist from https://github.com/acegoal07/FlipperZero_NFC_Playlist
e1e3243914 Merge magspoof from https://github.com/zacharyweiss/magspoof_flipper
b1ed211346 Merge flipbip from https://github.com/xtruan/FlipBIP
1f27ffd0b5 Merge cntdown_timer from https://github.com/0w0mewo/fpz_cntdown_timer
03ecedf7fb Merge chess from https://github.com/xtruan/flipper-chess
d57c045 Merge pull request #19 from Willy-JL/fix-double-free
85d1291 Correct syntax for gh cli pr to upstream from fork
2a7c0d7 Add auto-pr logic; bump action ver
a582863 Fix for TLSF allocator crashes
5d211f4fab Merge pull request #28 from acegoal07/dev
e574e05 Changes
a0bd65fb9c Merge pull request #27 from acegoal07/dev
20898f1 Update nfc_playlist_scene_file_rename.c
90eb26d Update nfc_playlist_scene_file_rename.c
94443e7 Update nfc_playlist_scene_file_rename.c
198b9ce Update nfc_playlist_scene_file_rename.c
00e5c6e Update app_catalog_upd.yml
f387a6a Just some tweaks
4db8bc9 Merge pull request #34 from xtruan/develop
1740b15 chore: bump manifest 1.16
5afc1d3 Merge branch 'main' into develop
cf969fa fix: minor UI cleanup, screenshot cleanup
23e4aff Fix < 1 sec crash as @Willy-JL advised
c5f522b Merge branch 'develop'
2fb9f43 chore: bump catalog
936a32f fix: remove import
e0a1fc6 fix: typo
be56492 fix: remove ref to u8g2
9f7dd64557 Merge pull request #26 from acegoal07/dev
f7d6f3c Update application.fam
c2c7c8b Update nfc_playlist_scene_file_rename.c
f9bef93 Update app_catalog_upd.yml
be6fdbf Merge branch 'main' of https://github.com/zacharyweiss/magspoof_flipper
26bc489 Update application.fam
0cf8e0b Create app_catalog_upd.yml
cd021de Merge pull request #24 from acegoal07/main
c33455d Update README.md
0dcfd59 Merge pull request #23 from acegoal07/dev
63ca18d Update nfc_playlist_scene_file_rename.c
f99ad11 Fixes incorrect frees
06626d8 Improvements
cb10252 Update README.md
a7d517d Merge pull request #8 from xtruan/develop
5214970 chore: bump manifest
4678ec9 fix: disable workflow better
8477442 chore: bump manifest
7dda90e fix: version bump, disable ufbt build
121ff4a Merge branch 'develop'
1c5b502 Merge pull request #33 from xtruan/develop
206e84b chore: bump manifest
a9b4ead chore: bump version
6c08905 feat: fixes from Momentum
5b5957e Merge branch 'main' into develop
8bce552 Merge pull request #7 from leha-bot/fix/build-on-rel-fw
1aca239 Update ufbt_build.yaml
b8b5c96 Update ufbt_build.yaml
b93ee28 Adds ability to remove playlist lines
f97b1c2 fix: updates from Momentum
0c371a2 Improves the detection of blank lines
66995c1 fix: avoid buffer overflow in sam engine if index == 255
57b7f65 fix: avoid dangling pointers to local storage

git-subtree-dir: applications/external
git-subtree-split: e57513706aa6dcadfcfcd1c92e0092b48899bc9f
RogueMaster pushed a commit that referenced this pull request Jun 4, 2024
RogueMaster pushed a commit that referenced this pull request Jun 23, 2024
Fix build against latest API, cleanup dead and unused code
RogueMaster added a commit that referenced this pull request Jul 1, 2024
d93ea95f3c4 Merge quac from https://github.com/rdefeo/quac
799b27e04ff Merge picopass from https://gitlab.com/bettse/picopass
b477140 updated changelog
401cd19 updating minor version
4773c8e1265 Fix icons
c6642781013 ESubGHz Chat: Merge nfclegacy port by xMasterX
4e880df Add firmware and app version to log
f82a5943dfd Revert "Merge geiger from https://github.com/nmrr/flipperzero-geigercounter"
4049c794c8c Revert "Merge atomicdiceroller from https://github.com/nmrr/flipperzero-atomicdiceroller"
f0f16c481a8 Merge seader from https://github.com/bettse/seader
1a7bde1ab8f Merge qrcode from https://github.com/bmatcuk/flipperzero-qrcode
f651f7a4b06 Merge picopass from https://gitlab.com/bettse/picopass
d13eb7d89b1 Merge nfc_rfid_detector from https://github.com/flipperdevices/flipperzero-good-faps
5b1bf1b4b3a Merge nfc_rfid_detector from https://github.com/xMasterX/all-the-plugins
fe76bafcd81 Merge nfc_playlist from https://github.com/acegoal07/FlipperZero_NFC_Playlist
8a256b15f49 Merge nfc_magic from https://github.com/flipperdevices/flipperzero-good-faps
df861468ec3 Merge nfc_magic from https://github.com/xMasterX/all-the-plugins
2f3a0e252fe Merge mfkey from https://github.com/noproto/FlipperMfkey
6eced5f5389 Merge mfkey from https://github.com/xMasterX/all-the-plugins
5758d591ceb Merge meal_pager from https://github.com/leedave/flipper-zero-meal-pager
27feab085b9 Merge magspoof from https://github.com/zacharyweiss/magspoof_flipper
cc8e3308c1d Merge ir_intervalometer from https://github.com/Nitepone/flipper-intervalometer
7ccad501922 Merge geiger from https://github.com/nmrr/flipperzero-geigercounter
dd559f28940 Merge cross_remote from https://github.com/leedave/flipper-zero-cross-remote
edecb75a5bb Merge atomicdiceroller from https://github.com/nmrr/flipperzero-atomicdiceroller
dbec9cce532 Merge airmouse/lib/lsm6ds3tr-api from https://github.com/STMicroelectronics/lsm6ds3tr-c-pid
f35ab2bc6a8 MFKey 2.7
a80d4f530ff Bump version to 2.2
b109adf Add version to log
3d872e77d6b bug fix (again)
f5477fb66b8 bug fix (again)
153864d2b44 Release driver version 2.0.1
1ebc3ed2caf updated README.md file with tag reference and mdelay description
e7e5426 bump application version
64135f4 bump version
c93309a fix minor typo
d60b4e8 bump version
ae535f9 Handle SAM removal better
7fe02d36326 upd rfid detector
9d520fabdbe upd mfkey
f327e1a Merge branch 'elite_keygen' into 'main'
5373476 Add to readme
aa572f1 Add elite keygen attack to UI
9997036 Add VB6 RNG
ba349ffdd8d [FL-3862] Fix typos in the RFID detector app (#229)
9d49cdf Config cards
560eaa8 sort elite dict, remove a dup
1c7699859c6 Fix: Update input cb func signature
6c3d87d7da4 fix gen4 poller nfc magic
e8df6e2a0a5 Fix for new MfUltralightTypeOrigin naming
5935b90 Merge pull request #31 from leedave/feature/update_0.103.1-rc
75ed8c9 Update for compatibility with 0.103.1-rc
3128ca9 Merge pull request #20 from leedave/feature/conflict_0.103.1-rc
c5d7979 Formatting
bfecd49 Code Updats for 0.103.1-rc
34673d7cafa NFC Magic: update app with latest API (#223)
6c59ca5 Update NOTES.md
11acf7c Update md_links.yml
66731db Create md_links.yml
aa562cc Update README.md
773e4bffd58 Merge pull request #32 from acegoal07/dev
6c2ca1a Update nfc_playlist_scene_emulation.c
1aafa3919a1 Merge pull request #31 from acegoal07/dev
a1526ac Update nfc_playlist_scene_emulation.c
68747a66fe8 Merge pull request #30 from acegoal07/dev
0ccb606 New Icon
95ac73f322d Merge zombiez from https://github.com/xMasterX/all-the-plugins
8c6a4084d8a Merge yatzee from https://github.com/xMasterX/all-the-plugins
46910dd0d16 Merge wav_player from https://github.com/xMasterX/all-the-plugins
32d3582cbdd Merge videopoker from https://github.com/xMasterX/all-the-plugins
4b21b4eb23c Merge unitemp from https://github.com/quen0n/unitemp-flipperzero
3f923959d61 Merge uart_terminal from https://github.com/xMasterX/all-the-plugins
b96951ef502 Merge tuning_fork from https://github.com/xMasterX/all-the-plugins
bd16644ab74 Merge timelapse from https://github.com/theageoflove/flipperzero-zeitraffer
17131b22f40 Merge timelapse from https://github.com/xMasterX/all-the-plugins
d9a964cda15 Merge tictactoe from https://github.com/xMasterX/all-the-plugins
07fe9e21666 Merge text_viewer from https://github.com/xMasterX/all-the-plugins
a7540d61c07 Merge text2sam from https://github.com/xMasterX/all-the-plugins
3b447f2de8c Merge tetris from https://github.com/xMasterX/all-the-plugins
e421ec4b016 Merge t_rex_runner from https://github.com/xMasterX/all-the-plugins
5c56445a4e1 Merge swd_probe from https://github.com/xMasterX/all-the-plugins
5c289685278 Merge spectrum_analyzer from https://github.com/xMasterX/all-the-plugins
c88bb464d44 Merge snake_2 from https://github.com/xMasterX/all-the-plugins
964d4160e32 Merge slots from https://github.com/xMasterX/all-the-plugins
840e221a7a3 Merge sentry_safe from https://github.com/xMasterX/all-the-plugins
09e1f838f94 Merge scorched_tanks from https://github.com/xMasterX/all-the-plugins
3dcd2f7b939 Merge rubiks_cube_scrambler from https://github.com/xMasterX/all-the-plugins
df45fd5c49c Merge rootoflife from https://github.com/xMasterX/all-the-plugins
1a5b5bf92f7 Merge reversi from https://github.com/xMasterX/all-the-plugins
5c5cac6a20f Merge protoview from https://github.com/xMasterX/all-the-plugins
212c1688e13 Merge pong from https://github.com/xMasterX/all-the-plugins
c0b55d90699 Merge pomodoro from https://github.com/xMasterX/all-the-plugins
02348af21b5 Merge picopass from https://gitlab.com/bettse/picopass
581c5205cfa Merge picopass from https://github.com/xMasterX/all-the-plugins
7cc3d20bf29 Merge passgen from https://github.com/xMasterX/all-the-plugins
0a9884f276e Merge paint from https://github.com/xMasterX/all-the-plugins
3f5c9dd6902 Merge nightstand_clock from https://github.com/xMasterX/all-the-plugins
a62444fe00a Merge music_player from https://github.com/flipperdevices/flipperzero-good-faps
4c8a2add22f Merge multi_fuzzer from https://github.com/DarkFlippers/Multi_Fuzzer
d3fa0fc8542 Merge multi_converter from https://github.com/xMasterX/all-the-plugins
26b1f9213f5 Merge morse_code from https://github.com/xMasterX/all-the-plugins
88f348e13e1 Merge mifare_nested from https://github.com/xMasterX/all-the-plugins
4bf3330175c Merge mifare_fuzzer from https://github.com/xMasterX/all-the-plugins
eb3a7009e59 Merge metronome from https://github.com/xMasterX/all-the-plugins
ac120110e97 Merge meal_pager from https://github.com/xMasterX/all-the-plugins
513fe8e3a1e Merge magspoof from https://github.com/zacharyweiss/magspoof_flipper
7327df90788 Merge ir_scope from https://github.com/xMasterX/all-the-plugins
6876e7e0301 Merge hex_editor from https://github.com/xMasterX/all-the-plugins
b66a67a57d6 Merge heap_defence from https://github.com/xMasterX/all-the-plugins
324384f292f Merge gps_nmea from https://github.com/xMasterX/all-the-plugins
ea31fb23b96 Merge gpio_reader_a from https://github.com/xMasterX/all-the-plugins
954606b86fa Merge geiger from https://github.com/xMasterX/all-the-plugins
84c208e863b Merge game_of_life from https://github.com/xMasterX/all-the-plugins
fbc97907b40 Merge game15 from https://github.com/xMasterX/all-the-plugins
2a517535bb0 Merge flappy_bird from https://github.com/xMasterX/all-the-plugins
68a24b56750 Merge esubghz_chat from https://github.com/xMasterX/all-the-plugins
ff07fb32f8f Merge dtmf_dolphin from https://github.com/xMasterX/all-the-plugins
f4547e55e22 Merge doom from https://github.com/xMasterX/all-the-plugins
7f0a86f0cfd Merge counter from https://github.com/xMasterX/all-the-plugins
c3ec58242cc Merge cntdown_timer from https://github.com/xMasterX/all-the-plugins
3ffae9b1f4d Merge calculator from https://github.com/xMasterX/all-the-plugins
6a810a87a74 Merge caesarcipher from https://github.com/xMasterX/all-the-plugins
56d94676c4f Merge bt_trigger from https://github.com/xMasterX/all-the-plugins
09a210988dc Merge bpmtapper from https://github.com/xMasterX/all-the-plugins
65026dc34ef Merge bomberduck from https://github.com/xMasterX/all-the-plugins
545fc1793f0 Merge barcode_gen from https://github.com/xMasterX/all-the-plugins
7801583e55f Merge asteroids from https://github.com/xMasterX/all-the-plugins
02e17637e2a Merge arkanoid from https://github.com/xMasterX/all-the-plugins
4a0f46b916d Merge airmouse from https://github.com/ginkage/FlippAirMouse/
476b1e6e96f Merge 4inrow from https://github.com/xMasterX/all-the-plugins
751d3614dfc Merge 2048 from https://github.com/xMasterX/all-the-plugins
3dba39f readme updates
ae4097d Improvements
3b8a10c5371 music_player: fix icon (#220)
b2cc1c31882 music_player: update api v.65.0 (#219)
ff023e9fe5b free properly
395f6971ddb fix barcode and nightstandclock
54c0bee5e62 fix barcode and nightstandclock
25647899dc3 redraw manually just in case
8160312416e redraw manually just in case
6d881249899 redraw manually just in case
df7d630baab redraw manually just in case
85ba7c4e763 redraw manually just in case
159d2d9363e fix icons
37b490f81e5 fix icons
c5efd93f3ee fix icons
4d2208046a1 fix icons
0b70fe9da65 fix icons
8614854d400 fix icons
5ec155d2d0e fix icons
a12fe83a3d2 bump versions for catalog
98a07685f80 bump versions for catalog
064f5c917a9 bump versions for catalog
888760a6eb4 bump versions for catalog
46a25c9a998 bump versions for catalog
9480148fe7e bump versions for catalog
85c97cedd23 bump versions for catalog
4e470d657e5 bump versions for catalog
ed8a2172a5d bump versions for catalog
0c242324ecf bump versions for catalog
780ea66fd63 bump versions for catalog
04e2d67918c bump versions for catalog
cd73fd65915 bump versions for catalog
9a790564325 bump versions for catalog
db1b20479f5 bump versions for catalog
99b4ca8abd6 bump versions for catalog
2629a89b5a9 bump versions for catalog
dfa6a00ae21 bump versions for catalog
cf2bcecd8f3 bump versions for catalog
831c30e7ecb bump versions for catalog
1cf34a02af2 bump versions for catalog
753d5e87e82 bump versions for catalog
a128abfc46e bump versions for catalog
22773dd5fb4 bump versions for catalog
27178f24af8 bump versions for catalog
6e118d63515 bump versions for catalog
bb4b930c90e bump versions for catalog
7d0551e6bff bump versions for catalog
82a62de1cb4 bump versions for catalog
75187bca101 bump versions for catalog
aa1a784196b bump versions for catalog
5ead19f0393 bump versions for catalog
b69782a7033 bump versions for catalog
7b6ad38214f bump versions for catalog
3097866176c bump versions for catalog
ba125ba96ab bump versions for catalog
9b69fd26508 bump versions for catalog
72d1202d2be bump versions for catalog
a0ebaa40e80 bump versions for catalog
d15c46cbdd6 bump versions for catalog
0e73e6defec bump versions for catalog
3ead308d2cf bump versions for catalog
a7027fb6776 bump versions for catalog
fcdac3ec698 bump versions for catalog
09f1108a298 bump versions for catalog
11a20f1c4e8 bump versions for catalog
64dd1b4b0f9 bump versions for catalog
9c053b5473a bump versions for catalog
864553ff775 bump versions for catalog
22f14bc7913 bump versions for catalog
4e0f2a6efd5 bump versions for catalog
61d040accba bump versions for catalog
a7769b1d6fb bump versions for catalog
20dcb66 Compatibility to API 65.0
6200aa1 Compatibility to SDK 65.0 f7
2ecfcd8 limit TD to fix crash and bump version
21eb0fb Replace 'Elite Dict Attack' with 'Read' in instrunctions
6da212763af free up some space in mifare nested too
1c11c095071 free some memory in esubghz chat
50d5615 Update CHANGELOG.md
8f99cf9 Merge pull request #37 from jamisonderek/master
de97ad1 Fix return values
a69929f3468 Fix duplicate defines
2c332a9636f fix reuse of define
556f7830d50 upd picopass
852769e Update README.md
3b83638 Update README.md
62fb6ed v1.5 (build on 102.3)
27de473 Update README.md
e6120e5 Update changelog
f723e6f Update README.md
473c892 Update README.md
976cb43c410 Merge esp_flasher/lib/esp-serial-flasher/submodules/stm32-cmake from https://github.com/ObKo/stm32-cmake
33e2f7009c8 Fix bulk update for subdirs
e0b5fee9422 Merge picopass/plugin from https://gitlab.com/bettse/flipper-wiegand-plugin
5755285fdc4 Merge picopass from https://gitlab.com/bettse/picopass
e6d5856 bump plugin
bbc0157 more acknowledgement line breaks
6f2d852 bump plugin
dde61924868 Add H10302, fix H10304
10bad06 bump plugin
5e2e8b25d27 clang-format
aa476ad2256 H10304
a15f66c0288 Merge pokemon_trading from https://github.com/EstebanFuentealba/Flipper-Zero-Game-Boy-Pokemon-Trading
531c6d4f678 Merge nfc_playlist from https://github.com/xMasterX/all-the-plugins
c6655ffc114 Merge mifare_nested from https://github.com/xMasterX/all-the-plugins
35f8af15f80 Merge gps_nmea from https://github.com/ezod/flipperzero-gps
d371767d602 Merge esubghz_chat from https://github.com/xMasterX/all-the-plugins
79751e59132 Merge airmouse from https://github.com/xMasterX/all-the-plugins
24769ce Update FUNDING.yml
7603594 Update nfc_playlist_scene_emulation.c
e384834 Merge pull request #32 from AEtherC0r3/add_m10q-5883
f6cf995 Add M10Q-5883 to the list of tested modules
783fd936174 upd nfc playlist
bfc2840c781 upd airmouse
1b4c21b68c4 fix build
6e0b27b3edd fix build
d6e56cf65b3 Airmouse: Update name for LSM6DSO
56ac7d818ff Fix nfclegacy
797864056e6 Format
cd4879a1785 Add airmouse/lib/lsm6ds3tr-api from https://github.com/STMicroelectronics/lsm6ds3tr-c-pid
a369e5ecf14 Add airmouse/lib/lsm6dso-api from https://github.com/STMicroelectronics/stm32-lsm6dso
4f3c5f303b1 Add airmouse/lib/bmi160-api from https://github.com/boschsensortec/BMI160_SensorAPI
1a63f9260ff Submodules
4d953ae718f Merge timelapse from https://github.com/xMasterX/all-the-plugins
dd67e140427 Merge nightstand_clock from https://github.com/xMasterX/all-the-plugins
d8cd9248c9d Merge nfc_playlist from https://github.com/acegoal07/FlipperZero_NFC_Playlist
d6c633d9c69 Fix merge
31c8d467b21 Merge zombiez from https://github.com/xMasterX/all-the-plugins
211f9310251 Merge wiiec from https://github.com/xMasterX/all-the-plugins
41992e4dc83 Merge wifi_scanner from https://github.com/xMasterX/all-the-plugins
824e458de09 Merge videopoker from https://github.com/xMasterX/all-the-plugins
cf56337b200 Merge tuning_fork from https://github.com/xMasterX/all-the-plugins
cfb26b3b629 Merge totp from https://github.com/xMasterX/all-the-plugins
fad2bd459d7 Merge tictactoe from https://github.com/xMasterX/all-the-plugins
70139865ee2 Merge tetris from https://github.com/xMasterX/all-the-plugins
9f0ea5d9afd Merge tanks from https://github.com/xMasterX/all-the-plugins
21fccf6fba8 Merge tama_p1 from https://github.com/xMasterX/all-the-plugins
651261b912e Merge t_rex_runner from https://github.com/xMasterX/all-the-plugins
e29261eb579 Merge subghz_playlist from https://github.com/xMasterX/all-the-plugins
9c3a4269703 Merge solitaire from https://github.com/xMasterX/all-the-plugins
585ec84172b Merge snake_2 from https://github.com/xMasterX/all-the-plugins
033e9e10307 Merge slots from https://github.com/xMasterX/all-the-plugins
4188ee9b001 Merge sentry_safe from https://github.com/xMasterX/all-the-plugins
a0bb541547a Merge scorched_tanks from https://github.com/xMasterX/all-the-plugins
c25a108c5d0 Merge rootoflife from https://github.com/xMasterX/all-the-plugins
e0361baa6bd Merge rc2014_coleco from https://github.com/xMasterX/all-the-plugins
97b5a2d29ea Merge quac from https://github.com/rdefeo/quac
1ba815bc8e1 Merge quac from https://github.com/xMasterX/all-the-plugins
2c8406fd987 Merge qrcode from https://github.com/bmatcuk/flipperzero-qrcode
fc30e1249f4 Merge qrcode from https://github.com/xMasterX/all-the-plugins
29359baebe9 Merge picopass from https://github.com/xMasterX/all-the-plugins
d72b7c7e8d5 Merge passgen from https://github.com/xMasterX/all-the-plugins
58b0e1bb6a7 Merge nrf24sniff from https://github.com/xMasterX/all-the-plugins
932728cd43b Merge nrf24scan from https://github.com/xMasterX/all-the-plugins
de9f481eedc Merge nrf24mousejacker from https://github.com/xMasterX/all-the-plugins
8f4489c4f8f Merge nrf24batch from https://github.com/xMasterX/all-the-plugins
09d37088999 Merge music_player from https://github.com/xMasterX/all-the-plugins
5854f7a391d Merge multi_converter from https://github.com/xMasterX/all-the-plugins
9866280eeca Merge morse_code from https://github.com/xMasterX/all-the-plugins
9ad05917e5f Merge mifare_nested from https://github.com/xMasterX/all-the-plugins
82a27018bf4 Merge mfkey from https://github.com/xMasterX/all-the-plugins
e50f3c0eb45 Merge metronome from https://github.com/xMasterX/all-the-plugins
5eded3f2565 Merge meal_pager from https://github.com/leedave/flipper-zero-meal-pager
16781ae844d Merge mayhem_qrcode from https://github.com/eried/flipperzero-mayhem
2895fcc4686 Merge mayhem_nannycam from https://github.com/eried/flipperzero-mayhem
7fe3710f782 Merge mayhem_motion from https://github.com/eried/flipperzero-mayhem
20c638eebaa Merge mayhem_morseflash from https://github.com/eried/flipperzero-mayhem
253a9baac7b Merge mayhem_marauder from https://github.com/eried/flipperzero-mayhem
3d277c50631 Merge mayhem_camera from https://github.com/eried/flipperzero-mayhem
c15462aa415 Merge jetpack_joyride from https://github.com/xMasterX/all-the-plugins
6024e545edd Merge ir_intervalometer from https://github.com/xMasterX/all-the-plugins
51ee0957a3b Merge ifttt from https://github.com/xMasterX/all-the-plugins
de1404f47c0 Merge heap_defence from https://github.com/xMasterX/all-the-plugins
5668416d856 Merge hc_sr04 from https://github.com/xMasterX/all-the-plugins
a25ff337471 Merge gps_nmea from https://github.com/xMasterX/all-the-plugins
5fbed3ef471 Merge gpio_reader_a from https://github.com/xMasterX/all-the-plugins
eccc8028b99 Merge game_of_life from https://github.com/xMasterX/all-the-plugins
7bc7e57910d Merge game15 from https://github.com/xMasterX/all-the-plugins
a9c3c7575da Merge flashlight from https://github.com/xMasterX/all-the-plugins
ee516f63d9e Merge flappy_bird from https://github.com/xMasterX/all-the-plugins
d216a3ca0b2 Merge esubghz_chat from https://github.com/xMasterX/all-the-plugins
63fc519df7a Merge esp8266_deauth from https://github.com/xMasterX/all-the-plugins
5b6ef11052a Merge doom from https://github.com/xMasterX/all-the-plugins
667ce94f7a8 Merge counter from https://github.com/xMasterX/all-the-plugins
eda39d6cf36 Merge bt_trigger from https://github.com/xMasterX/all-the-plugins
0c32924e91f Merge bpmtapper from https://github.com/xMasterX/all-the-plugins
c32d7c08816 Merge blackjack from https://github.com/xMasterX/all-the-plugins
5252e2a66c1 Merge arkanoid from https://github.com/xMasterX/all-the-plugins
826319f8de0 Merge airmouse from https://github.com/ginkage/FlippAirMouse/
55ce1d363df fix mutex
6e1d9e65388 fix mutex
e668dd614b7 fix mutex
9f6b0f02cd2 fix mutex
166b3416f62 fix mutex
605aedd601b fix mutex
1ac00c09b9a fix mutex
63277948224 fix mutex
6a82ca54488 fix mutex
19b7260 tweaks
53cf8053580 fix for latest API
9714bb986c6 fix for latest API
9fe3a70dfbf oof
e5abf9d2719 oof
eb86e1809dc oof
b58e3f69954 oof
bfb91d4b533 oof
c5c3c935779 oof
077e1648237 oof
3b531a7327e oof
bcaeabeac25 oof
239547643b4 oof
09093d8cfce oof
4bcbbfbf5c4 oof
2146bfb5210 oof
c55063cb064 oof
db86c3f0e38 oof
8a931ab0d78 oof
727ca78c695 oof
cac87059ee2 oof
75cc2baec66 oof
c55958755fa oof
c887f38261b oof
82670f42304 oof
19c5ebf73a1 oof
a6b1fb43236 oof
eb305f22511 oof
c94a688176b oof
b3ecb7bee8d oof
a0307492f79 oof
25deaa2e14b oof
e8d76ee3ceb oof
911dc02975d oof
b77be5c0a1f oof
84d5fb71f65 oof
e2ea6805356 oof
416afdf972a oof
fd6907e2f19 oof
2c697810d36 oof
a02810fb492 oof
5edd7f8d774 oof
1b5b3fe Map axes correctly for the test module
1475270904d upd picopass
2176d607677 upd totp
c147f5226a5 upd subghz playlist
75ab10560fb upd quac
17209cd7b94 upd ifttt
3e65a46 Add error message if the module is not connected
d035344 A little more cleanup and styling fixes
4170177 Clean up driver headers
79e9154 Merge pull request #23 from alex-vg/lsm6dso
44f11fea682 update companions to newer fz sdk
5df3d5a0793 update companions to newer fz sdk
ecc4103664b update companions to newer fz sdk
216b97358e5 update companions to newer fz sdk
4f806b2ec72 update companions to newer fz sdk
07ab42f016b update companions to newer fz sdk
971f41d1570 Update README.md
29da8eb0cc0 Merge pull request #29 from acegoal07/dev
c65c6e7 More fixes
7c93057 Fixes + Cutbacks
a661759 Merge pull request #30 from leedave/feature/updateCategory
13d45e9 Update Category capitalization
ee67ad2 update to firmware 0.102.3
cd30043 change icon_get_data to icon_get_frame_data
e2ad6a1 Merge pull request #8 from Willy-JL/some-fixes
7d82383 bumped version to 1.2 renamed LSM6DS3_ADDRESS to LSM6DS3_DEV_ADDRESS moved LSM6DS3_DEG_TO_RAD into imu.h refactored using sizeof moved imu_t definition
5c277a9 Improvements
30ce6bc added dynamic lib usage depending on i2c address
b7f561b refactored imu headers
c5eecfd moved checked in drivers to submodules
946e424 added lsm6dso version
a00bc10 Fix subghz actions
0e7428b tweaks
369b66d Merge pull request #341 from xanthio/maintenance/split-devices-in-family-files
2c140f1 Improvements
6fa0239 Tweaks
416e22f Tweaks
4396569 Uniform
b208c2f Revert to pre-split versions of CUBE HAL and CMSIS
86deaa1 Revert "Create MB_MEM2 shared section for devices with shared RAM up to date startup initialize it"
8396cda Revert "Latest MP1 system.c needs clocks value that are defaulted by HAL"
fbc80be Fix import here logic
437d212 Fix array out of bounds in create group when empty
ed42cb8 Latest MP1 system.c needs clocks value that are defaulted by HAL
d92c104 Create MB_MEM2 shared section for devices with shared RAM up to date startup initialize it
9d7fd38 Split devices in family files
aa4b996 Merge pull request #336 from xanthio/feature/STM32U0xx-support
c1cb64b Resolve conficts due to F4 familly update
8cfd141 Merge pull request #337 from slide333333/master
e99fe2a Update to use lates Cube / HAl / CMSIS for F4
24788033c89 Release v1.7.0
4a199f8237c Release v1.5.0
39afc22a8bd Release v1.3.0
6cbfdbc Fix types and matches
da260cf STM32U0 family support
6344d2a64df Release driver version 2.0.0
98419ded32a Fixed code style (Artistic Style Version 3.4.13)
6a0d255 Merge pull request #335 from david-drinn/master
85306d6 NT: Update U5 to latest Cube 1.4.0
3923334265b Add "const" to ctx arg for all APIs
986aaf9 Merge pull request #320 from Hish15/P2H/develop_H5
fb8cbae h5.cmake:Corrected fpu flag
c7e9b42 Updated doc to have a working CI for new families
d9f8585 Added conf file for all tests
e37e0de Added H5 devices to list of known devices
9b57e2e common.cmake includes h5 properly
c6c84f4 Corrected CMSIS and HAL versions
9e2a580 Updated CMSIS version to v5.9.0 for H5 family
f270cb0 Merge branch 'master' into P2H/develop_H5
768fb61e632 Release driver version v1.1.0
8bf0520 h5: fixed cpu core to cortex-m33
9ffdd49 utilities.cmake: Added versions for fetch feature
93725b7 maintiain.md added more info
ae613dc TRASH: CI: Removed all but H5 from tests
0ab5956 CI: Added H5 family to CI run
ecaefbe common.cmake:Added H5 to STM32_SUPPORTED_FAMILIES_LONG_NAME
82ff509 docs:Added doc to add new family
a4ff415 Added h5.cmake file
1b4f9e3ea61 Add __weak directive to read/write registers routines
99b29b4b0eb lsm6ds3tr-c_reg.h: Extend stmdev_ctx_t structure with mdelay callback
530f765761a repo name changed adding '-pid' extension.
07609aae3f2 Initial commit
a15536688c2 Fixed some Macro typos. Updated the bmi160_get_power_mode API. Fixed a bug which configured the pre-filter in the power mode API.
5abbaa79e6a Updated Release_Note.md
fd865b462da Fixed links in README.md
cfa5a5937dc added docs
1c2d00b875a renamed driver files
0d461d2826f added attribute const to stmdev_write_ptr signature
48306bd3679 Splitted from https://github.com/STMicroelectronics/STMems_Standard_C_drivers
3ac7bb6a237 Updated to v3.9.1. Fixed bugs in the sensor configuration. Added examples. Updated the callback interfaces.
93072b1503f Updated README.md
4c5217efadc Updated license and formatting. Fixed a few bugs.
a23022cc320 Revised delay usage. Changed formatting. Removed changelog
44f0df94d6b Added LICENSE file
e0a96d443e5 Patched typos in README.md
41bed07d962 Added bmi160_get_power_mode API In the bmi160_init API, dereferenced dev struct only after null pointer check.
ded000f1729 - Linux compatibility issue fixed - FIFO Sensortime access is updated - Try concept used in bmi160_init API
dcc64476e92 Added support for FIFO tagging as an int_pin_config
f506ded9369 Added - Aux FIFO support added - Self-test issue fixed - Support for mapping and unmapping interrupt pin for channel 1, 2 and both
e69b9472c2a v3.6.1, SPI support for FIFO reading and parsing logic updated
b09262fb233 v3.6.0 Added Fast offset compensation
d28f5e22f45 Upgrade to v3.5.0
9e3f01692c4 BMI160 Sensor API latest code upload
9975269f30d Initial commit

git-subtree-dir: applications/external
git-subtree-split: d93ea95f3c4aa56179fadc49b19a04e09768b9d9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant