Skip to content

Revert "Skorp/subghz cc1120 Patched" #20

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

Merged
merged 1 commit into from
May 18, 2022

Conversation

RogueMaster
Copy link
Owner

Reverts #18

@RogueMaster RogueMaster merged commit c0b3809 into dev-MuddleBoxUnlocks May 18, 2022
@RogueMaster
Copy link
Owner Author

Reverted due to Freq Analyzer crash

@RogueMaster RogueMaster deleted the revert-18-patch-1 branch May 18, 2022 22:13
RogueMaster pushed a commit that referenced this pull request Oct 31, 2023
RogueMaster pushed a commit that referenced this pull request Nov 2, 2023
RogueMaster pushed a commit that referenced this pull request Nov 4, 2023
RogueMaster pushed a commit that referenced this pull request Nov 6, 2023
This commit wraps up a number of changes that aim to improve the trade
process, its robustness, add some features, and fix some bugs.

Change list in rough order of importance:

Better pattern matching of incoming data for each trade step, provides
more robust logic during trading and more correctly sync's states
between the Flipper and gameboy.
Fixes #20 as a side effect.

Implement trade patch list. This allows for the Flipper to both send and
receive patch data. The patch list is used by Pokemon to patch what is
considered to be a NO_DATA_BYTE (e.g. data from the follower was not yet
ready) with another byte, and then track that byte's index. The other
side then restores that byte to what it should be.
Fixes #18

Ability for the Flipper to correctly receive the Pokemon traded to it
and put that Pokemon in the Flipper's trade buffer. This allows for
trading back and forth (e.g. in the case of a Pokemon that evolves with
trade, trading to the Flipper and back will trigger an evolution on the
Gameboy), as well as the following feature.

Ability for the Flipper to back out of the trade menu, modify the
current Pokemon, and re-enter the trade menu without having to
completely reset the Gameboy and re-enter the Cable Club.
Fixes #19

Completely isolates Trade's context and scope. The _alloc() function now
returns an anonymous pointer that means nothing to the rest of the
application. However, this does require a bit of juggling as the main
application is responsible for setting up the View at the start.

Adds a huge comment block in the trade source outlining the current
understanding of the actual trade data protocol. Also adds specific
comments for more context specific details through various trade states.

Changes to how the draw callback is called. In order to correctly update
the canvas during the actual trading with a graphic and LED changed
every 250 ms, the timer to call the update was changed to only run every
250 ms. However, Flipper OS does not guarantee that this is the only
draw update call, and may issue a draw update at any time. The view
model now tracks what the LED state should be, and our timed update
routine callback is the only place this LED state is toggled. This
forces the trade animation to always be sync'ed correctly no matter how
often the Flipper OS calls it.

Clean up state tracking overall. There are now two states that are
tracked, the Gameboy/link state, and the actual trade states. The
Gameboy state still has a bit of overlap with the trade states, however,
it combines what was the link state in to this. This also allows
elimination of additional bools that were used for state tracking in
parallel. State transitions and meanings should now be a bit more
straightforward.

CLK pin now implements an interrupt on either edge. The ISR was updated
to shift data out on the falling edge, and read data in on the rising
edge. This eliminates any need for delays while in an interrupt context
as well as mimics Gameboy behavior by matching the setup/hold times.

Remove use of magic numbers as much as possible. Bytes to/from the
Pokemon game now use macros for most of the bytes. Many of these were
pulled from https://github.com/pret/pokered defines.

Clean up cycle counter to real-time maths. Copied general paradigms from
Flipper onewire code. This also includes the bit counter timeout and now
ensures correct timeouts are measured between transmitted bytes.
RogueMaster pushed a commit that referenced this pull request Nov 7, 2023
This commit wraps up a number of changes that aim to improve the trade
process, its robustness, add some features, and fix some bugs.

Change list in rough order of importance:

Better pattern matching of incoming data for each trade step, provides
more robust logic during trading and more correctly sync's states
between the Flipper and gameboy.
Fixes #20 as a side effect.

Implement trade patch list. This allows for the Flipper to both send and
receive patch data. The patch list is used by Pokemon to patch what is
considered to be a NO_DATA_BYTE (e.g. data from the follower was not yet
ready) with another byte, and then track that byte's index. The other
side then restores that byte to what it should be.
Fixes #18

Ability for the Flipper to correctly receive the Pokemon traded to it
and put that Pokemon in the Flipper's trade buffer. This allows for
trading back and forth (e.g. in the case of a Pokemon that evolves with
trade, trading to the Flipper and back will trigger an evolution on the
Gameboy), as well as the following feature.

Ability for the Flipper to back out of the trade menu, modify the
current Pokemon, and re-enter the trade menu without having to
completely reset the Gameboy and re-enter the Cable Club.
Fixes #19

Completely isolates Trade's context and scope. The _alloc() function now
returns an anonymous pointer that means nothing to the rest of the
application. However, this does require a bit of juggling as the main
application is responsible for setting up the View at the start.

Adds a huge comment block in the trade source outlining the current
understanding of the actual trade data protocol. Also adds specific
comments for more context specific details through various trade states.

Changes to how the draw callback is called. In order to correctly update
the canvas during the actual trading with a graphic and LED changed
every 250 ms, the timer to call the update was changed to only run every
250 ms. However, Flipper OS does not guarantee that this is the only
draw update call, and may issue a draw update at any time. The view
model now tracks what the LED state should be, and our timed update
routine callback is the only place this LED state is toggled. This
forces the trade animation to always be sync'ed correctly no matter how
often the Flipper OS calls it.

Clean up state tracking overall. There are now two states that are
tracked, the Gameboy/link state, and the actual trade states. The
Gameboy state still has a bit of overlap with the trade states, however,
it combines what was the link state in to this. This also allows
elimination of additional bools that were used for state tracking in
parallel. State transitions and meanings should now be a bit more
straightforward.

CLK pin now implements an interrupt on either edge. The ISR was updated
to shift data out on the falling edge, and read data in on the rising
edge. This eliminates any need for delays while in an interrupt context
as well as mimics Gameboy behavior by matching the setup/hold times.

Remove use of magic numbers as much as possible. Bytes to/from the
Pokemon game now use macros for most of the bytes. Many of these were
pulled from https://github.com/pret/pokered defines.

Clean up cycle counter to real-time maths. Copied general paradigms from
Flipper onewire code. This also includes the bit counter timeout and now
ensures correct timeouts are measured between transmitted bytes.
RogueMaster pushed a commit that referenced this pull request Nov 7, 2023
This commit wraps up a number of changes that aim to improve the trade
process, its robustness, add some features, and fix some bugs.

Change list in rough order of importance:

More robust logic during trading which more correctly syncs states
between the Flipper and gameboy.
Fixes #20 as a side effect.

Implement trade patch list. This allows for the Flipper to both send and
receive patch data.
Fixes #18

Ability for the Flipper to correctly receive the Pokemon traded to it
and put that Pokemon in the Flipper's trade buffer. This allows for
trading back and forth, as well as the following feature.

Ability for the Flipper to back out of the trade menu, modify the
current Pokemon, and re-enter the trade menu without having to
completely reset the Gameboy and re-enter the Cable Club.
Fixes #19

Completely isolate Trade's context and scope. The _alloc() function now
sets itself up with a View and adds it to the app's view_dispatcher.
Then returns an anonymous pointer to the Trade context.

Adds a huge comment block in the trade source outlining the current
understanding of the actual trade data protocol. Also adds specific
comments for more context specific details through various trade states.

Sets up draw timer callback on 250 ms intervals. This callback toggles a
variable that is used to switch between the two screens during the
TRADING state. The actual draw callback may be called more often. Using
a timer and variable modification allows us exact control of screen
changes.

Clean up overall state tracking. There are now two states that are
tracked, the Gameboy/link state, and the actual trade states. This also
allows elimination of additional bools that were used for state tracking
in parallel. State transitions and meanings should now be a bit more
straightforward.

CLK pin now implements an interrupt on either edge. The ISR was updated
to shift data out on the falling edge, and read data in on the rising
edge. This eliminates delays while in an interrupt context as well as
mimics Gameboy behavior by matching the setup/hold times.

Remove use of magic numbers as much as possible. Bytes to/from the
Pokemon game now use macros for most of the bytes. Many of these were
pulled from https://github.com/pret/pokered defines.

Clean up cycle counter to real-time maths. Copied general paradigms from
Flipper onewire code. This also includes the bit counter timeout and now
ensures correct timeouts are measured between transmitted bytes.
RogueMaster pushed a commit that referenced this pull request Nov 8, 2023
This commit wraps up a number of changes that aim to improve the trade
process, its robustness, add some features, and fix some bugs.

Change list in rough order of importance:

More robust logic during trading which more correctly syncs states
between the Flipper and Game Boy.
Fixes #20 as a side effect.

Implement trade patch list. This allows for the Flipper to both send and
receive patch data.
Fixes #18

Ability for the Flipper to correctly receive the Pokemon traded to it
and put that Pokemon in the Flipper's trade buffer. This allows for
trading back and forth, as well as the following feature.

Ability for the Flipper to back out of the trade menu, modify the
current Pokemon, and re-enter the trade menu without having to
completely reset the Game Boy and re-enter the Cable Club.
Fixes #19

Completely isolate Trade's context and scope. The _alloc() function now
sets itself up with a View and adds it to the app's view_dispatcher.
Then returns an anonymous pointer to the Trade context.

Adds a huge comment block in the trade source outlining the current
understanding of the actual trade data protocol. Also adds specific
comments for more context specific details through various trade states.

Sets up draw timer callback on 250 ms intervals. This callback toggles a
variable that is used to switch between the two screens during the
TRADING state. The actual draw callback may be called more often. Using
a timer and variable modification allows us exact control of screen
changes.

Clean up overall state tracking. There are now two states that are
tracked, the Game Boy/link state, and the actual trade states. This also
allows elimination of additional bools that were used for state tracking
in parallel. State transitions and meanings should now be a bit more
straightforward.

CLK pin now implements an interrupt on either edge. The ISR was updated
to shift data out on the falling edge, and read data in on the rising
edge. This eliminates delays while in an interrupt context as well as
mimics Game Boy behavior by matching the setup/hold times.

Remove use of magic numbers as much as possible. Bytes to/from the
Pokemon game now use macros for most of the bytes. Many of these were
pulled from https://github.com/pret/pokered defines.

Clean up cycle counter to real-time maths. Copied general paradigms from
Flipper onewire code. This also includes the bit counter timeout and now
ensures correct timeouts are measured between transmitted bytes.
RogueMaster pushed a commit that referenced this pull request Nov 8, 2023
RogueMaster pushed a commit that referenced this pull request Dec 2, 2023
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
3758a8d upd gps
9cb005d add automatic 5v power in gps app
dbd100e update gps uart
25662db fixing some big bugs
07e9c82 combine 1
d5df4d8 move base pack here
REVERT: ecd900b Clean up changing baud rate logic.
REVERT: bdff18e Properly initialize gps_uart struct members.
REVERT: 565e93b Merge pull request #24 from dl9sec/main
REVERT: cc8b253 Update README.md
REVERT: e3cd903 Remove unnecessary enum identifier.
REVERT: 5c70f6e Add include guard to constants.h.
REVERT: 7112bef Update module compatibility information. Closes #21.
REVERT: ec77166 Merge pull request #23 from ezod/4800baud
REVERT: fb7946f Add 4800 baud rate. Closes #20.
REVERT: a27b41c Merge pull request #22 from ezod/mph
REVERT: d875fb5 Add setting for speed display in miles per hour. Closes #19.
REVERT: 88e7324 Add uFBT build instructions. Closes #15.
REVERT: aa8a4b7 Remove YMMV warning about NEO-6M.
REVERT: 734e2c4 Add Royaltek RBT-2100LP to supported module list.
REVERT: 0a86422 Add installation instructions.
REVERT: dc3aa4f Ignore .clang-format autogenerated by ufbt.
REVERT: b36bc47 Remove unused sdk-index-url context.
REVERT: 7a45a4f Add build status badge.
REVERT: 96f0f59 Add GitHub action to build FAPs for dev and release SDK.
REVERT: 3972929 Add missing parenthesis.
REVERT: 53c610a Fix link on issue reference.
REVERT: e9317fc Add note about NEO-6M not working for some people.
REVERT: f433916 Add usage section to README for new interactions. Closes #11.
REVERT: 47b3e0a Remove contributing section, as it is no longer relevant.
REVERT: d28dfe9 Merge pull request #10 from xMasterX/ul-updates
REVERT: a9c1301 Delete minmea.h
REVERT: e21c132 Delete minmea.c
REVERT: 53aa016 Import minmea as a submodule and add FAP library definition.
REVERT: 6147cb9 Ignore .vscode from uFBT.
REVERT: 841db2d Set default baud rate to 9600.
REVERT: 6128470 Merge branch 'main' into ul-updates
REVERT: f6fa1e7 Apply ./fbt format (excluding third-party sources).
REVERT: 606389c Add all current updates
REVERT: aaea283 Add comments to serial readline loop.
REVERT: 5b74829 Add support for GLL NMEA sentence.
REVERT: 397a8f1 Improve context object pointer handling.
REVERT: 3334056 Update mutex to new API.
REVERT: e7bf036 Add link to Lab401 tutorial video by RocketGod. Closes #4.
REVERT: dc9fa7a Add note about PRs for compatible module list.
REVERT: b73b3c6 Remove binary from source tree; to be added to GitHub release.
REVERT: d400dc6 Change app category to GPIO.
REVERT: 0a524e6 Add u-blox NEO-6M to compatible module list.
REVERT: e8bdc1a Add list of confirmed compatible modules.
REVERT: 4ab2114 FAP: API version 11.5.
REVERT: e22f4fc FAP: API version 10.1.
REVERT: 502ff34 FAP: API version 7.5.
REVERT: 5e08103 FAP: API version 7.2.
REVERT: 123583a Add default handler to input even switch statement.
REVERT: 03d8ffe Add contributing section to README.
REVERT: f5dbde5 Initialize time fields to zero.
REVERT: f088296 Scale down wiring diagram.
REVERT: c507855 Add wiring diagram.
REVERT: 4f1ed02 Expand build instructions.
REVERT: 27b213d Add UI image.
REVERT: 60f86ae Add color-coded LED blinks on successful NMEA message parse.
REVERT: b9269b4 Improve UI layout.
REVERT: 87de232 Add time fields to GPS status struct.
REVERT: 1014b5d Add several more GPS fields to status struct and display.
REVERT: f30f219 Code style formatting overhaul.
REVERT: 47fadfc Update UART code to use new stream buffer API. Closes #1.
REVERT: 75940c7 Update README with new FAP target.
REVERT: 58fa5b9 Rename main app source file.
REVERT: b3cd0e7 Update application manifest and add icon.
REVERT: 8aff5d2 Move sources to root of repository.
REVERT: 6e654f9 Mention and link minmea in README.
REVERT: c4909c6 Create README.
REVERT: fe98f61 Import and FAP conversion of GPS plugin from flipperzero-firmware fork. Does not build yet as stream_buffer.h API is not yet available for FAP.
REVERT: 2feee6c Initial commit

git-subtree-dir: gps_nmea
git-subtree-split: 3758a8d
RogueMaster pushed a commit that referenced this pull request Jan 6, 2024
RogueMaster pushed a commit that referenced this pull request Jan 8, 2024
RogueMaster pushed a commit that referenced this pull request Apr 16, 2024
RogueMaster added a commit that referenced this pull request May 18, 2024
843ad7dc60 Format
26da8ddd9f Use asset packs not fap libs assets
c750863dfd Tweak app names and categories
cdb464e6b1 Pokemon Trading: Fix crash at exit
d50d65de7a Add pokemon_trading/lib/flipper-gblink from https://github.com/kbembedded/flipper-gblink
e19a4c8750 Replace submodule
03419d7252 Add pokemon_trading from https://github.com/EstebanFuentealba/Flipper-Zero-Game-Boy-Pokemon-Trading
1f9b7198ec Add malveke_pin_test from https://github.com/EstebanFuentealba/MALVEKE-Flipper-Zero
a81840b26c Add malveke_gba_cartridge from https://github.com/EstebanFuentealba/MALVEKE-Flipper-Zero
e17e689c6a Add malveke_gb_photo from https://github.com/EstebanFuentealba/MALVEKE-Flipper-Zero
b0451b137c Add malveke_gb_live_camera from https://github.com/EstebanFuentealba/MALVEKE-Flipper-Zero
29b23546ef Add malveke_gb_link_camera from https://github.com/EstebanFuentealba/MALVEKE-Flipper-Zero
2f30596840 Add malveke_gb_emulator from https://github.com/EstebanFuentealba/MALVEKE-Flipper-Zero
d716970d83 Add malveke_gb_cartridge from https://github.com/EstebanFuentealba/MALVEKE-Flipper-Zero
18d81bdf6e Quac: Fix import here logic
140bb274d2 Quac: Fix array out of bounds in create group when empty
acf215b487 Add quac from https://github.com/rdefeo/quac
8c44b5bc33 Link without subdir
93931d7 Merge pull request #1 from EstebanFuentealba/main
67a73ca Fix last bracket for cpp
d366342 ensure RAW subghz signals repeat
421f945 gblink: fix MALVEKE pinout breaking OK button
b8cd722930 Fix export all
447da21291 Apply format
919081b052 Fix GB Photo! pagination + status image
0cfc811 sponsor link
430c85f added build action badge
7572aeac73 Memory optimization and fix for issue #35.
11ac2a6 updated changelog and readme
845db33 Update README.md
036d6d0 improved IR file import
e0c54279b2 Update version, apply format
95d9cd041f Apply format
a4ca1758c0 Apply format
373590afd6 Update Changelog
546d248ff1 Update Changelog
fdeb904a86 Fix Parse Error
c1c5f11b4c Fix Parse Error
90297cb fixed nfc and unknown icons
560e958 basic NFC support
54e8732dd8 Fix Frozen upon exiting the gb photo.
896bc54fb0 Fix Frozen upon exiting the apps.
6c30d17499 Fix Frozen upon exiting the apps.
09f7507 fixed switch statement
2060b23 fixing version
77ab1c9 updating version in fam
00b2ba7 Merge branch 'master' of github.com:rdefeo/quac
90c432b Update CHANGELOG.md for v0.5
0f37fbf removed log statement
7709113 show hidden file setting, about screen, cleanup
bcb5cc3 updated docs and markdown lint fixes
30e0fbe add support for external subghz antenna
a3595f0 Update README.md
044cedc Merge pull request #2 from rdefeo/infrared
766526c Merge branch 'master' into infrared
bdb3aa9 added Action settings menu
3d35df2 basic IR support
d43f3e1 trying to appease the flipperlab sanitizer
4fda6ff Minor formatting changes
5cf9260 README for Flipper Lab
72fc260 original screenshots added, small ones removed
7b9a35a smaller screenshots for flipper lab
c137646 resized images to be 50% smaller
ac9708b Update README.md
4ee9b36 new screenshots
19dd1d0 rotated img
01d892f Update README.md
d68641d new screenshots of new ui
ffbe77d Merge pull request #1 from rdefeo/new-ui
09230aa code cleanup, log cleanup
a938b09 Merge branch 'master' into new-ui
59499e5 update for 0.99.1 firmware
9d34229 pushing latest
f0c9d33f98 Fix FuriHalRtc: new datetime lib. version 2.1
a8004cf68f Fix FuriHalRtc: new datetime lib. version 2.1
3a76632379 Fix FuriHalRtc: new datetime lib. version 2.1
995e0b3f08 Fix FuriHalRtc: new datetime lib. version 2.1
5f411534af Fix FuriHalRtc: new datetime lib. version 2.1
58338bae8e Fix FuriHalRtc: new datetime lib. version 2.1
43ccb0583e Fix FuriHalRtc: new datetime lib. version 2.1
80857c9 icon was not truly white and black!
5baf7c1 small cleanup
a7c4386 revamped UI, settings, icons
1274b7ed10 FuriHalRtc refactor: new datetime lib
8da6d9d1af FuriHalRtc refactor: new datetime lib
a251744f55 Apply ufbt format
56269850a3 Apply ufbt format
ccf34ccc2e Apply ufbt format
57af5a6821 Apply ufbt format
09fed0f035 Apply ufbt format
d1b25f5a33 Apply ufbt format
3ee535d195 Apply ufbt format
3c19786718 Update Changelog.md
87d5f43170 Update Changelog.md
f7aad8daad Update Changelog.md
30a9314f94 Update Changelog.md
0d3cd7cf91 Update Changelog.md
12613cf951 Update Changelog.md
cfd39f6b59 Fix DateTime to FuriHalRtcDateTime
41fc7c7843 Fix DateTime to FuriHalRtcDateTime
0d504bd304 Update GB Pin Test
b61aa54d55 Update GB Link Camera 2.0 New Serial API closes #18
8f0541f0a1 Update GB Emulator 2.0 New Serial API
f319e6076b Update GBA Cartridge 2.0 New Serial API closes #19
6edb684b38 Update GB Cartridge 2.0 New Serial API closes #17
b502c73e46 Update GB Live Camera 2.0 New Serial API closes #20
d1aafd9028 Update GB Photo 2.0
16c4ea1 Update README.md
16f31e2 v.02 changes
45a32bc Update README.md
8c712cf Update README.md
09291fe removed unused file
0b5a68c Merge branch 'master' of github.com:rdefeo/quac
2d7c8dd added playlist support, cleanup
c70747e Update README.md
c135a68 Create CHANGELOG.md
b884fea Update README.md
58a1ea3 Update README.md
2097b8d Update README.md
13e66a3 Added navigation to readme
4ef694f removed unecessary .gitignore
95afe65 updated .fam
44e0276 Update README.md
e59bd06 Update README.md
c5cc8ef fixed headers and updated screenshot
a6ad631 Update README.md
250ab6f adding screenshots
ca9bd89 Update README.md
c7efc10 Update README.md
e4a1dd8 first commit
01195d6 gblink: Add c++ handling in header
a9feb75 Update GitHub Actions
f12a924 Add submodules to GitHub Action
04b7f69 Update README
0309d11 Update Build Action
4d66035e39 Update README.md
baeacbd212 Fix Write RAM View
377a19a Update Name
404705d91d Update all changelog
4939ce5747 Update all changelog
f2266afb77 Update all changelog
bc5697c1f5 Update all changelog
8366d23c2e Update all changelog
92edda9735 Update README new application names
af905daf9c Update To improve the visibility of the application names, the names were changed by adding a 'MALVEKE' postfix.
5bb7044f69 Update To improve the visibility of the application names, the names were changed by adding a 'MALVEKE' postfix.
e1694e1ac6 Update To improve the visibility of the application names, the names were changed by adding a 'MALVEKE' postfix.
c7ba45e948 Update To improve the visibility of the application names, the names were changed by adding a 'MALVEKE' postfix.
b569a4e025 Update To improve the visibility of the application names, the names were changed by adding a 'MALVEKE' postfix.
183b41c735 Update To improve the visibility of the application names, the names were changed by adding a 'MALVEKE' postfix.
0abb846ac3 Apply ufbt format
e9b4d30d29 Update TODO README.md
f834b59b56 Fix Flipc Link [MALVEKE] GAME BOY Cartridge (GB/GBC) #12
4409c3f6cc Add Acknowledgements
e5906f3733 Update README.md
5d0d4faa5d Add: GAME BOY Photo Application
32a15e79ea Apply Ufbt Format
e3a8872213 Update Catalog ChangeLog
8b31bb929f Update MALVEKE GAME BOY Live Camera version 1.2
b3bb922040 Fix GAME BOY Camera Invert Capture
2c7b4a7 Update README.md
a80dbf2597 Fix backlight on
d33d606 Update README.md
4283f27 Update README.md
2c7e87e Merge pull request #22 from kbembedded/gblink-refactor
920fa56 README: update howto
a6d3c85 Bump to v1.5
db9fa6b pokemon_app: detect if MALVEKE present
a9f399b scenes: pokemon_pins: Initial commit
3759704 trade: initial use of gblink
17daede lib/flipper-gblink: Initial commit, v0.5
805c3da Initial commit
bb9dac7 README: Add link to Flipper GB Link
89c6726aed Fix: add backlight enforce on
d3ce01d Update Links README.md
db3a101f67 Fix icons
e2f57085b8 Fix icons
7acff59a8f Fix icons
fe216246cd Add auto pin hig
9707052bd5 Update images
974641cfd8 Add Flipc images
7275c25998 Add FAP Version
0a8daf1b64 Update README (catalog)
95054f9a24 Update README (catalog)
5028ca0377 Update README (catalog)
2a47e1e450 Update icon
6663c8db78 Update FAP version 6  FAP description
15c70c969b Update FAP version 6  FAP description
1b80c37e77 Update application fam description
948bdbb216 Update Catalog README
50a4fef10b Update Catalog README
1d77ee8aeb Remove tags
d8cc6a768a Remove shortcode
fb4249f722 Add README catalog
35bce9b133 Fix README max level 2 exceeded
209d7cf1ba Fix icon Black&White
902aa40ac6 Add Publish to flipc Apps
c99abad395 Add Publish to flipc Apps
9b36c840b5 Add Publish to flipc Apps
d7c111701b Add Publish to flipc Apps
264fea0739 Add Flipc Docs
04df0352fb Apply ufbt format
c97afa6969 Fix remove settings file
df67690943 Fix: Remove redeclaration
48b3549ca5 Chore: Setting up the environment for publication in the catalog.
d1a2816f56 Apply Ufbt Format
538210f2a4 Added develop GAME BOY Test pins
a91f097f45 Fix GAME BOY Camera Live Directory
f9bfd629d2 Fix MALVEKE Directory app
036ab87a82 Fix GAME BOY Cable Link - Camera
5257144208 Add RAM Restore!
e554f705ad Update README and EXT Connection
8a37d5ce0e Update Branded MALVEKE
d6d2705eb9 Update Branded MALVEKE
23c7cd537e Update Branded MALVEKE
38e5a6e4a7 Update Branded MALVEKE
0fedc83bf4 Update Branded MALVEKE
8fc3d01057 Fix initialized
c8c0b9dfa6 Update GAME BOY Emulator POC
766b52a936 Fix GAME BOY Link Camera
2547ae7868 Add POC GB Emulator
1ce1287908 WIP: write RAM (test serial)
dac3a65d63 Fix cJSON Parse numbers
8865dc78db Fix ROM dump!
8dbd283 workflows: Reduce tag version reqs to run actions
78c99b8 Merge pull request #21 from kbembedded/trade-features
66f34afc5e Merge branch 'main' into v1
6e711254b3 Add WIP GAME BOY ADVANCE app
3ffd91bb71 Merge branch 'main' into v1
a37448cda1 Merge branch 'main' into v1
f242fb5cff Merge branch 'main' into v1
34ab1275fa WIP: GAME BOY ADVANCE App
32493e4 Update TODO, changelog, application.fam, and README.md
ee7ff63 Fix FAP icon
e9b34ac scenes/pokemon_*name: Refuse numbers.
c617ce3 trade: Fixes, features, and improvements
cf97504855 Update README.md
9496103e3f Update README.md
98ac69de7e Update README.md
2177845d83 Add Documentation of Applications
448cd5da2c Add Documentation of Applications
d157fafcf0 Add Documentation of Applications
17a4e002b9 WIP: Transfer RAM
de8ef7d pokemon: Reimplement logging
829df9f1f6 WIP: Dump RAM
ebfa448099 Fix RAM Dump
650f6f2379 Fix Gameboy Camera 5v
3296bb9ac2 Change Submenu -> VariableItemList
c60f6720cf Update Gameboy Live Camera
a98380ed83 Add Marauder first functions
fd16993cf0 Add Marauder first functions
b9acbf17c1 Add Marauder first functions
788848a Create FUNDING.yml closes #15
af79315 Update README.md
c4c2469 Fix format, apply `ufbt format`
4522377 Merge pull request #14 from kbembedded/code-refactor
35db373 Update Version 1.3
5884a74 views/trade: Cease my abuse of View model
5ce0ed1 views/select_pokemon: Cease my abuse of View model
b7a8c92 Fix view_port_update on change pokemon
e54d564 Update README
f0cfb90 docs: Update README and photos with latest
574c485 flipc gallery: Update screenshots from latest
0f71162 changelog: Add changes from R4g3D and myself
ef064d7 Move TODOs in to seperate file
4d65c48 README: Roll back in updates
20f949f pokemon: Refactor, UI update, feature update
1164e99 pokemon: Convert to C from C++
56aceaa pokemon: Clean up includes
783e376 select_pokemon: Use intermediate variable for curr_pokemon
5d8823a select_pokemon: Remove get_view function
fd28f23 pokemon: Refactor party trade struct setup/use
bb3c88f pokemon_data: Clean up comments
a2b8258 pokemon_app: Use species instead of hex for normalizing
bebe8da pokemon_app: Remove Gui in fap struct
4277b04 pokemon: refactor
a75ac8f views/select_pokemon: Refactor input processing
ddc7edb views/trade.cpp: Refactor large cond. blocks to switch
679777e Revert "Added pokemon name, type, level, exp, moves, stats"
87a385a Revert "Fix"
2c83a70 Revert "Added stats selection"
a6d35f1 Revert "Update for added usage"
8428ab0 Revert "Update todo"
3de7c24 Revert "Set pokemon name to act like no nickname"
6fd5098 Revert "Update README"
3779049 Revert "Update README"
d1f4ce5 Revert "Fix Nidoran issue"
50b4da1 Merge pull request #17 from R4g3D/main
d7bcf88 Fix Nidoran issue
4b84b25 Update README
a113ee3 Update README
a712da6 Set pokemon name to act like no nickname
6f54ca2 Update todo
1d25614 Update for added usage
80e3bb4 Added stats selection
e953ecc Fix
01ddb3a Added pokemon name, type, level, exp, moves, stats
6744eb6 Remove reference http
9b02d1d Add README catalog
6e185ee Lint files
e5efe70 Update application.fam
4a5529f Create changelog.md
c09a0e3 Merge pull request #13 from kbembedded/cleanup-data-struct
62a7b2a Merge pull request #12 from kbembedded/fix-furi-crash
82e6961 pokemon_data: move trade array to struct
0e956db pokemon: Clean up pokemon data tables
48d2a09 views/select_pokemon: Clean up select screen
dc12f70 trade: Call furi_hal_gpio_remove_int_callback on CLK
00e7701 pokemon_app.cpp: Clean up double calls in alloc
04e0332 Add GitHub Action Flipper Zero Build
32d081a Merge branch 'main' of https://github.com/EstebanFuentealba/Flipper-Zero-Game-Boy-Trading-Pokemons
7d38674 Update fap version 1.2
7f44cc4 Update TODO list
0fd654f Update cut cable image
1de74f7 Fix cut cable diagram
023f329 Fix cut-cable-v2.png
e4fe638 Update README.md images v2
f1efb9e Fix Frozen `OK` Button, Closes #1
0f6e193 Update Manifest data
b13bf7f Update fap links
b2ffe08 Update README.md
4d0658c Fix svg height
007fc54 Add implemented by
55b027b Fix implemented
c3dd8ff Add implemented svg
4396450 Add Issue template
651adcb Add Implemented in
59370ab Add fap links
c256f31 Update reddit url
e8a4af5 Add note wire colors
6d072de Add Connect without Socket PortData EXT Link
3738fb9 Fix image
eafa3f7 Update: README.md
9526399 Add Images For flipc.org gallery
b9930c2 Fix 🇪🇸 language
dba8774 Update README subtitles
ebf88d3 Merge branch 'main' of https://github.com/EstebanFuentealba/Flipper-Zero-Game-Boy-Trading-Pokemons
5ef9bb8 Fix GBPlay blog URL
0c562bf Update README.md
393fa0d Add  🇺🇸 language
2f3a658 First Commit 🎉
2fd49f0 Initial commit

git-subtree-dir: applications/external
git-subtree-split: 843ad7dc60cd27282fca17d476edd33f61b1a372
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 pushed a commit that referenced this pull request Jun 23, 2024
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
773e4bf Merge pull request #32 from acegoal07/dev
6c2ca1a Update nfc_playlist_scene_emulation.c
1aafa39 Merge pull request #31 from acegoal07/dev
a1526ac Update nfc_playlist_scene_emulation.c
68747a6 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
971f41d Update README.md
29da8eb 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
RogueMaster pushed a commit that referenced this pull request Jul 25, 2024
RogueMaster pushed a commit that referenced this pull request Jul 27, 2024
RogueMaster added a commit that referenced this pull request Jul 29, 2024
7a7f74be1ad T5577 Raw Writer: Use system icon
c3b24c90bb5 Format
6453eadc700 Add t5577_raw_writer from https://github.com/zinongli/T5577_Raw_Writer
38502d54598 Merge seader from https://github.com/xMasterX/all-the-plugins
e41dcd8e0e6 Merge seader from https://github.com/bettse/seader
dc8494512d4 Merge qrcode from https://github.com/bmatcuk/flipperzero-qrcode
a730651 Merge branch 'main' of https://github.com/zinongli/T5577_Raw_Writer
a154ac8 update about screen
5a14b8f Revert "why not allowing changes to block 0"
d337057 Update README.md
374c5a6 Merge branch 'main' of https://github.com/zinongli/T5577_Raw_Writer
c7d8ec0 why not allowing changes to block 0
51ee3ef Merge pull request #7 from zinongli/config_rework
c0cc986 fixed issue. add/edit manually live
6a752e9 byte input functioning but can't be saved yet
13279fb restart add manually. views added.
47e7438 clean up and update comments
55538af clean ups
cbb366c clean ups
88aef3b Update README.md
1fb14cc Update README.md
b8f459c Merge pull request #5 from zinongli/popup
6222b01 minot calculation debug
e2db89b Merge pull request #3 from zinongli/popup
e0f9031 success screen added
c1ea848 Merge pull request #2 from zinongli/popup
7a9ab7d Writing ends after 3 second. Config memory loss fixed.
d86debe07cf fix
e0d2ee8564e upd seader
33b687f writing gui
58c9b45 update to firmware 0.104.0
f054082 example file
28fd381 uncreative fap icon
9e95c2c Update app name
4157699 branch managing
e69c75a initial
df8738a Initial commit
21223f1 Remove unrolling in loclass to save space in memory
3adb8d0 Remove redundant setting of credential type
227c6b8 Improve debug logging
16fa7cd Check for SeaderPollerEventTypeFail
b28f155 typo
493c703 Merge pull request #21 from bettse/apdu_runner
6002037 dry up sam_present call to save ui state
5643b32 reudce SeaderUartTxWorker stack
8b65648 APDURunner
b5c45a9 more use of malloc
0d677d5 use malloc for seader_send_apdu
4aaef3d Dry up seader_send_t1 and use malloc
61724f9 Move display array into function using it
e58f5ef812f upd seader
3361e70 Merge pull request #20 from bettse/t_1
29f36f5 T=1 support

git-subtree-dir: applications/external
git-subtree-split: 7a7f74be1adbdc8f901c5f92d19460f75f105197
RogueMaster added a commit that referenced this pull request Oct 21, 2024
b907dbf7a3 Add debug tool to mount drive.
d929b41ea6 Update badusbdemo for MNTM-008
48ee1bbba0 Update ADC example for MNTM-008
5eb8b97cee Merge branch 'main' of https://github.com/jamisonderek/flipper-zero-tutorials
039a8186b7 Archive old JavaScript files.
9adc9ff9ca Merge pull request #32 from Einstein2150/main
060dde6846 Updated to compile with latest firmware.
2b09689495 Fix deprecated warining
94c5e6587c Updated UART demo. Read w/o delims.
f45e6f5c48 #37 - use clearText api
e6debaf388 Update for latest API + fix hang bug
55db5662ec bitbang for sk9822 LEDs
ae42dc8f84 Add running variable, repaint every message.
9c3127ecf5 remove fap_assets entry.
7bab3a86cd Update for timer demo.
f3b8ae012f Update for best practices
a1358a5642 Add lucky example
e88a6bee81 Merge branch 'main' of https://github.com/jamisonderek/flipper-zero-tutorials
0dac47fc2f ATtiny85 files
e97b313aa2 Update README.md
2ebf199ad4 Simplify app using the LFRFIDReader library
efb1269e02 Merge branch 'main' of https://github.com/jamisonderek/flipper-zero-tutorials
e071459744 Update API. Thanks Addison for bug report!
bd21796c03 Remove HTML from readme
60147e9aa9 move backtick
7520aba1a5 remove _v3 from appid
fdf1984c7c Updates for app store
09ed9f6bd6 Improved timing of notes
3ee4fdfec9 DAC code (needs readme)
1c097bbe7c Fix for fast notes/pauses
34095cf003 readme - backtick not allowed
1eda2bfaba Add screenshots
f97d1b8d84 fmf_to_sub v1.0
c07fbbe530 Merge branch 'main' of https://github.com/jamisonderek/flipper-zero-tutorials
b714ac51f4 JavaScript BigBanging SPI MAX7219
942748870b ChatGPT training for JavaScript
c9c8ecdb95 JavaScript ADC demo.
e3053c4d0d Update with protocol format
307ac450ed LFRFID FSK GEO DEMO
e6acfb405f InstaFob
fcf242ac47 Merge branch 'main' of https://github.com/jamisonderek/flipper-zero-tutorials
bbd40cb103 Initial check-in for T5577
0420e698ee Update Light_on.sub for Matthew's house
546f5f048b Add more pre-build FAL files
3c5019697d Add note about creating .sub files
3f74c682b1 JS: Flipboard
6b9195fb42 Prebuilt files for momentum and official.
c70c4fb65e JS: vgm_sensor tutorial
6b1cc1013e Update README.md
fe2480db16 Updated comments
63154ff02d JS: BadUSB Readme
df144e1753 Delete MP3 file from repo.
1a7616538f Automated JavaScript BadUSB demo
9006626231 Update cookie clicker with updated Bluetooth API.
9c944be2e6 Speaker ffi example
de3e8f323d Intro JS
ca9efc0342 API change requires DateTime.
89f34981b4 Update readme with Fine Tuning directions.
00e2574c5a Fix crash when no VGM. Use void* context (support more input scenarios).
05e629786a IMU Controller
6f17e6eb48 Low frequency RFID spreadsheet
db6b5e4f1a Merge pull request #31 from Willy-JL/air-labyrinth-fixes
4c228ffddf Air Labyrinth: Use PYTHON3 var
36d68f0ebc Update README.md
b17c15ac07 AirLabyrinth: Fix sprites on windows (still precompiled tho)
d27edb92fe AirLabyrinth: Fix for gcc12 toolchain
d5c329739a Merge pull request #28 from kitsunehunter/auto_reader_power
a54146a4af Update readme
9e839e1a79 Update readme
4e33c80125 Add the fxbm asset
e4ac198717 Make assets pre-built
119f4f244e Update readme with v0.1 game image.
f6d509a409 Updated readme
28eb2041c2 Air Labyrinth v0.1
53eed82f55 capturing my notes on security1.0/2.0
fdb828016a Merge branch 'main' of https://github.com/jamisonderek/flipper-zero-tutorials
31ef491bd9 Latest OFW needs this file instead (thanks Prophet)
0662157ca6 Merge branch 'main' of https://github.com/jamisonderek/flipper-zero-tutorials into main
b995a55ef3 Genie Recorder v3
eb39e8bc4a Xtreme/RM now contain the auto-detect patch!
2184839b43 Key 0001 and 0002 using "Protocol: Genie"
95d939cd2a badusb example commands
8792cccfcb delete unused file
809ff21416 A couple of badusb test scripts
393b4febc1 bug fix: free resource
dca8b03b8a clarify this is viewport
97a19a32f6 Updated readme
d617a8503a Update readme
2b940d644f Link to YouTube video - Update README.md
50141c9e74 Update directions for CFW
84e7a70362 automatically supply GPIO power when using read functions to turn on reader
6d812948f3 fix issue #27 - PushPull if connected to GND (reported by llgarrido)
7e4d4a06cb Merge branch 'main' of https://github.com/jamisonderek/flipper-zero-tutorials
8241069354 IR Blaster auto-detect patch for Offical Firmware
a012ec78e0 Version 1.9 - fix first LED "laggy" issue (reported by Z3BRO).
fe3bb3b354 Use logic LOW when not sending data.
9ec25ed0b4 Reduce to 512 LEDS (out of mem) on some FW.
cafdbcc001 Improvements for ws2812b_tester app
216c15dd77 Fix version on application.fam.   Refactor code for COUNT_OF.
774b228856 v1.7: blanking signal.  Reset remaining leds.
6b817ad23e v1.6: Add support for 1000 LEDS, Add "dirty" support to remove update flicker.
606abe7887 Ver1.3: (w35, w36, PACS_ fields, filename)
46a0d76f52 Update readme
49204805cf Merge pull request #18 from kitsunehunter/main
2808278087 Merge pull request #1 from kitsunehunter/Add_Wiegand_Formats_and_Decoding
6e1ced7e8b verbose output off to get to decoded data faster
812c50b41f Add version in About screen.
4abe084717 Reverse direction so single LED goes in RGBW order.
e517031c7c Add LED Speed option
b875cb8103 iOS17.  :)
145067632f Update iOS18 instructions + stop timer on BACK button.
2739089114 Update WS2812B with .flipcorg data
04480cbbe3 WS2812B Tester
447e7ec040 documentation
4db81a96bd edit H10301 decoder to display FC and CN first for consistancy
5004306d9d edit file naming struct for readibility
d9f9ccae08 edit log file encoding for wiegand_load compatibility
d43bc66305 rename RAW_Data to PACS_Binary
742bfc1559 add pm3 command for single step encoding
54785fe8d9 modify log file to provide PACS binary string only for downgrades
07c286642b add decoding formats C10005 and C1k35s
ddb07eaeee Fix bug found by Slackware!
6934ea564d SPI demo w/W25Q32 chip
3d0aed8283 Updated skeleton app
27a50ac914 Update readme
32b40d268a Fix off-by-one bug. Stop clicking when all found.
87df63a3e9 YIKES! BUG COULD HURT YOUR FLIPPER?
5d92a3c39b Add NULL check, just to be safe.
1d10fa2019 Script to make keys.txt into fix.GNE file
88992639c6 Genie v2 - supports custom protocol handler
0f7ab59050 Update readme with warning about fast-forwarding.
45d8c3d723 Add a few genie sub files (no python required).
0c8570244c bug #14: Update x10 remote with latest
7376e5a6e7 Flipper Zero modulation samples
367a8ff09e Merge branch 'main' of https://github.com/jamisonderek/flipper-zero-tutorials
4202990995 genie_recorder 1.3 (no private API)
09b0eed345 Update README.md
12560931d5 Update README.md
4eeafe3357 Thread demo (PWM example)
7595c42fdc Update README.md
1cc4506a6b Add version info.
1569680800 Updated readme and about text.
b6482bfdfd Issue reported by RogueMaster (api_symbols.csv)
90644e11b2 Edit script to allow for multiple numbers.
c0159c6920 Created genie.py for generating a RAW .SUB file
3e463b17b6 Remove crashing bug.
1044c0bf8c Fix crashing bug -- can't append 1000s of times?
54c1f4fd13 Genie GIRUD-1T
fec280d3a5 Genie recorder
88db25b8de remove random_name API call
7e8bdc0559 v1.1 - Add scan code (needs refactor)
384d618485 Fix typo.  :)
1b454277c8 v1.5 (L/R count, OK=flush+CLOSED, signal=vibrate)
46f987a00e Update readme
356f49365b Add support for W48 (H2004064)
7d18e75287 Also increment fap_version
31fbce8209 bug fixes (see changelog)
99e76d6214 update comment.
1b5dfecf20 update .fam file.
d99a059a01 Fix huge delay on Transmit Signal.
be6e4ba9ed Add ver info to readme. Add note about Xtreme DEV.
6ac133d820 Add version to FAP DESC as well.
936221cded Added versioning
61e8fb3d70 Add .flipcorg meta data.
109cbd7b4e Add description and YouTube link
6b0fe23993 Latest updated based on video
c28bf80713 Add Keeloq diagram
aa89a121c4 Added "Test attack" diagram
b44ff0786c Update contact info
c0241ed223 Rolling-Flaws (KeeLoq rolling code teacher)
26104939ab Signal send demo - Aug 22, 2023 session
568f74348f Add skeleton_app for jump starting FZ apps!
68714ad1c5 Merge branch 'main' of https://github.com/jamisonderek/flipper-zero-tutorials
a13cfb712b Update subghz_demo - latest firmware changes.
6921a26905 Update README.md
4d1d89a791 Add Discord info
f370cff1a7 Add "binary counter" effect
e5df7c5e5b Update screenshot
961294756e Version 1.1 (more effects)
593b7dd948 update banner image
b5238d6a6f Add .flipc pictures
6e06cd4550 GPIO Badge v1.0
8dfd5a598a Send princeton signals
37252b745b Merge pull request #13 from LionZXY/catalog/full_description
06a5c43621 Add full description
af269d5c3f Remove doc images
e9022c7eb0 Example of basic_scenes split across files.
4beca0ce95 Add screenshots
00480d1fc8 v1.3 - Echo signals a few times
d931817ae5 Updated README
0112d1cbfe Add license to RPS game
8c3b4e66b2 version 1.2 of RPS
4bf3a47358 Build with: ufbt update --channel=release
b84221eb3c BACK at "play again" should broadcast quit.
a9915dc092 Update RPS for latest API changes
8a782817c7 r15ch13 contribution
3f9554fb07 Add comment about GpioModeAnalog
5c5333e55e Add blink PWM example
ecbb5c037b kilohm https://physics.nist.gov/cuu/pdf/sp811.pdf
d536cf1101 Update per bunni feedback
a0eff12f17 UART demo, making UART read easier.
4c304ac075 Add Blink LED example
7a0540971e SHTC3 app to print id.
1d8134f778 appid must be lowercase in latest firmware
435aad3ecf #3 - update signal for serialize/deserialize
885c465b44 #8 - Add decimal values to id & facility.
bd1b14bb01 Add x,y,m values to instructions.
052f4f8679 fix initialization. add speed.
6fad46cfb2 dev 30.1 RM no longer has DEED macro
d1816692ce 30.x requires [a-z0-9_] for app id
5741fcc57c Added config screen
d922892bea #11 wrong spot - Make click location configurable.
554e36a4f2 Delete plugins/basic_scenes/docs directory
bee1c4c67c Delete basic_scenes.png
d02135a37a Delete basic_scenes.c
2e6174b0d6 Delete application.fam
c7d1b4177d Update README.md
2fb10c8b1f Move Basic_scenes under UI folder
0672ab0b77 ViewDispatcher example
808e0772c2 Simple ViewPort demo - Hello World
d0733985b0 Update README.md
833b1d2a04 Merge branch 'main' of https://github.com/jamisonderek/flipper-zero-tutorials
f1c4a190e6 Add MOSFET support to Wiegand app.
bf381dd765 Update README.md
89b590090e Added link to Visual Guide to FZ GUI Components.
2e17693d87 typo
d5e63fda45 Marauder readme
a7c155e88d Add security topic to readme.
0466503c64 Remove debug spew
8b86b58e88 Move into secret_ssid + README file.
0230baa7e8 Allow acting as ATT wifi.
a829cb7620 Improve comments
25500ab2db Improved SSID encode/scan.
d2740d37e8 Improve comments.
80e445b094 Fix bug + add commented test code.
6ad7d9e2b0 Add scan.ps1 script
f7f6e2a17e fix issue #7 - invoke view_dispatcher_remove_view
bfd76eac24 Merge pull request #6 from Brodan/main
f500d4b577 fix basic_scenes tutorial cleanup function and update readme accordingly
d71c9ee7cd Update README -- deprecated tutorial.
195a8a9265 issues #4 - Wrong pins for I2C
505926825e Add UNUSED to functions
30c9d6d186 Minor updates
257f048fde Update readme to fix typos
3c53683796 Change category to Bluetooth to align with Roguemaster FW naming
e6d61aa22c Initial check-in for hid_cookie
3a1a0c19ab Updated flipc.org files
e8339970c1 add fap_icon_assets_symbol to FAM file
bc1e3e541a Merge branch 'main' of https://github.com/jamisonderek/flipper-zero-tutorials into main
f4703885d4 Fix paths for non-windows systems.
54122eacc3 Updated readme
a49aeb3536 Add prebuilt for Release 0.80.1
ffdd292550 RPS play again signal from remote user.
a5ca0c1976 Viewport code example.
ff73bde3f5 Updated .gitignore
3a312faca8 Add reader and clips to electronics.
74322c1400 Add wiegand to the tutorials readme.
0860e09785 Add install directions for Wiegand.
25caf3752c Initial Wiegand application
e9b37d5b50 Cookie Clicker over bluetooth!
10fee7301b Add link to YouTube series tutorial.
78dfd1bf2e Integrate Karol's feedback on README.md file.
9dd831b58d Renamed image.
84aeb858b7 Improvements to basic scenes tutorial.
fe0490a5a3 Initial draft of Basic Scenes tutorial
2b41dcff2f Update with archived releases
96db4ad485 Update links to direct raw files
029804873a update readme
df12e82738 v1.0 RPS for RC-0.80.0 official fw
d93e358bb6 v1.0 RPS for V0.79.1 official fw
13736cdccd Relaxed timing. Update readme.
c6a176d94a fix freq not available bug w/join w/o games.
2fa4067702 Do not require sync clicking.
1540853283 Play again prompt at end of game.
b96047cd7b Update social info for existing player.
3d1fff533f Support subghz chat messages.
dfe9b6371e Breaking change - Update protocol.
a97e6df1d9 Host exit removes game from list.
a5cc35db5b fix some remote games not added to list.
e7b49ae7b2 Use constants for enter/backspace.
6f43c5bc7b Move social type to separate line.
228f46fea9 Make "edit contact info" first choice.
bf0b8063a7 save/load social preferences.
2ca12eb770 Code cleanup
7d87a22b10 RPS - Allow configuring social info.
c88d5dbf3a Merge branch 'main' of https://github.com/jamisonderek/flipper-zero-tutorials into main
efe95a10de Added sample messages to readme
0fb6fb32d1 Initial code for i2c_demo
418c419171 Initial check-in for scenes demo.
f11f6a86b1 initial checkin for knob_component
97b7900a99 Remove game when another Flipper does a join.
fda2fbcdbb Show past games.
615e307bf5 Save game results w/contact info to SD card.
3e5acab130 Free sender name.
c683a15a5f Host ACKs the join request.
74f931e1f6 Added main menu + join feature.
272a7bc594 Links tool - help me build tutorials w/various fw
72b1d89078 Add vibro on move. Song on game end.
b8db448de7 furi_hal_subghz_is_tx_allowed not in all fw.
8f0c94c1a5 furi_hal_subghz_is_tx_allowed(..) not in all fw.
69f7ee770d Reformat document with VSCode.
9d123a5963 issue #2 - unused var gives errors in latest SDK
b6fef49575 Mesmic Mx2125 Dual-Axis Accelerometer
91da549b6a Demo of GPIO interrupt
4c450f8f9f Error-prone script: convert SUB RAW into CSV!
dd93de7dbf Test to see if BACKSPACE and DELETE keys work.
ba5a8c6749 The usb id triggers  rekordbox fw update.
5c613a19db Youtube: GPIO pull-up/down resistors
f376b55dec Update youtube entries
043013c8c1 Fix my second NRF24L01 to be named correctly.
4475b64c5e Update descriptions
541cf81a61 Update youtube index
5cb69ccedd Merge branch 'main' of https://github.com/jamisonderek/flipper-zero-tutorials into main
ee8e6c9d32 Added first draft of "pins" project
d53407d42b Add electronic tools - iron and logic analyzer
31c9be7ef7 Improved accuracy for hc_sr04 ultrasonic device!
2d35562eeb Copy of original hc_sr04 code
53e18600aa Control 7-segment display with Flipper Zero
668fd49fe3 Merge branch 'main' of https://github.com/jamisonderek/flipper-zero-tutorials into main
681c379419 Basic application with custom canvas draw.
ad34f24762 7-segment link
e565593360 Add link to resistors.
093511c7e7 Add section for wires.
08e9dd6b40 7-segment youtube link
2df8a0766d Add links to electronics videos
1a941f5749 Add links for electronic parts
1d364099a6 Update readme with new youtube video link
d0df56c65d Update README for subghz samples
9783c9fb53 Update readme.
1a7a71e7f1 Add subghz readme files
f23c54ac4f Page with links to YouTube videos
4a881a0f6f Updated application.fam file
7c09c11f9b update readme
dd608f6d8e Add images to rock paper scissors game.
58ccc2ef0b More game states + helper methods
ca5515c8b9 Initial version of rock paper scissors.
4a63e040e8 Add X10 remote samples
43fade6f5f Update readme to have correct png filename
ceaac67386 Updated quantum-fire - filenames&protocol capture.
084bd051e9 Chevy HHR 2006 lock/unlock
8928073d1a Merge pull request #1 from jamisonderek/add-subghz-rx-tx-worker
560788869d Add subghz code + bug fixes.
85a02ebaa9 code with only logging
0e1bc2f6e9 add missing break statements + logging.
b3a68e3743 Bug fixes
6bcde7fd08 Add subghz_demo application.
7cf67362f8 Update appid casing to align with other apps.
a8a2c5376d Add gpio_polling_demo tutorial
b20142a928 Add subghz-samples-quantum-fire to readme.
38c2673899 Quantum-fire fireworks subghz sample recordings.
9c7d138868 Add screen capture images for x10.
56f18ef376 Add another link to firmware-updating tutorial.
8af5eb6834 Update README.md with link to firmware-updating.
8a04b0bbb8 Initial tutorial for firmware-updating.
de30222da1 Update README.md with links to source files.
65721becff Add initial subghz-protocol-x10-decoder project
b8972e54fd Initial commit
REVERT: e32be2d5fd SubGHz Bruteforcer: Fix one/two byte text
REVERT: 92aed8ff2d ESP Flasher: Update Marauder bins to v1.0.0
REVERT: 228d566302 BLE Spam: Can use 20ms again with LFS gone
REVERT: 2a023e8d47 Add support links
REVERT: fa9648df8e Merge t5577_raw_writer from https://github.com/zinongli/T5577_Raw_Writer
REVERT: c9c23b9191 Merge esp_flasher from https://github.com/0xchocolate/flipperzero-esp-flasher
REVERT: f425ad34ee Merge pull request #9 from zinongli/revert-8-patch-1
REVERT: e11cc4947b Fix fap build (#28)
REVERT: 4ded47a932 Revert "Update t5577_writer.c"
REVERT: b65288e391 Revert "Merge t5577_raw_writer from https://github.com/zinongli/T5577_Raw_Writer"
REVERT: c443619d77 Format
REVERT: 072d1b264e Merge t5577_raw_writer from https://github.com/zinongli/T5577_Raw_Writer
REVERT: 021c7ab097 Merge flipbip from https://github.com/xtruan/FlipBIP
REVERT: caf58eb3ff Merge chess from https://github.com/xtruan/flipper-chess
REVERT: 5710cd8249 fix: bump build version, fix warnings
REVERT: 1eae49b977 fix: warning fixes
REVERT: f602636779 fix: test imports
REVERT: de098b00e7 fix: bump version
REVERT: 5f07eee566 Merge pull request #8 from Moon-Byeong-heui/patch-1
REVERT: e2962d9619 Fixes for `-Wundef`
REVERT: 6230b6bf30 Merge totp from https://github.com/akopachov/flipper-zero_authenticator
REVERT: 7d80fbcab7 Merge t5577_raw_writer from https://github.com/zinongli/T5577_Raw_Writer
REVERT: a059814356 Merge seader from https://github.com/bettse/seader
REVERT: a8e7da3aa9 Merge nfc_playlist from https://github.com/acegoal07/FlipperZero_NFC_Playlist
REVERT: 29e2887c24 Merge pull request #34 from acegoal07/dev
REVERT: 27f9aa4132 Update README.md
REVERT: 981c7de774 new file extension check + error messages
REVERT: 8ff87126d4 Update t5577_writer.c
REVERT: 6a35952f5c Update README.md
REVERT: 1a4f688327 Update README.md
REVERT: e33073a7cc 更新 README.md
REVERT: 1aa4e213eb Update README.md
REVERT: b2a4846376 refactor: Xtreme FW is dead
REVERT: fa5371f8f8 Create LICENSE
REVERT: ddf8a8906b exclude a little more from asn1c command
REVERT: cf3d31663b commands for getting size of symbols
REVERT: 7a7f74be1a T5577 Raw Writer: Use system icon
REVERT: c3b24c90bb Format
REVERT: 6453eadc70 Add t5577_raw_writer from https://github.com/zinongli/T5577_Raw_Writer
REVERT: 38502d5459 Merge seader from https://github.com/xMasterX/all-the-plugins
REVERT: e41dcd8e0e Merge seader from https://github.com/bettse/seader
REVERT: dc8494512d Merge qrcode from https://github.com/bmatcuk/flipperzero-qrcode
REVERT: a730651ba2 Merge branch 'main' of https://github.com/zinongli/T5577_Raw_Writer
REVERT: a154ac8ebe update about screen
REVERT: 5a14b8f85a Revert "why not allowing changes to block 0"
REVERT: d337057b9d Update README.md
REVERT: 374c5a68d8 Merge branch 'main' of https://github.com/zinongli/T5577_Raw_Writer
REVERT: c7d8ec0b84 why not allowing changes to block 0
REVERT: 51ee3efbd0 Merge pull request #7 from zinongli/config_rework
REVERT: c0cc9861f9 fixed issue. add/edit manually live
REVERT: 6a752e9da9 byte input functioning but can't be saved yet
REVERT: 13279fb2ed restart add manually. views added.
REVERT: 47e743809d clean up and update comments
REVERT: 55538afde4 clean ups
REVERT: cbb366c07a clean ups
REVERT: 88aef3b60a Update README.md
REVERT: 1fb14cc891 Update README.md
REVERT: b8f459c787 Merge pull request #5 from zinongli/popup
REVERT: 6222b01fc2 minot calculation debug
REVERT: e2db89be85 Merge pull request #3 from zinongli/popup
REVERT: e0f9031173 success screen added
REVERT: c1ea848c11 Merge pull request #2 from zinongli/popup
REVERT: 7a9ab7d7e5 Writing ends after 3 second. Config memory loss fixed.
REVERT: d86debe07c fix
REVERT: e0d2ee8564 upd seader
REVERT: 33b687f6c3 writing gui
REVERT: 58c9b45615 update to firmware 0.104.0
REVERT: f054082f8d example file
REVERT: 28fd381593 uncreative fap icon
REVERT: 9e95c2c9cc Update app name
REVERT: 4157699205 branch managing
REVERT: e69c75a3f8 initial
REVERT: df8738a798 Initial commit
REVERT: 21223f1055 Remove unrolling in loclass to save space in memory
REVERT: 3adb8d0cb4 Remove redundant setting of credential type
REVERT: 227c6b84da Improve debug logging
REVERT: 16fa7cdd0c Check for SeaderPollerEventTypeFail
REVERT: b28f155ee9 typo
REVERT: 493c7031cf Merge pull request #21 from bettse/apdu_runner
REVERT: 60020378c0 dry up sam_present call to save ui state
REVERT: 5643b321e6 reudce SeaderUartTxWorker stack
REVERT: 8b65648c00 APDURunner
REVERT: b5c45a9349 more use of malloc
REVERT: 0d677d5bea use malloc for seader_send_apdu
REVERT: 4aaef3d76a Dry up seader_send_t1 and use malloc
REVERT: 61724f9958 Move display array into function using it
REVERT: e58f5ef812 upd seader
REVERT: 3361e70f8f Merge pull request #20 from bettse/t_1
REVERT: 6d33a43ab5 Format
REVERT: 667b20d74d Merge seader from https://github.com/bettse/seader
REVERT: 1e702c94a5 Merge seader from https://github.com/xMasterX/all-the-plugins
REVERT: 99598b0922 Merge quac from https://github.com/xMasterX/all-the-plugins
REVERT: 8f8480e612 Temp disable MTP app for release
REVERT: a19b63dcb6 bump version
REVERT: 29f36f5d26 T=1 support
REVERT: 766e9ada27 2 byte length in ccid
REVERT: 9d3a7e89d5 mv GET_RESPONSE
REVERT: df7bb05b82 Fix small memory leak switching back to ASN free
REVERT: 69c85f1d85 Set poller to null after free
REVERT: 3b721d37b8 move calloc after size check
REVERT: ace1455918 Change seader_send_apdu to use seader param instead of seader_uart
REVERT: 82300adb33 convert more methods to use seader param instead of seader_uart
REVERT: 236332be71 pull seader_worker changes from T=1 branch
REVERT: b98f39d473 Update seader_ccid_SetParameters arguements
REVERT: 3b1e7215e8 0.104.0 format
REVERT: 7e72e5f52e convert seader_send_nfc_rx to use seader param
REVERT: b0597f975a Change seader_parse_nfc_off to accept seader parameter
REVERT: e5b4647cf8 pull LRC file from branch
REVERT: 7239664de1 Increase thread memory for uart
REVERT: 77ab28fbcc Increase rx buffer size
REVERT: 8270d5117f upd seader
REVERT: 7bba8524b6 upd quac
REVERT: 8bc84893fa Format
REVERT: 4d53723255 Merge totp from https://github.com/xMasterX/all-the-plugins
REVERT: 6b7d599429 Merge seader from https://github.com/bettse/seader
REVERT: 5e93a08c49 Merge seader from https://github.com/xMasterX/all-the-plugins
REVERT: e60c8ae08a Merge quac from https://github.com/rdefeo/quac
REVERT: 193e4352db Change seader_worker_process_sam_message sig
REVERT: fa1f959095 upd totp
REVERT: 72d8238425 upd seader
REVERT: 9bd2759b7b change ccid log prefix
REVERT: b8d24a5bf6 Reduce SeaderUartWorker memory
REVERT: 415169e797 Update CHANGELOG.md
REVERT: 9b4fb7d430 update version to v0.6.2
REVERT: a7f3dfb897 Merge branch 'master' of github.com:rdefeo/quac
REVERT: f848547c85 fixed IR Import when empty, add hint when empty
REVERT: 66968917d5 MTP: Use system icons
REVERT: 67af85443f Format
REVERT: 61fdc0b6ab Add mtp from https://github.com/Alex4386/f0-mtp
REVERT: e6d5a160ce Merge seader from https://github.com/bettse/seader
REVERT: efe995273d Quac: Explain to hold right when emtpy
REVERT: c36c0b5cc7 Quac: Fix IR import busfault when empty
REVERT: c353bd84d6 Show type for MFC
REVERT: 0aaaf5a5f4 change UI when card detected
REVERT: 2882ea383d Validate LRC
REVERT: 727eef07ae chore: clearly state issue
REVERT: d63a35546f Merge totp from https://github.com/akopachov/flipper-zero_authenticator
REVERT: 4670323397 Merge subghz_remote from https://github.com/DarkFlippers/SubGHz_Remote
REVERT: b2c8bdb7dc Merge nfc_magic from https://github.com/flipperdevices/flipperzero-good-faps
REVERT: e95edda112 Merge esp_flasher/lib/esp-serial-flasher/submodules/stm32-cmake from https://github.com/ObKo/stm32-cmake
REVERT: fe2077c82e New formatting
REVERT: 9ac3220fad Empty line after TAGs as per new formatting
REVERT: 6ba386c09e run new fbt format
REVERT: c60236f1e0 Update nfc_magic_scene_not_magic.c (#232)
REVERT: 5f5c92c1a0 Merge pull request #345 from ciuzhienki/master
REVERT: 49bc5c2a2b chore: Updated version
REVERT: 9d43e7b83a feat: added support of multiple BT profiles (#238)
REVERT: d2fd05e478 Merge quac from https://github.com/rdefeo/quac
REVERT: 02269f50c2 Merge picopass from https://github.com/xMasterX/all-the-plugins
REVERT: d03e4267fa Merge esp_flasher/lib/esp-serial-flasher/submodules/stm32-cmake from https://github.com/ObKo/stm32-cmake
REVERT: fd615a8cd5 upd picopass
REVERT: d8f9e07c9f Merge pull request #342 from xanthio/maintenance/dynamic-matrixing
REVERT: e89dfc52ef Merge pull request #344 from xanthio/fix/multicore-tests
REVERT: d8881dc023 Update README.md
REVERT: 6072a9c81c Format for toolchain 37
REVERT: 469eca4e11 Merge wav_player from https://github.com/xMasterX/all-the-plugins
REVERT: 5e947ecdaa Merge seader from https://github.com/xMasterX/all-the-plugins
REVERT: dc34f58c12 Merge picopass from https://gitlab.com/bettse/picopass
REVERT: 3f7aebd9ba Merge picopass from https://github.com/xMasterX/all-the-plugins
REVERT: 10ed09ee6a Merge nfc_playlist from https://github.com/xMasterX/all-the-plugins
REVERT: d87313927a Merge nfc_magic from https://github.com/xMasterX/all-the-plugins
REVERT: bd07d22609 Merge mfkey from https://github.com/xMasterX/all-the-plugins
REVERT: c0bfb03cb2 Merge gps_nmea from https://github.com/ezod/flipperzero-gps
REVERT: 7a8c64dfc9 Merge camera_suite from https://github.com/xMasterX/all-the-plugins
REVERT: 27ff837944 upd nfc magic (merged PRs links in desc)
REVERT: e635457da7 upd camera_suite
REVERT: 39baed393f upd seader
REVERT: fae741171f upd picopass
REVERT: 55d55a15a3 upd nfcplaylist
REVERT: 88c63699b8 upd mfkey
REVERT: 6ef54afba6 Add numbering to NR-MAC parts
REVERT: 6fd741bdd0 Hide info line when auth fails
REVERT: 85010d1c4c Merge pull request #33 from diskfutility/patch-1
REVERT: 0cbe0421ee Format
REVERT: e352a9e0b6 WAV Player: Reconfigure to use 8-bit memory buffer, halving memory usage
REVERT: 0f51370211 Merge jetpack_joyride from https://github.com/timstrasser/flipper-jetpack-game
REVERT: 985c4342fd Merge camera_suite from https://github.com/CodyTolene/Flipper-Zero-Camera-Suite
REVERT: 847f0f0b39 Bump version
REVERT: a9ecea4075 Update changelog
REVERT: 470c1f645b Fix up horizontal flip when camera is rotated 180 degrees
REVERT: dcefdf1c79 Update in-app pinout guide, readme, and version.
REVERT: 866901316b Merge pull request #4 from CookiePLMonster/master
REVERT: ca74bc2b08 Updated to SDK 0.103
REVERT: 6b755858d3 WAV Player: Reconfigure to use 8-bit memory buffer, halving memory usage
REVERT: 400bd29e10 This repo is back
REVERT: fe9887c6a5 Update README.md
REVERT: d93ea95f3c Merge quac from https://github.com/rdefeo/quac
REVERT: 799b27e04f Merge picopass from https://gitlab.com/bettse/picopass
REVERT: b477140d50 updated changelog
REVERT: 401cd19d70 updating minor version
REVERT: 4773c8e126 Fix icons
REVERT: c664278101 ESubGHz Chat: Merge nfclegacy port by xMasterX
REVERT: 4e880dfa7c Add firmware and app version to log
REVERT: f82a5943df Revert "Merge geiger from https://github.com/nmrr/flipperzero-geigercounter"
REVERT: 4049c794c8 Revert "Merge atomicdiceroller from https://github.com/nmrr/flipperzero-atomicdiceroller"
REVERT: f0f16c481a Merge seader from https://github.com/bettse/seader
REVERT: 1a7bde1ab8 Merge qrcode from https://github.com/bmatcuk/flipperzero-qrcode
REVERT: f651f7a4b0 Merge picopass from https://gitlab.com/bettse/picopass
REVERT: d13eb7d89b Merge nfc_rfid_detector from https://github.com/flipperdevices/flipperzero-good-faps
REVERT: 5b1bf1b4b3 Merge nfc_rfid_detector from https://github.com/xMasterX/all-the-plugins
REVERT: fe76bafcd8 Merge nfc_playlist from https://github.com/acegoal07/FlipperZero_NFC_Playlist
REVERT: 8a256b15f4 Merge nfc_magic from https://github.com/flipperdevices/flipperzero-good-faps
REVERT: df861468ec Merge nfc_magic from https://github.com/xMasterX/all-the-plugins
REVERT: 2f3a0e252f Merge mfkey from https://github.com/noproto/FlipperMfkey
REVERT: 6eced5f538 Merge mfkey from https://github.com/xMasterX/all-the-plugins
REVERT: 5758d591ce Merge meal_pager from https://github.com/leedave/flipper-zero-meal-pager
REVERT: 27feab085b Merge magspoof from https://github.com/zacharyweiss/magspoof_flipper
REVERT: cc8e3308c1 Merge ir_intervalometer from https://github.com/Nitepone/flipper-intervalometer
REVERT: 7ccad50192 Merge geiger from https://github.com/nmrr/flipperzero-geigercounter
REVERT: dd559f2894 Merge cross_remote from https://github.com/leedave/flipper-zero-cross-remote
REVERT: edecb75a5b Merge atomicdiceroller from https://github.com/nmrr/flipperzero-atomicdiceroller
REVERT: dbec9cce53 Merge airmouse/lib/lsm6ds3tr-api from https://github.com/STMicroelectronics/lsm6ds3tr-c-pid
REVERT: f35ab2bc6a MFKey 2.7
REVERT: a80d4f530f Bump version to 2.2
REVERT: b109adfff3 Add version to log
REVERT: 3d872e77d6 bug fix (again)
REVERT: f5477fb66b bug fix (again)
REVERT: 153864d2b4 Release driver version 2.0.1
REVERT: 1ebc3ed2ca updated README.md file with tag reference and mdelay description
REVERT: 7c02559868 chore: `MTP_DEVICE_VERSION`
REVERT: e7e54264ad bump application version
REVERT: 64135f4d51 bump version
REVERT: c93309ab3d fix minor typo
REVERT: d60b4e8bb3 bump version
REVERT: ae535f9c1e Handle SAM removal better
REVERT: 7fe02d3632 upd rfid detector
REVERT: 9d520fabdb upd mfkey
REVERT: f327e1a7a0 Merge branch 'elite_keygen' into 'main'
REVERT: e98eda59b4 Update README.md
REVERT: 9abb109aab chore: move device configuration into "define" macro
REVERT: 53734767f1 Add to readme
REVERT: aa572f1dce Add elite keygen attack to UI
REVERT: 99970363e6 Add VB6 RNG
REVERT: ba349ffdd8 [FL-3862] Fix typos in the RFID detector app (#229)
REVERT: 9d49cdf5ad Config cards
REVERT: 560eaa8aa9 sort elite dict, remove a dup
REVERT: 1c7699859c Fix: Update input cb func signature
REVERT: 6c3d87d7da fix gen4 poller nfc magic
REVERT: e8df6e2a0a Fix for new MfUltralightTypeOrigin naming
REVERT: 5935b90a8b Merge pull request #31 from leedave/feature/update_0.103.1-rc
REVERT: 75ed8c9130 Update for compatibility with 0.103.1-rc
REVERT: 3128ca95ca Merge pull request #20 from leedave/feature/conflict_0.103.1-rc
REVERT: c5d7979e7a Formatting
REVERT: bfecd49b95 Code Updats for 0.103.1-rc
REVERT: 34673d7caf NFC Magic: update app with latest API (#223)
REVERT: 20bfacfc42 chore: enhanced debugging
REVERT: 6c59ca5fec Update NOTES.md
REVERT: 11acf7cd78 Update md_links.yml
REVERT: 66731dbe3a Create md_links.yml
REVERT: aa562cc751 Update README.md
REVERT: 773e4bffd5 Merge pull request #32 from acegoal07/dev
REVERT: 6c2ca1a11f Update nfc_playlist_scene_emulation.c
REVERT: 1aafa3919a Merge pull request #31 from acegoal07/dev
REVERT: a1526ac396 Update nfc_playlist_scene_emulation.c
REVERT: 68747a66fe Merge pull request #30 from acegoal07/dev
REVERT: 0ccb606151 New Icon
REVERT: e8e0ea02ca docs: enjoy
REVERT: 95ac73f322 Merge zombiez from https://github.com/xMasterX/all-the-plugins
REVERT: 8c6a4084d8 Merge yatzee from https://github.com/xMasterX/all-the-plugins
REVERT: 46910dd0d1 Merge wav_player from https://github.com/xMasterX/all-the-plugins
REVERT: 32d3582cbd Merge videopoker from https://github.com/xMasterX/all-the-plugins
REVERT: 4b21b4eb23 Merge unitemp from https://github.com/quen0n/unitemp-flipperzero
REVERT: 3f923959d6 Merge uart_terminal from https://github.com/xMasterX/all-the-plugins
REVERT: b96951ef50 Merge tuning_fork from https://github.com/xMasterX/all-the-plugins
REVERT: bd16644ab7 Merge timelapse from https://github.com/theageoflove/flipperzero-zeitraffer
REVERT: 17131b22f4 Merge timelapse from https://github.com/xMasterX/all-the-plugins
REVERT: d9a964cda1 Merge tictactoe from https://github.com/xMasterX/all-the-plugins
REVERT: 07fe9e2166 Merge text_viewer from https://github.com/xMasterX/all-the-plugins
REVERT: a7540d61c0 Merge text2sam from https://github.com/xMasterX/all-the-plugins
REVERT: 3b447f2de8 Merge tetris from https://github.com/xMasterX/all-the-plugins
REVERT: e421ec4b01 Merge t_rex_runner from https://github.com/xMasterX/all-the-plugins
REVERT: 5c56445a4e Merge swd_probe from https://github.com/xMasterX/all-the-plugins
REVERT: 5c28968527 Merge spectrum_analyzer from https://github.com/xMasterX/all-the-plugins
REVERT: c88bb464d4 Merge snake_2 from https://github.com/xMasterX/all-the-plugins
REVERT: 964d4160e3 Merge slots from https://github.com/xMasterX/all-the-plugins
REVERT: 840e221a7a Merge sentry_safe from https://github.com/xMasterX/all-the-plugins
REVERT: 09e1f838f9 Merge scorched_tanks from https://github.com/xMasterX/all-the-plugins
REVERT: 3dcd2f7b93 Merge rubiks_cube_scrambler from https://github.com/xMasterX/all-the-plugins
REVERT: df45fd5c49 Merge rootoflife from https://github.com/xMasterX/all-the-plugins
REVERT: 1a5b5bf92f Merge reversi from https://github.com/xMasterX/all-the-plugins
REVERT: 5c5cac6a20 Merge protoview from https://github.com/xMasterX/all-the-plugins
REVERT: 212c1688e1 Merge pong from https://github.com/xMasterX/all-the-plugins
REVERT: c0b55d9069 Merge pomodoro from https://github.com/xMasterX/all-the-plugins
REVERT: 02348af21b Merge picopass from https://gitlab.com/bettse/picopass
REVERT: 581c5205cf Merge picopass from https://github.com/xMasterX/all-the-plugins
REVERT: 7cc3d20bf2 Merge passgen from https://github.com/xMasterX/all-the-plugins
REVERT: 0a9884f276 Merge paint from https://github.com/xMasterX/all-the-plugins
REVERT: 3f5c9dd690 Merge nightstand_clock from https://github.com/xMasterX/all-the-plugins
REVERT: a62444fe00 Merge music_player from https://github.com/flipperdevices/flipperzero-good-faps
REVERT: 4c8a2add22 Merge multi_fuzzer from https://github.com/DarkFlippers/Multi_Fuzzer
REVERT: d3fa0fc854 Merge multi_converter from https://github.com/xMasterX/all-the-plugins
REVERT: 26b1f9213f Merge morse_code from https://github.com/xMasterX/all-the-plugins
REVERT: 88f348e13e Merge mifare_nested from https://github.com/xMasterX/all-the-plugins
REVERT: 4bf3330175 Merge mifare_fuzzer from https://github.com/xMasterX/all-the-plugins
REVERT: eb3a7009e5 Merge metronome from https://github.com/xMasterX/all-the-plugins
REVERT: ac120110e9 Merge meal_pager from https://github.com/xMasterX/all-the-plugins
REVERT: 513fe8e3a1 Merge magspoof from https://github.com/zacharyweiss/magspoof_flipper
REVERT: 7327df9078 Merge ir_scope from https://github.com/xMasterX/all-the-plugins
REVERT: 6876e7e030 Merge hex_editor from https://github.com/xMasterX/all-the-plugins
REVERT: b66a67a57d Merge heap_defence from https://github.com/xMasterX/all-the-plugins
REVERT: 324384f292 Merge gps_nmea from https://github.com/xMasterX/all-the-plugins
REVERT: ea31fb23b9 Merge gpio_reader_a from https://github.com/xMasterX/all-the-plugins
REVERT: 954606b86f Merge geiger from https://github.com/xMasterX/all-the-plugins
REVERT: 84c208e863 Merge game_of_life from https://github.com/xMasterX/all-the-plugins
REVERT: fbc97907b4 Merge game15 from https://github.com/xMasterX/all-the-plugins
REVERT: 2a517535bb Merge flappy_bird from https://github.com/xMasterX/all-the-plugins
REVERT: 68a24b5675 Merge esubghz_chat from https://github.com/xMasterX/all-the-plugins
REVERT: ff07fb32f8 Merge dtmf_dolphin from https://github.com/xMasterX/all-the-plugins
REVERT: f4547e55e2 Merge doom from https://github.com/xMasterX/all-the-plugins
REVERT: 7f0a86f0cf Merge counter from https://github.com/xMasterX/all-the-plugins
REVERT: c3ec58242c Merge cntdown_timer from https://github.com/xMasterX/all-the-plugins
REVERT: 3ffae9b1f4 Merge calculator from https://github.com/xMasterX/all-the-plugins
REVERT: 6a810a87a7 Merge caesarcipher from https://github.com/xMasterX/all-the-plugins
REVERT: 56d94676c4 Merge bt_trigger from https://github.com/xMasterX/all-the-plugins
REVERT: 09a210988d Merge bpmtapper from https://github.com/xMasterX/all-the-plugins
REVERT: 65026dc34e Merge bomberduck from https://github.com/xMasterX/all-the-plugins
REVERT: 545fc1793f Merge barcode_gen from https://github.com/xMasterX/all-the-plugins
REVERT: 7801583e55 Merge asteroids from https://github.com/xMasterX/all-the-plugins
REVERT: 02e17637e2 Merge arkanoid from https://github.com/xMasterX/all-the-plugins
REVERT: 4a0f46b916 Merge airmouse from https://github.com/ginkage/FlippAirMouse/
REVERT: 476b1e6e96 Merge 4inrow from https://github.com/xMasterX/all-the-plugins
REVERT: 751d3614df Merge 2048 from https://github.com/xMasterX/all-the-plugins
REVERT: 3dba39fb7d readme updates
REVERT: ae4097ddd0 Improvements
REVERT: 3b8a10c537 music_player: fix icon (#220)
REVERT: b2cc1c3188 music_player: update api v.65.0 (#219)
REVERT: ff023e9fe5 free properly
REVERT: 395f6971dd fix barcode and nightstandclock
REVERT: 54c0bee5e6 fix barcode and nightstandclock
REVERT: 25647899dc redraw manually just in case
REVERT: 8160312416 redraw manually just in case
REVERT: 6d88124989 redraw manually just in case
REVERT: df7d630baa redraw manually just in case
REVERT: 85ba7c4e76 redraw manually just in case
REVERT: 159d2d9363 fix icons
REVERT: 37b490f81e fix icons
REVERT: c5efd93f3e fix icons
REVERT: 4d2208046a fix icons
REVERT: 0b70fe9da6 fix icons
REVERT: 8614854d40 fix icons
REVERT: 5ec155d2d0 fix icons
REVERT: 98a07685f8 bump versions for catalog
REVERT: a12fe83a3d bump versions for catalog
REVERT: 064f5c917a bump versions for catalog
REVERT: 888760a6eb bump versions for catalog
REVERT: 46a25c9a99 bump versions for catalog
REVERT: 9480148fe7 bump versions for catalog
REVERT: 85c97cedd2 bump versions for catalog
REVERT: 4e470d657e bump versions for catalog
REVERT: ed8a2172a5 bump versions for catalog
REVERT: 0c242324ec bump versions for catalog
REVERT: 780ea66fd6 bump versions for catalog
REVERT: 04e2d67918 bump versions for catalog
REVERT: cd73fd6591 bump versions for catalog
REVERT: 9a79056432 bump versions for catalog
REVERT: db1b20479f bump versions for catalog
REVERT: 99b4ca8abd bump versions for catalog
REVERT: 2629a89b5a bump versions for catalog
REVERT: dfa6a00ae2 bump versions for catalog
REVERT: cf2bcecd8f bump versions for catalog
REVERT: 831c30e7ec bump versions for catalog
REVERT: 1cf34a02af bump versions for catalog
REVERT: 753d5e87e8 bump versions for catalog
REVERT: a128abfc46 bump versions for catalog
REVERT: 22773dd5fb bump versions for catalog
REVERT: 27178f24af bump versions for catalog
REVERT: 6e118d6351 bump versions for catalog
REVERT: bb4b930c90 bump versions for catalog
REVERT: 7d0551e6bf bump versions for catalog
REVERT: 82a62de1cb bump versions for catalog
REVERT: 75187bca10 bump versions for catalog
REVERT: aa1a784196 bump versions for catalog
REVERT: 5ead19f039 bump versions for catalog
REVERT: b69782a703 bump versions for catalog
REVERT: 7b6ad38214 bump versions for catalog
REVERT: 3097866176 bump versions for catalog
REVERT: ba125ba96a bump versions for catalog
REVERT: 9b69fd2650 bump versions for catalog
REVERT: 72d1202d2b bump versions for catalog
REVERT: a0ebaa40e8 bump versions for catalog
REVERT: d15c46cbdd bump versions for catalog
REVERT: 0e73e6defe bump versions for catalog
REVERT: 3ead308d2c bump versions for catalog
REVERT: a7027fb677 bump versions for catalog
REVERT: fcdac3ec69 bump versions for catalog
REVERT: 09f1108a29 bump versions for catalog
REVERT: 11a20f1c4e bump versions for catalog
REVERT: 64dd1b4b0f bump versions for catalog
REVERT: 9c053b5473 bump versions for catalog
REVERT: 864553ff77 bump versions for catalog
REVERT: 22f14bc791 bump versions for catalog
REVERT: 4e0f2a6efd bump versions for catalog
REVERT: 61d040accb bump versions for catalog
REVERT: a7769b1d6f bump versions for catalog
REVERT: 20dcb663bc Compatibility to API 65.0
REVERT: 6200aa1757 Compatibility to SDK 65.0 f7
REVERT: 2ecfcd857d limit TD to fix crash and bump version
REVERT: 21eb0fbb31 Replace 'Elite Dict Attack' with 'Read' in instrunctions
REVERT: 6da212763a free up some space in mifare nested too
REVERT: 1c11c09507 free some memory in esubghz chat
REVERT: 50d56159c6 Update CHANGELOG.md
REVERT: 8f99cf97d2 Merge pull request #37 from jamisonderek/master
REVERT: de97ad1436 Fix return values
REVERT: a69929f346 Fix duplicate defines
REVERT: 2c332a9636 fix reuse of define
REVERT: 556f7830d5 upd picopass
REVERT: 852769ef72 Update README.md
REVERT: 3b83638df7 Update README.md
REVERT: 62fb6ed463 v1.5 (build on 102.3)
REVERT: 27de47368e Update README.md
REVERT: e6120e52e7 Update changelog
REVERT: b1f62c97de Fix RAM size output of stm32_get_memory_info
REVERT: f723e6f700 Update README.md
REVERT: 473c89298a Update README.md
REVERT: 2b9504a675 docs: line feed
REVERT: 31055cdaa1 docs: note
REVERT: fb85463a23 chore: slow:tm:
REVERT: fd89918927 chore: properly implement recursive deletion
REVERT: 894455d0d3 chore: prevent memory leak on exit
REVERT: 4b6edc8a66 feat: allow deleting directories
REVERT: daa10635dc docs: add streaming support
REVERT: f60d3a9a53 docs: add large file transfer support
REVERT: 85a19dea72 feat: `send_mtp_response_stream` now works.
REVERT: 426aeafff1 chore: implement `send_mtp_response_stream`
REVERT: 976cb43c41 Merge esp_flasher/lib/esp-serial-flasher/submodules/stm32-cmake from https://github.com/ObKo/stm32-cmake
REVERT: 33e2f7009c Fix bulk update for subdirs
REVERT: e0b5fee942 Merge picopass/plugin from https://gitlab.com/bettse/flipper-wiegand-plugin
REVERT: 5755285fdc Merge picopass from https://gitlab.com/bettse/picopass
REVERT: 2eb2c36aeb chore: reimplement streaming GetObject
REVERT: e6d5856e15 bump plugin
REVERT: bbc0157341 more acknowledgement line breaks
REVERT: 6f2d8520a3 bump plugin
REVERT: dde6192486 Add H10302, fix H10304
REVERT: 10bad06f67 bump plugin
REVERT: 5e2e8b25d2 clang-format
REVERT: aa476ad225 H10304
REVERT: aae801448d Fix the typo that made the test not creating executable for second core
REVERT: 2557bd6a2e find CMSIS only for family under test
REVERT: 03d6c9fe49 docs: add explanation that it is youtube link
REVERT: e1086bb79f docs: update landing page
REVERT: e9f0420ecf docs: add youtube
REVERT: 56b39f8e24 docs: add UCS-2 Windows Unicode rant
REVERT: 033b86a29e chore: UCS-2
REVERT: 4dccca2528 docs: update to match with current features
REVERT: c9bc43a1ef feat: allow deleting apps
REVERT: a15f66c028 Merge pokemon_trading from https://github.com/EstebanFuentealba/Flipper-Zero-Game-Boy-Pokemon-Trading
REVERT: 531c6d4f67 Merge nfc_playlist from https://github.com/xMasterX/all-the-plugins
REVERT: c6655ffc11 Merge mifare_nested from https://github.com/xMasterX/all-the-plugins
REVERT: 35f8af15f8 Merge gps_nmea from https://github.com/ezod/flipperzero-gps
REVERT: d371767d60 Merge esubghz_chat from https://github.com/xMasterX/all-the-plugins
REVERT: 79751e5913 Merge airmouse from https://github.com/xMasterX/all-the-plugins
REVERT: 4e04a13d9a Merge branch 'main' of https://github.com/Alex4386/f0-mtp
REVERT: 960d5140b4 feat: implement basic SendObjectInfo
REVERT: 24769ce8e3 Update FUNDING.yml
REVERT: 7603594658 Update nfc_playlist_scene_emulation.c
REVERT: 6123d66185 chore: add license
REVERT: 6d5238e1fd docs: add image
REVERT: ade62e9166 docs: update docs
REVERT: b7ef842c39 docs: update docs
REVERT: c5b34ec5ac feat: implement mtp
REVERT: 00587b4061 feat: basic mtp
REVERT: e384834f4a Merge pull request #32 from AEtherC0r3/add_m10q-5883
REVERT: f6cf995e68 Add M10Q-5883 to the list of tested modules
REVERT: 783fd93617 upd nfc playlist
REVERT: bfc2840c78 upd airmouse
REVERT: 1b4c21b68c fix build
REVERT: 6e0b27b3ed fix build
REVERT: d6e56cf65b Airmouse: Update name for LSM6DSO
REVERT: 56ac7d818f Fix nfclegacy
REVERT: 797864056e Format
REVERT: cd4879a178 Add airmouse/lib/lsm6ds3tr-api from https://github.com/STMicroelectronics/lsm6ds3tr-c-pid
REVERT: a369e5ecf1 Add airmouse/lib/lsm6dso-api from https://github.com/STMicroelectronics/stm32-lsm6dso
REVERT: 4f3c5f303b Add airmouse/lib/bmi160-api from https://github.com/boschsensortec/BMI160_SensorAPI
REVERT: 1a63f9260f Submodules
REVERT: 4d953ae718 Merge timelapse from https://github.com/xMasterX/all-the-plugins
REVERT: dd67e14042 Merge nightstand_clock from https://github.com/xMasterX/all-the-plugins
REVERT: d8cd9248c9 Merge nfc_playlist from https://github.com/acegoal07/FlipperZero_NFC_Playlist
REVERT: d6c633d9c6 Fix merge
REVERT: 31c8d467b2 Merge zombiez from https://github.com/xMasterX/all-the-plugins
REVERT: 211f931025 Merge wiiec from https://github.com/xMasterX/all-the-plugins
REVERT: 41992e4dc8 Merge wifi_scanner from https://github.com/xMasterX/all-the-plugins
REVERT: 824e458de0 Merge videopoker from https://github.com/xMasterX/all-the-plugins
REVERT: cf56337b20 Merge tuning_fork from https://github.com/xMasterX/all-the-plugins
REVERT: cfb26b3b62 Merge totp from https://github.com/xMasterX/all-the-plugins
REVERT: fad2bd459d Merge tictactoe from https://github.com/xMasterX/all-the-plugins
REVERT: 70139865ee Merge tetris from https://github.com/xMasterX/all-the-plugins
REVERT: 9f0ea5d9af Merge tanks from https://github.com/xMasterX/all-the-plugins
REVERT: 21fccf6fba Merge tama_p1 from https://github.com/xMasterX/all-the-plugins
REVERT: 651261b912 Merge t_rex_runner from https://github.com/xMasterX/all-the-plugins
REVERT: e29261eb57 Merge subghz_playlist from https://github.com/xMasterX/all-the-plugins
REVERT: 9c3a426970 Merge solitaire from https://github.com/xMasterX/all-the-plugins
REVERT: 585ec84172 Merge snake_2 from https://github.com/xMasterX/all-the-plugins
REVERT: 033e9e1030 Merge slots from https://github.com/xMasterX/all-the-plugins
REVERT: 4188ee9b00 Merge sentry_safe from https://github.com/xMasterX/all-the-plugins
REVERT: a0bb541547 Merge scorched_tanks from https://github.com/xMasterX/all-the-plugins
REVERT: c25a108c5d Merge rootoflife from https://github.com/xMasterX/all-the-plugins
REVERT: e0361baa6b Merge rc2014_coleco from https://github.com/xMasterX/all-the-plugins
REVERT: 97b5a2d29e Merge quac from https://github.com/rdefeo/quac
REVERT: 1ba815bc8e Merge quac from https://github.com/xMasterX/all-the-plugins
REVERT: 2c8406fd98 Merge qrcode from https://github.com/bmatcuk/flipperzero-qrcode
REVERT: fc30e1249f Merge qrcode from https://github.com/xMasterX/all-the-plugins
REVERT: 29359baebe Merge picopass from https://github.com/xMasterX/all-the-plugins
REVERT: d72b7c7e8d Merge passgen from https://github.com/xMasterX/all-the-plugins
REVERT: 58b0e1bb6a Merge nrf24sniff from https://github.com/xMasterX/all-the-plugins
REVERT: 932728cd43 Merge nrf24scan from https://github.com/xMasterX/all-the-plugins
REVERT: de9f481eed Merge nrf24mousejacker from https://github.com/xMasterX/all-the-plugins
REVERT: 8f4489c4f8 Merge nrf24batch from https://github.com/xMasterX/all-the-plugins
REVERT: 09d3708899 Merge music_player from https://github.com/xMasterX/all-the-plugins
REVERT: 5854f7a391 Merge multi_converter from https://github.com/xMasterX/all-the-plugins
REVERT: 9866280eec Merge morse_code from https://github.com/xMasterX/all-the-plugins
REVERT: 9ad05917e5 Merge mifare_nested from https://github.com/xMasterX/all-the-plugins
REVERT: 82a27018bf Merge mfkey from https://github.com/xMasterX/all-the-plugins
REVERT: e50f3c0eb4 Merge metronome from https://github.com/xMasterX/all-the-plugins
REVERT: 5eded3f256 Merge meal_pager from https://github.com/leedave/flipper-zero-meal-pager
REVERT: 16781ae844 Merge mayhem_qrcode from https://github.com/eried/flipperzero-mayhem
REVERT: 2895fcc468 Merge mayhem_nannycam from https://github.com/eried/flipperzero-mayhem
REVERT: 7fe3710f78 Merge mayhem_motion from https://github.com/eried/flipperzero-mayhem
REVERT: 20c638eeba Merge mayhem_morseflash from https://github.com/eried/flipperzero-mayhem
REVERT: 253a9baac7 Merge mayhem_marauder from https://github.com/eried/flipperzero-mayhem
REVERT: 3d277c5063 Merge mayhem_camera from https://github.com/eried/flipperzero-mayhem
REVERT: c15462aa41 Merge jetpack_joyride from https://github.com/xMasterX/all-the-plugins
REVERT: 6024e545ed Merge ir_intervalometer from https://github.com/xMasterX/all-the-plugins
REVERT: 51ee0957a3 Merge ifttt from https://github.com/xMasterX/all-the-plugins
REVERT: de1404f47c Merge heap_defence from https://github.com/xMasterX/all-the-plugins
REVERT: 5668416d85 Merge hc_sr04 from https://github.com/xMasterX/all-the-plugins
REVERT: a25ff33747 Merge gps_nmea from https://github.com/xMasterX/all-the-plugins
REVERT: 5fbed3ef47 Merge gpio_reader_a from https://github.com/xMasterX/all-the-plugins
REVERT: eccc8028b9 Merge game_of_life from https://github.com/xMasterX/all-the-plugins
REVERT: 7bc7e57910 Merge game15 from https://github.com/xMasterX/all-the-plugins
REVERT: a9c3c7575d Merge flashlight from https://github.com/xMasterX/all-the-plugins
REVERT: ee516f63d9 Merge flappy_bird from https://github.com/xMasterX/all-the-plugins
REVERT: d216a3ca0b Merge esubghz_chat from https://github.com/xMasterX/all-the-plugins
REVERT: 63fc519df7 Merge esp8266_deauth from https://github.com/xMasterX/all-the-plugins
REVERT: 5b6ef11052 Merge doom from https://github.com/xMasterX/all-the-plugins
REVERT: 667ce94f7a Merge counter from https://github.com/xMasterX/all-the-plugins
REVERT: eda39d6cf3 Merge bt_trigger from https://github.com/xMasterX/all-the-plugins
REVERT: 0c32924e91 Merge bpmtapper from https://github.com/xMasterX/all-the-plugins
REVERT: c32d7c0881 Merge blackjack from https://github.com/xMasterX/all-the-plugins
REVERT: 5252e2a66c Merge arkanoid from https://github.com/xMasterX/all-the-plugins
REVERT: 826319f8de Merge airmouse from https://github.com/ginkage/FlippAirMouse/
REVERT: 55ce1d363d fix mutex
REVERT: 6e1d9e6538 fix mutex
REVERT: e668dd614b fix mutex
REVERT: 9f6b0f02cd fix mutex
REVERT: 166b3416f6 fix mutex
REVERT: 605aedd601 fix mutex
REVERT: 1ac00c09b9 fix mutex
REVERT: 6327794822 fix mutex
REVERT: 6a82ca5448 fix mutex
REVERT: 19b726071b tweaks
REVERT: 53cf805358 fix for latest API
REVERT: 9714bb986c fix for latest API
REVERT: 6aa2b8460a chore: oof
REVERT: 9fe3a70dfb oof
REVERT: e5abf9d271 oof
REVERT: eb86e1809d oof
REVERT: b58e3f6995 oof
REVERT: bfb91d4b53 oof
REVERT: c5c3c93577 oof
REVERT: 077e164823 oof
REVERT: 3b531a7327 oof
REVERT: bcaeabeac2 oof
REVERT: 239547643b oof
REVERT: 09093d8cfc oof
REVERT: 4bcbbfbf5c oof
REVERT: 2146bfb521 oof
REVERT: c55063cb06 oof
REVERT: db86c3f0e3 oof
REVERT: 8a931ab0d7 oof
REVERT: 727ca78c69 oof
REVERT: cac87059ee oof
REVERT: 75cc2baec6 oof
REVERT: c55958755f oof
REVERT: c887f38261 oof
REVERT: 82670f4230 oof
REVERT: 19c5ebf73a oof
REVERT: a6b1fb4323 oof
REVERT: eb305f2251 oof
REVERT: c94a688176 oof
REVERT: b3ecb7bee8 oof
REVERT: a0307492f7 oof
REVERT: 25deaa2e14 oof
REVERT: e8d76ee3ce oof
REVERT: 911dc02975 oof
REVERT: b77be5c0a1 oof
REVERT: 84d5fb71f6 oof
REVERT: e2ea680535 oof
REVERT: 416afdf972 oof
REVERT: fd6907e2f1 oof
REVERT: 2c697810d3 oof
REVERT: a02810fb49 oof
REVERT: 5edd7f8d77 oof
REVERT: 1b5b3fe937 Map axes correctly for the test module
REVERT: 1475270904 upd picopass
REVERT: 2176d60767 upd totp
REVERT: c147f5226a upd subghz playlist
REVERT: 75ab10560f upd quac
REVERT: 17209cd7b9 upd ifttt
REVERT: 3e65a46e5d Add error message if the module is not connected
REVERT: d03534440b A little more cleanup and styling fixes
REVERT: 4170177508 Clean up driver headers
REVERT: 79e9154fc2 Merge pull request #23 from alex-vg/lsm6dso
REVERT: ee94679eaf Revert "split matrix creation into steps"
REVERT: e067e06b7e split matrix creation into steps
REVERT: 44f11fea68 update companions to newer fz sdk
REVERT: 5df3d5a079 update companions to newer fz sdk
REVERT: ecc4103664 update companions to newer fz sdk
REVERT: 216b97358e update companions to newer fz sdk
REVERT: 4f806b2ec7 update companions to newer fz sdk
REVERT: 07ab42f016 update companions to newer fz sdk
REVERT: 924f84afd7 chore: oof
REVERT: 429190f1bc chore: tmp
REVERT: 971f41d157 Update README.md
REVERT: 6f353a5762 chore: minimum work for at least get usb to work
REVERT: e3b83f3401 chore: mtp
REVERT: 29da8eb0cc Merge pull request #29 from acegoal07/dev
REVERT: c65c6e73b1 More fixes
REVERT: 4b632c0c98 chore: implement example MTP page
REVERT: 7813960912 docs: add docs
REVERT: 7c9305717d Fixes + Cutbacks
REVERT: a661759a06 Merge pull request #30 from leedave/feature/updateCategory
REVERT: 13d45e99fd Update Category capitalization
REVERT: ee67ad2027 update to firmware 0.102.3
REVERT: 51063afd56 VGM Tool: Add new RGB firmware
REVERT: cd30043aa7 change icon_get_data to icon_get_frame_data
REVERT: e2ad6a178d Merge pull request #8 from Willy-JL/some-fixes
REVERT: d2432a5949 Merge totp from https://github.com/akopachov/flipper-zero_authenticator
REVERT: d1616805dc Merge picopass from https://gitlab.com/bettse/picopass
REVERT: be1902125f Merge metronome from https://github.com/ezod/flipperzero-metronome
REVERT: 6b28f54d1f Merge meal_pager from https://github.com/leedave/flipper-zero-meal-pager
REVERT: b9e2817058 Merge gps_nmea from https://github.com/ezod/flipperzero-gps
REVERT: 122854ecfd Merge bpmtapper from https://github.com/ezod/flipperzero-bpm-tapper
REVERT: cfecf81528 Fix for API change, wrap message queue in container.
REVERT: 068b44ddb9 Fix for API change, wrap message queue in container.
REVERT: 25fe22c3dd Merge pull request #31 from ezod/wrap-message-queue
REVERT: 965dcbee9f Fix for API change, wrap message queue in container.
REVERT: 7d823837cb 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
REVERT: 5c277a9a36 Improvements
REVERT: bf3e463b68 Format
REVERT: 5d75907c6b Update for new message queue
REVERT: 30ce6bcc22 added dynamic lib usage depending on i2c address
REVERT: b7f561bfdd refactored imu headers
REVERT: 9bdc6ab5d3 Merge pull request #29 from leedave/feature/refactors
REVERT: 98e83eb086 Format
REVERT: 90f40dd985 chore: Updated version
REVERT: 514a494cf9 fix: `totp export` command uses the wrong format to print url-encoded symbol.
REVERT: 9ab87604dc Refactors from xMasterX & WillyJL
REVERT: c5eecfdce7 moved checked in drivers to submodules
REVERT: 946e42468a added lsm6dso version
REVERT: a00bc10f6a Fix subghz actions
REVERT: 1fb63f0d97 SubGHz Playlist: Fix crash with region lock
REVERT: ae55aa3176 SubGHz Playlist: Show item play fail, some UI fixes
REVERT: a442bf147c Ethernet: Same appid for compatibility
REVERT: e81e67e716 acknowledgements
REVERT: f245471ff7 Quac!: Fix SubGHz protocols and crash (#11)
REVERT: 3cad714758 IFTTT: Fix memleaks and wrong free's (#10)
REVERT: 0e7428b6b3 tweaks
REVERT: 8706bacad2 Remove redundant extra API
REVERT: 7b65d07fba Merge pokemon_trading from https://github.com/EstebanFuentealba/Flipper-Zero-Game-Boy-Pokemon-Trading
REVERT: 47eb81ffd3 Merge magspoof from https://github.com/zacharyweiss/magspoof_flipper
REVERT: 282237f7ce Merge pull request #24 from kbembedded/main
REVERT: 16a33e86a5 application.fam: Update for 2.0
REVERT: a76f7602de Update dependabot.yml
REVERT: 719d3d12f2 Create dependabot.yml
REVERT: 2b4ac9adf5 feat: implement scene manager based implementation
REVERT: f232070e06 Explain multiple subtree remotes
REVERT: f1e3cee9eb Fix typo
REVERT: 0a277a49c3 Fix manifest
REVERT: bd712c367f Merge seader from https://github.com/xMasterX/all-the-plugins
REVERT: cd756a1d42 Merge reversi from https://github.com/xMasterX/all-the-plugins
REVERT: 8d2d345c4f Merge nfc_playlist from https://github.com/xMasterX/all-the-plugins
REVERT: b1102cb9be Merge hex_viewer from https://github.com/QtRoS/flipper-zero-hex-viewer
REVERT: 4554255059 Merge flipbip from https://github.com/xMasterX/all-the-plugins
REVERT: e96183c398 Merge cntdown_timer from https://github.com/0w0mewo/fpz_cntdown_timer
REVERT: edfe8fffc5 Merge cntdown_timer from https://github.com/xMasterX/all-the-plugins
REVERT: 333dcf9b2e Merge chess from https://github.com/xMasterX/all-the-plugins
REVERT: 30563727e8 Tone Generator: Add indicator (by Matt)
REVERT: 771d833721 Fix merge
REVERT: 798311b9b7 Add tone_gen from https://github.com/GEMISIS/tone_gen
REVERT: 024ba3e2b0 Second remote for tone_gen
REVERT: 815c2914eb Add tone_gen from https://github.com/xMasterX/all-the-plugins
REVERT: 0f0dd9c90a Add tone_gen with subtree instead
REVERT: b3b8e1506a docs: index-url needs to be updated
REVERT: 452d10061b Merge pull request #6 from prplecake/fix-exit-crash
REVERT: 3a8d08c918 docs: update docs to wrap with parenthesis
REVERT: f1813ba454 chore: add resources and demo app
REVERT: eb1e312b34 Dynamically create family matrix for CI jobs
REVERT: 4876547c11 Update deprecated checkout action to revision
REVERT: 69be2f017d upd seader
REVERT: 768bbeab99 update nfc playlist
REVERT: 73d586d327 upd flipbip
REVERT: 9df1acbbf4 upd chess
REVERT: 369b66d72b Merge pull request #341 from xanthio/maintenance/split-devices-in-family-files
REVERT: 6e82cea3bd update reversi
REVERT: 2c140f1edd Improvements
REVERT: 6fa0239e44 Tweaks
REVERT: 416e22ff4b Tweaks
REVERT: 8834bfafa5 Catch exception on 'expected_count' < 0
REVERT: 748c3e496f Bump to v1.4
REVERT: 2e370554bb Minor changes
REVERT: ef535bc3e2 Minor changes.
REVERT: 1012b45ba4     countdown timer: make digit selection wrap when pressing right
REVERT: fce19e3ef6     countdown timer: Fix divide-by-zero crash when setting time to 00:00:00
REVERT: 2d24e1ac9d countdown timer: use a custom alert sequence for time-up alarm
REVERT: 4396569292 Uniform
REVERT: 8c7d75571b Add Tone Generator by GEMISIS
REVERT: e57513706a Merge seader from https://github.com/bettse/seader
REVERT: 0726f8e92e roll back a few free that are on decoded structs
REVERT: 9633df8f98 Format
REVERT: 831c7dc3e1 Merge nfc_playlist from https://github.com/acegoal07/FlipperZero_NFC_Playlist
REVERT: e1e3243914 Merge magspoof from https://github.com/zacharyweiss/magspoof_flipper
REVERT: b1ed211346 Merge flipbip from https://github.com/xtruan/FlipBIP
REVERT: 1f27ffd0b5 Merge cntdown_timer from https://github.com/0w0mewo/fpz_cntdown_timer
REVERT: 03ecedf7fb Merge chess from https://github.com/xtruan/flipper-chess
REVERT: d57c045b8f Merge pull request #19 from Willy-JL/fix-double-free
REVERT: d480fea016 countdown timer: make digit selection wrap when pressing right
REVERT: 163db32a21 countdown timer: Fix divide-by-zero crash when setting time to 00:00:00
REVERT: 670a5c6029 countdown timer: use a custom alert sequence for time-up alarm
REVERT: 85d1291dc7 Correct syntax for gh cli pr to upstream from fork
REVERT: 2a7c0d72f8 Add auto-pr logic; bump action ver
REVERT: a582863f8a Fix for TLSF allocator crashes
REVERT: ed77fb2cc6 Seader: Fix for TLSF allocator crashes
REVERT: 333894fdfe images: update images used in app catalog
REVERT: 8dd469995d README_catalog: update app catalog README with latest
REVERT: 1f863525a6 README: update with latest features
REVERT: 678bfdd307 changelog: update with 2.0 changes
REVERT: 833f02e218 pokemon_pins: note MALVEKE pinout as <= rev 2.5
REVERT: 22ce90b906 pokemon_data: update for new sprite sizes
REVERT: a32c6f111c sprites: custom sprites
REVERT: 9c62035222 sprites: add custom sprites
REVERT: 1c88c1a678 trade: turn on backlight with each byte received over EXT
REVERT: 9359890e53 trade: do dolphin deed after a completed trade
REVERT: 7e5b99c26d assets: add surprised pika for exit conf
REVERT: d2c52abb7e gblink: bump to v0.61
REVERT: 33d56d9c11 gitignore: ignore dist/ folder
REVERT: 691746f599 README/es: Fix typo
REVERT: 2d12faf562 pokemon_data: remove MALVEKE check
REVERT: a9828860ba patch_list: Add party_sz to main pokemon data struct
REVERT: e0581ec8aa pokemon: support gen ii trades
REVERT: 57dac60037 char_encode: add hyphen character support
REVERT: 5d211f4fab Merge pull request #28 from acegoal07/dev
REVERT: e574e059d0 Changes
REVERT: a0bd65fb9c Merge pull request #27 from acegoal07/dev
REVERT: 20898f1350 Update nfc_playlist_scene_file_rename.c
REVERT: 90eb26d998 Update nfc_playlist_scene_file_rename.c
REVERT: 94443e763c Update nfc_playlist_scene_file_rename.c
REVERT: 198b9ced36 Update nfc_playlist_scene_file_rename.c
REVERT: 00e5c6e52b Update app_catalog_upd.yml
REVERT: f387a6adde Just some tweaks
REVERT: d82426ddf3 Merge fixes
REVERT: 4db8bc927f Merge pull request #34 from xtruan/develop
REVERT: 1740b15e77 chore: bump manifest 1.16
REVERT: 5afc1d3d7b Merge branch 'main' into develop
REVERT: cf969fa77b fix: minor UI cleanup, screenshot cleanup
REVERT: 23e4affb62 Fix < 1 sec crash as @Willy-JL advised
REVERT: c5f522be5e Merge branch 'develop'
REVERT: 2fb9f4382e chore: bump catalog
REVERT: 936a32f359 fix: remove import
REVERT: e0a1fc62ca fix: typo
REVERT: be56492e7e fix: remove ref to u8g2
REVERT: b208c2f067 Revert to pre-split versions of CUBE HAL and CMSIS
REVERT: 86deaa191e Revert "Create MB_MEM2 shared section for devices with shared RAM up to date startup initialize it"
REVERT: 8396cdabe2 Revert "Latest MP1 system.c needs clocks value that are defaulted by HAL"
REVERT: 9f7dd64557 Merge pull request #26 from acegoal07/dev
REVERT: f7d6f3cc7d Update application.fam
REVERT: c2c7c8b080 Update nfc_playlist_scene_file_rename.c
REVERT: f9bef93042 Update app_catalog_upd.yml
REVERT: be6fdbf8af Merge branch 'main' of https://github.com/zacharyweiss/magspoof_flipper
REVERT: 26bc4893ce Update application.fam
REVERT: 0cf8e0b19d Create app_catalog_upd.yml
REVERT: cd021de54c Merge pull request #24 from acegoal07/main
REVERT: c33455dc53 Update README.md
REVERT: 0dcfd59a72 Merge pull request #23 from acegoal07/dev
REVERT: 63ca18d91f Update nfc_playlist_scene_file_rename.c
REVERT: f99ad11b94 Fixes incorrect frees
REVERT: 06626d8519 Improvements
REVERT: cb10252020 Update README.md
REVERT: a7d517da89 Merge pull request #8 from xtruan/develop
REVERT: 5214970835 chore: bump manifest
REVERT: 4678ec9a6d fix: disable workflow better
REVERT: 847744257c chore: bump manifest
REVERT: 7dda90e780 fix: version bump, disable ufbt build
REVERT: 121ff4aeb1 Merge branch 'develop'
REVERT: 1c5b5023c2 Merge pull request #33 from xtruan/develop
REVERT: 206e84b78e chore: bump manifest
REVERT: a9b4eadaa2 chore: bump version
REVERT: 6c08905ab9 feat: fixes from Momentum
REVERT: 5b5957e032 Merge branch 'main' into develop
REVERT: 8bce552603 Merge pull request #7 from leha-bot/fix/build-on-rel-fw
REVERT: 1aca239567 Update ufbt_build.yaml
REVERT: b8b5c961f9 Update ufbt_build.yaml
REVERT: b93ee280fd Adds ability to remove playlist lines
REVERT: 08e6a50866 Format
REVERT: 7b24042e85 Merge slots from https://github.com/xMasterX/all-the-plugins
REVERT: d8cb256caa Merge pokemon_trading from https://github.com/EstebanFuentealba/Flipper-Zero-Game-Boy-Pokemon-Trading
REVERT: 4b91e13622 Merge nrf24mousejacker from https://github.com/xMasterX/all-the-plugins
REVERT: 17dea5554c Merge nfc_magic from https://github.com/xMasterX/all-the-plugins
REVERT: 4a454cb4c4 Merge mifare_nested from https://github.com/xMasterX/all-the-plugins
REVERT: 56b24f9dd0 Merge magspoof from https://github.com/xMasterX/all-the-plugins
REVERT: b09549dc5d Merge flashlight from https://github.com/xMasterX/flipper-flashlight
REVERT: b33e3560e1 Merge flashlight from https://github.com/xMasterX/all-the-plugins
REVERT: 72eab00ca6 Merge cntdown_timer from https://github.com/xMasterX/all-the-plugins
REVERT: 41db75d2f6 Fix merge
REVERT: a693d1ff49 Add meal_pager from https://github.com/leedave/flipper-zero-meal-pager
REVERT: 9658164b62 Second remote
REVERT: 2009bd0984 Add meal_pager from https://github.com/xMasterX/all-the-plugins
REVERT: 1fe90b927b Name and category
REVERT: cd42027fa8 Add gpio_badge from https://github.com/jamisonderek/flipper-zero-tutorials
REVERT: 570e72f162 Fix merge
REVERT: 1fd5c5f07f Add ethernet from https://github.com/arag0re/fz-eth-troubleshooter
REVERT: 3ff6c509a0 Second remote
REVERT: 3b1516865a Add ethernet from https://github.com/karasevia/finik_eth
REVERT: f97b1c2761 fix: updates from Momentum
REVERT: 88bdddb870 NFC Playlist: Fix incorrect free
REVERT: ebd64efef0 Format
REVERT: 3692a195a8 Fix merge
REVERT: e7d36eec06 Add nfc_playlist from https://github.com/acegoal07/FlipperZero_NFC_Playlist
REVERT: fc8831a879 Second remote
REVERT: b8a913d598 Add nfc_playlist from https://github.com/xMasterX/all-the-plugins
REVERT: 32645c883c Fix merge
REVERT: 259f455807 Add quac from https://github.com/xMasterX/all-the-plugins
REVERT: 0758879dc5 Second remote
REVERT: eafa11373c Fix merge
REVERT: 25e8645ba7 Add pokemon_trading from https://github.com/xMasterX/all-the-plugins
REVERT: e702df53f9 Second remote
REVERT: 0c371a2653 Improves the detection of blank lines
REVERT: 205dd0380a upd version and readme
REVERT: 4e93f13f49 upd readme
REVERT: f8734c257b sync with alltheapps
REVERT: 6f51e81eed add flashlight connections picture
REVERT: 30bd363ae6 add quac app
REVERT: a7ec92bb76 upd nfc magic
REVERT: d733ca3bd0 merge memory management fixes for nested
REVERT: e484c13a0a upd pokemon trade
REVERT: ae9996cfaa upd slots
REVERT: bc4c80a1c5 upd magspoof
REVERT: 287664c89a upd mousejacker
REVERT: e676b1ecd3 upd coundown timer
REVERT: 530fc9ff24 Merge pull request #22 from acegoal07/dev
REVERT: bdec6766fa Adds new skip error setting
REVERT: b9fd9dc3bf Merge pull request #36 from Willy-JL/fix-double-free-crash
REVERT: 843ad7dc60 Format
REVERT: 26da8ddd9f Use asset packs not fap libs assets
REVERT: fbc80be9ef Fix import here logic
REVERT: 437d212fff Fix array out of bounds in create group when empty
REVERT: 4066eb5656 Fix double free crash at app exit on TLSF
REVERT: c750863dfd Tweak app names and categories
REVERT: cdb464e6b1 Pokemon Trading: Fix crash at exit
REVERT: d50d65de7a Add pokemon_trading/lib/flipper-gblink from https://github.com/kbembedded/flipper-gblink
REVERT: e19a4c8750 Replace submodule
REVERT: 03419d7252 Add pokemon_trading from https://github.com/EstebanFuentealba/Flipper-Zero-Game-Boy-Pokemon-…
RogueMaster pushed a commit that referenced this pull request Dec 24, 2024
RogueMaster pushed a commit that referenced this pull request Jan 5, 2025
Fix ticket count when multiple contracts on Navigo Easy
RogueMaster pushed a commit that referenced this pull request Jan 17, 2025
Support for Double Sided Key and Multiple New Key Formats
RogueMaster pushed a commit that referenced this pull request Mar 14, 2025
…karound

added quick fix for older core's versions
RogueMaster added a commit that referenced this pull request Mar 29, 2025
2eb5a5ef41 Latest RM0322-2301-0.420.0-145d3cc on PATREON - UPD PC MON
04987c805e Latest RM0322-2301-0.420.0-145d3cc on PATREON - UPD KEYCOPIER
a2defe50a5 Latest RM0322-2301-0.420.0-145d3cc on PATREON - UPD SIO
190f23152e Merge applications/external/sio2flip updates from sio2flip
370d046b82 prepare for publish. also fix format list exit callback
f272218221 Add TalkingSasquach's video QR
7453d6906e Fix displaying of the last accessed sector
50dd9a9f9b Merge pull request #32 from Offreds/main
9f8b77bb68 Add new disk menu command
494962efc8 Remove backticks from README
cd126448dc Add CHANGELOG
f9e637006e Increment app version
9982582a7e Disable led blinking during battery charging
8d3e59c381 Fix recording while led blinking is off
0f31eda27c Version bump + changelog
ae7224f050 Backlight (#13) + blue LED during communication
62bcbaf012 Merge applications/external/solitaire updates from solitaire
6795672436 Latest RM0322-2301-0.420.0-145d3cc on PATREON - UPD PCMON
07078d067b Latest RM0322-2301-0.420.0-145d3cc on PATREON - UPD TOTP
a50a2f4117 Merge branch 'main' of https://github.com/bettse/seader into 420
b9d35d43ec Latest RM0322-2301-0.420.0-145d3cc on PATREON - UPD SPI TERM
c1710da3d5 Merge applications/external/sio2flip updates from sio2flip
23b4719851 Latest RM0322-2301-0.420.0-145d3cc on PATREON - UPD FMATRIX
abe9251f00 Merge applications/external updates from jamisonderek
32155eb910 Squashed 'applications/external/' changes from 89716a9b00..d56fdf50bf
bc9acd9fd8 chore: Updated version
64e5e462c5 docs: updated CHANGELOG
daccf2c832 docs: updated CHANGELOG
d05098c9ea fix: HOTP counter is not increasing when "OK" button long-pressed (#254)
07da9679df remove '_site'
3fc2827b8f Add comparison table
0d16193193 Add favicon and apple touch icons
af47d3a3aa scroll screenshots
ff8d8d89c9 Tweak webpage
cbc368eab8 Update application.fam
7cc6ec5baf Version bump for README update
31685c450e Update README.md
5e93147f96 i'm lovin it
b3ac3fd04b Imagine replacing a uses line with an entirely different action?
a1311cec1a Update build.yml #5
6839805a32 Update build.yml (testing #3)
c1b7d7cbfe Update build.yml (testing #2)
2abb2ee851 Fix build.yml (testing)
de8cb5eb6d I'm so sorry
567c024946 Moved App Catalog files to a subfolder
b458da3637 Increased app version
a5bf9b92ed fmatrix v0.3.5
f336d5574d Forgot about that
c4901de9e3 Flipper App Catalog fix
8c5569abc3 Update assets
d382e45383 update .gitignore
df2019b02b Add XF-551 high-speed mode support
98e61b8189 Fix switching between high/standard baud rates
469a08dec6 Latest RM0322-2301-0.420.0-145d3cc on PATREON - NEW RELEASE
145d3cc41d Latest RM0320-2347-0.420.0-16dfec3 on PATREON - UPD PC FAM
8c4a5e20fe Latest RM0320-2347-0.420.0-16dfec3 on PATREON - UPD PC README
4e7684ad40 Merge branch 'main' of https://github.com/Alex4386/f0-mtp into 420
804d1ae5cc Latest RM0320-2347-0.420.0-16dfec3 on PATREON - UPD SIO
605f08c402 Changelog for 1.1.0
9119a535ef Added format with skew command
50a51f80e8 Fix data returned by format command
20531af805 Update README
8cc31c1d21 Update screenshots
d777a86c65 Fix disk write-protect bit persistence
560b2dd26b Add baudrate settings
6dd9012cef Fix crash on empty configuration file
8815d076cf docs: update docs
7277dfdb1c Latest RM0320-2347-0.420.0-16dfec3 on PATREON - UPD FLIPWORLD
e15a222c68 Merge pull request #19 from jblanked/dev_0.7
e09dd37429 FlipWorld v0.7
dd5e6114ae Latest RM0320-2347-0.420.0-16dfec3 on PATREON - UPD PC MON
2611c2ae48 Screenshot + visual improvement
2c43e9c8e2 Actions update
f4d0bd580e Update 1.1
53af472e7f Merge applications/external/nfc_apdu_runner updates from nfc_apdu_runner
a362e88a92 Squashed 'applications/external/nfc_apdu_runner/' changes from b167041fc1..54e0170b4b
dafa4abf63 Latest RM0320-2347-0.420.0-16dfec3 on PATREON - Spelling Mistakes
dbb0756601 Latest RM0320-2347-0.420.0-16dfec3 on PATREON - NEW RELEASE
16dfec3bf0 Latest RM0316-2318-0.420.0-d116354 on PATREON - UPD SIO
12c53b5a6f disable PER support
12092dab65 Update application.fam
dc2838f277 Merge applications/external/sio2flip updates from sio2flip
c946e866f6 Disable LED blinking during battery charging
d0c1ac45d6 Merge applications/external/sio2flip updates from sio2flip
aa6f47e613 Merge applications/external/gpio_ina updates from gpio_ina
bc0267123a Fix LED blinking config not applying properly
54e1f15e0f code cleanup
4cca9b6931 Fix README to not use backticks
1fa87b110b Remove unintended references from CHANGELOG
8d2f28607d Latest RM0316-2318-0.420.0-d116354 on PATREON - UPD SIO
4f21305f7f Latest RM0316-2318-0.420.0-d116354 on PATREON - NO UPDs NFC APDU
a88828a8e4 Squashed 'applications/external/nfc_apdu_runner/' changes from a88da813c2..b167041fc1
66a9d7251a slow down player movement
8c1c403ac1 bump to 0.7
6648f9337d Added high-speed transfer
fe453162be Add support for non-standard disk geometries
f829269289 Latest RM0316-2318-0.420.0-d116354 on PATREON - NEW RELEASE
1bf8775227 Latest RM0316-2318-0.420.0-d116354 on PATREON - NEW RELEASE
a407dcfb6b update
3e6a843a6d update
91f1db3299 update
d0a168d918 update
d1163544f4 Latest RM0314-1528-0.420.0-86a8013 on PATREON - ADD SIO2FLIP
9bf28fe060 Add 'applications/external/sio2flip/' from commit 'c611b6af49a6b42ea16cb307582b89be4497143f'
e242b42417 Latest RM0314-1528-0.420.0-86a8013 on PATREON - REMOVE GENIE
48981e6ae8 Latest RM0314-1528-0.420.0-86a8013 on PATREON - UPD SUBGHz
813626c03b Latest RM0314-1528-0.420.0-86a8013 on PATREON - UPD SUBGHz
464dc7619e subghz bugfixes and experimental options
8fb275c29d Latest RM0314-1528-0.420.0-86a8013 on PATREON - NO PIPE NO INA UPD
c611b6af49 Improve disk formatting and PERCOM support
92e5e38a8a Latest RM0314-1528-0.420.0-86a8013 on PATREON - REMOVE NON FLIPPER CODE
8a6f7db256 Latest RM0314-1528-0.420.0-86a8013 on PATREON - UPD FLIPWORLD
37f9318598 Merge applications/external/nfc_apdu_runner updates from nfc_apdu_runner
22db4fd747 Report disk geometry in drive status byte
03b5b64c6a Add basic disk format command
7d143b8ac3 Add disk geometry commands
9b804cddd0 Fix sio driver bug
c8ecaaedcb complete animation
39b7c6c341 update animation
ebb4b7e7d1 NFC全息动画组件
5a8a3d462c 更新多语言支持,简化NARD相关文本,移除最近活动部分,优化界面信息以提升用户体验。
440ea579eb 优化TLV视图组件的表格布局,调整列宽和文本显示方式,确保内容在不同屏幕下的可读性。
b01d30faf9 添加多种颜色标签支持,移除描述字段,优化TLV视图组件的标签显示方式。
a573e6a6ac Merge branch '420' of https://github.com/RogueMaster/flipperzero-firmware-wPlugins into 420
5dbd185459 FIX GAME MODE MAPs
41884d9567 Merge applications/external/nfc_apdu_runner updates from nfc_apdu_runner
d60812d082 更新多语言支持,修改标签显示为“Hex”,添加复制标签功能及相关提示信息。
8d0046e847 增强TLV数据分析功能,支持嵌套TLV格式,添加提取标签功能及错误处理,优化界面文本和加载动画。
e60146ce41 更新API响应结构,确保响应代码不为空;在前端添加axios依赖并调整代理设置;优化多语言支持,更新界面文本以增强用户体验。
67e7368f3c web support english and chinese
cf9eaea530 update loading animation
29bb8fa94c update release
8785966ae9 framework change
f38c23d3db add loading
9fced9a644 init web
48ce52196b Update README
eef3ad05b2 Latest RM0314-1528-0.420.0-86a8013 on PATREON - UPD FLIPSOCIAL + FMT
86cc1c8f31 Merge applications/external/nfc_apdu_runner updates from nfc_apdu_runner
c999bcd252 Latest RM0314-1528-0.420.0-86a8013 on PATREON - UPD INA METER
597873252b fix
2d249c5de1 update
228ccae8ab update
aaf942efd2 Merge pull request #27 from jblanked/dev_1.1
bd31eaa8c9 FlipSocial v1.0.4 (new server backend)
dde0875e4d FlipWorld v0.6.1
952c2ab264 Added license
bea5503bd5 Add some screenshots
354e8d461b Show only filename and extension, hiding the path
aba334d812 Fix github worflow
63ad5c70c4 Initial commit
dc226f3d1e Merge applications/external/nfc_apdu_runner updates from nfc_apdu_runner
8349535368 在wapi.go中禁用HTTPS,仅启用HTTP监听器以简化服务器配置。
b4b8468853 更新测试用例文档,添加NARD格式模板、Flipper设备和TLV相关的测试用例信息,并同步测试用例表格。修正README中的最后编辑时间。
6a42728252 update
f336e8007f tested get file content
bd7de02107 Fix confirmation dialog headers
2fe178e3ae Add confirmation dialogs
bbc2aa8015 nfc_analysis_platform auto test framework complete all tests pass,then need and get file from flipper test
d2b396ecba update
46ae5bd997 update
3320a4a87d Add new screenshot
d6080dd3ef Add recording to the CSV file
0cd3c0edf6 Prepare current gauge screen for log button
08d178d7c7 fix test
f67349a3fc Add unix timestamp to the SensorState structure
f09d8a3879 取消跳过 TLV API 测试的注释。
2a085802cd 增强命令行测试功能,支持通过环境变量控制错误输出,并更新相关文档和测试用例。
805ff5a73e update test tool
8d5ae66aaa fix cmd test
ceb617bc7d update tests
9495641976 添加nfc_analysis_platform测试工具
38b8a2c04f support webapi (need test)
59b01bc9ed Latest RM0314-1528-0.420.0-86a8013 on PATREON - NEW RELEASE
86a8013ba9 Latest RM0313-1700-0.420.0-4fffa17 on PATREON - UPD simul_uhf_rfid
25620806fe Latest RM0313-1700-0.420.0-4fffa17 on PATREON - UPD simul_uhf_rfid
1084e6bf6d adding epc scroll pause
cf3bf04de2 updating changelog, app fam, readmes
c598224ef9 Latest RM0313-1700-0.420.0-4fffa17 on PATREON - UPD simul_uhf_rfid
e011d2cc0e Merge applications/external/simultaneous_rfid_reader from simul_uhf_rfid
c03085465d adding epc scroll pause
fce9f053e1 adding epc scroll pause
a2705a39ff Latest RM0313-1700-0.420.0-4fffa17 on PATREON - FMT
6dac9e4179 Latest RM0313-1700-0.420.0-4fffa17 on PATREON - OFW 4149
4800c8a8fe Latest RM0313-1700-0.420.0-4fffa17 on PATREON - UPD LM
e0d185dcbd Latest RM0313-1700-0.420.0-4fffa17 on PATREON - ADD SPACE IMPACT II
26f11b2390 Merge pull request #20 from tixlegeek/tixlegeek/dirty-timer_flush-workaround
2714ba1ef5 added quick fix for older core's versions
b297fdeeb4 Add 'applications/external/space_impact_ii/' from commit '5f618a1bb269cfea799699e7fe0f6567e2a8f9c9'
660291b690 update swagger
64c594fa80 Latest RM0313-1700-0.420.0-4fffa17 on PATREON - UPD NFC APDU
de42d3ad81 wapi docs
477de05834 删除 ResponseDecoder 工具的所有相关文件,包括源代码、文档和格式文件,完成迁移至 nfc_analysis_platform 的 nard 子命令。
5e4b4ee3eb update readme
6f633b6aff Update README_CN.md
6b7bc9d2c6 Update README.md
27ee18ea7a update readme
8328f37a2a 更新 .gitignore 文件,移除 tlvtool 的忽略规则。
7e1f23bfcc Delete tools/nfc_analysis_platform/nfc_analysis_platform_macos
e23788203a Merge pull request #3 from SpenserCai/nfc_analysis_platform
e915d105dc 更新 GitHub Actions 工作流,将 ResponseDecoder 工具替换为 nfc_analysis_platform 工具,调整相关路径和构建步骤,以支持 Windows 和 macOS 平台的编译和发布。
f62f2e4946 更新 README 文档,替换 APDU 响应解码器为 nfc_analysis_platform 的 nard 子命令,并添加迁移提示。确保文档内容一致性。
224271507f update
50b3380629 init
5f618a1bb2 Adds github workflow, screenshot, changelog,  and updates application.fam
a29280d3b4 Update license
4d822187f8 更新交通卡 APDU 脚本,添加多个交易记录的解析字段,包括交易序号、交易金额、交易类型、终端号和时间,以增强响应解码器的功能。
2b5e70962d Merge applications/external/nfc_apdu_runner updates from nfc_apdu_runner
835edc6211 Latest RM0313-1700-0.420.0-4fffa17 on PATREON - NEW RELEASE
8d0c2d56f9 将电子公交卡名字修改为公交卡
38a9965fe0 Merge pull request #14 from MadLadSquad/auto
53b53aa15c auto
c1e13157fe Update release.yaml
87b5afca17 Latest RM0313-1700-0.420.0-4fffa17 on PATREON - NEW RELEASE
4fffa173fd Latest RM0311-1641-0.420.0-963a181 on PATREON - UPD NFC APDU
dd8784f65e Latest RM0311-1641-0.420.0-963a181 on PATREON - UPD NFC APDU
4bfc401303 Support EMV Card (MasterCard is tested)
e3bbb3b34f Delete apdu_script/.DS_Store
d0e483397a Delete .DS_Store
1fd0153928 更新 README 文档,修正中文内容为英文翻译,增加脚本格式说明和示例,完善自定义脚本创建步骤及注意事项,确保信息准确易懂。
32a1295bcc Latest RM0311-1641-0.420.0-963a181 on PATREON - UPD NFC APDU
7bb95f3847 更新版本号至0.3,修正应用程序和文档中的相关信息。同时在 nfc_worker 中添加错误信息处理,确保在 APDU 命令执行失败或超时时立即触发失败回调,提升用户体验。
2787253efa 在 nfc_worker 中添加错误信息处理,增强 APDU 命令长度检查,确保在错误情况下正确触发回调。更新 nfc_apdu_runner_scene_running 以显示自定义错误信息,优化用户体验。
a682a6cc01 Merge applications/external/nfc_apdu_runner updates from nfc_apdu_runner
1cc835ab87 增强 nfc_apdu_script_parse 函数,支持多行格式的命令解析,清理多余空格以提高解析稳健性。同时更新 E_TRAVEL_CARD_SH.apdufmt 文件,添加有效时间字段的解析。
b5934517fe Latest RM0311-1641-0.420.0-963a181 on PATREON - UPD NFC APDU
446f7727ae 1. Implement mathematical expression evaluation and slicing functions in ResponseDecoder, enhancing expression parsing capabilities. 2. Update the README document to include explanations of hexadecimal to decimal conversion and mathematical operation functions.
624af89cdb Latest RM0311-1641-0.420.0-963a181 on PATREON - UPD NFC APDU
158f687529 Latest RM0311-1641-0.420.0-963a181 on PATREON - UPD NFC APDU
2de13fdb1d Latest RM0311-1641-0.420.0-963a181 on PATREON - OFW 4146
a39cb5d50b Latest RM0311-1641-0.420.0-963a181 on PATREON - UPD NFC APDU
7bb370ce26 Latest RM0311-1641-0.420.0-963a181 on PATREON - UPD NFC APDU
47571eeb09 support get_aid brute
ac9527d9ac 更新上海电子公交卡读取脚本(TM的有8块钱工本费我说余额怎么算出来不对呢)
b20be145bd update readme
07efe54754 update
303d07353b update
6a036cdba2 update
61b9e28ea9 update
922b983bf9 更新 GitHub Actions 工作流以支持 Windows 和 macOS 平台的 ResponseDecoder 工具构建。新增构建步骤和上传构建产物的功能,同时调整了发布目录结构以适应多平台构建结果。
c9d30c1446 修复 cleanString 函数中的正则表达式,允许斜杠和加减号等符号。此更改增强了字符串清理功能,以支持更多字符的保留。
5e70818322 更新 ResponseDecoder 文档和代码,增加自动检测和报告失败的 APDU 命令功能。新增调试模式以显示错误信息,并在解码过程中收集错误信息。相关代码进行了重构以支持新的错误处理机制。
2ea6fe31ec update README
3ee329bb4b 删除 ResponseDecoder 工具的英文文档和相关文件
8308f9d0a2 update
af7d2d0a26 更新 ResponseDecoder 英文文档和示例文件
d80b38fe34 support use tlv command in response_decoder command
8a5ab91446 update tlv tool
6224734a13 support tlv need test
47628a7ec9 update
08ba33782f update
705ef7a124 update
cf53340357 update
9a58014395 update release
a30e01f466 修改 ResponseDecoder 构建配置以支持 macOS ARM64 架构
053a2c3be6 更新关于页面和构建工具
13f28a349b Latest RM0311-1641-0.420.0-963a181 on PATREON - NEW RELEASE
963a181f64 Latest RM0309-1930-0.420.0-0ef732f on PATREON & GitHub - ADD NFC APDU
e9dba8d6fc Add 'applications/external/nfc_apdu_runner/' from commit 'a88da813c2660bfec23d831a2c3e518ade9d510f'
a88da813c2 升级 NFC APDU 运行器版本号
b246176866 优化 NFC APDU 运行器场景资源管理
7074b7a2eb 规范化错误消息和日志输出
7ac3ed4263 重构串口通信命令执行逻辑
aee33b3ef0 升级 GitHub Actions 构建工作流
e517dd13d7 更新 GitHub Actions 构建配置
33942b99dd Update ReadMe
f550569ad0 Latest RM0309-1930-0.420.0-0ef732f on PATREON & GitHub - UPD FLIPWORLD
6172a1f896 添加文件保存功能和用户交互场景
671c5589d6 Latest RM0309-1930-0.420.0-0ef732f on PATREON & GitHub - UPD RADIO SCANNER
4eb3ccf47a Merge pull request #18 from jblanked/dev_0.6
2763fa71e6 update README and CHANGELOG
a6696faecb save player attributes as intended
2086a5cc01 Add sound_on
ab951f75fb Stealth Mode Sound Lock Bug Fix
793e62d639 Latest RM0309-1930-0.420.0-0ef732f on PATREON & GitHub - UPD INA METER
545fa0df15 Update changelog
4cd968cd9e Increment app version
266c4810a7 clear not check script
73e69f2d86 重构 NFC Worker 的 APDU 命令执行线程
867a12417a Latest RM0309-1930-0.420.0-0ef732f on PATREON & GitHub - NEW RELEASE
5151743a23 重构 APDU 命令执行回调上下文传递方式
c150dec3d8 重构 NFC Worker 的 APDU 上下文管理
c541f8b565 Move ledBlinking from Sensor to App section in INI config
739c663f2c Fix menu item linkinng to wiring screen
ea0eac2f70 恢复 NFC Worker 检测线程中的初始化延迟
2ae2df9e95 调整 NFC Worker 检测线程中的延迟时间
78c3bdefe0 Merge branch 'main' of https://github.com/SpenserCai/nfc_apdu_runner
9cf5a42d56 优化 APDU 轮询器回调函数
42a65d1e55 重构 APDU 命令执行和轮询器回调
d6e4f82b3b Create LICENSE
1bfd258585 重构 APDU 命令执行回调机制
d40d7c9d6f 优化 NFC Worker 卡片检测和 APDU 命令执行逻辑
e8beeca191 优化 NFC Worker 卡片检测和 APDU 命令执行流程
bae7159335 Latest RM0309-1930-0.420.0-0ef732f on PATREON - NEW RELEASE
0159946b52 dev: nova toolbelt
0c8c34b646 Merge branch 'main' of https://github.com/besya/flipperzero-tuning-fork into 420
69bd267a00 重构 NFC Worker 检测和命令执行逻辑
29be7297b9 引入 NFC Worker 机制,重构 APDU 运行场景
4a6ec16d02 ci: use upload-artifact@v4
3d0a4a7353 ci: add build workflow
6d8922ac6e 增强 NFC APDU 运行器的错误处理和调试能力
0ef732f03e Latest RM0307-1535-0.420.0-f691ad3 on PATREON - UPD GHOSTESP
0a2a2215c9 Merge pull request #35 from jaylikesbunda/main
382a0b1f50 Merge branch 'Spooks4576:main' into main
c7c74724b1 v1.2.3
895c03c5c3 Latest RM0307-1535-0.420.0-f691ad3 on PATREON - UPD TUNING FORK
dd789f91c6 chore: update changelog
d14310426e Latest RM0307-1535-0.420.0-f691ad3 on PATREON - UPD TUNING FORK
0c3f2de30e chore: update application.fam
0bd1b04d6f Latest RM0307-1535-0.420.0-f691ad3 on PATREON - UPD TUNING FORK
bedb550f20 Merge applications/external/nrfjammer updates from nrfjammer
b238e7b03f chore: add .catalog
195cac14d8 feat: add more tunings
9dba827923 Latest RM0307-1535-0.420.0-f691ad3 on PATREON - UPD TUNING FORK
067bc467a0 Latest RM0307-1535-0.420.0-f691ad3 on PATREON - UPD SUBGHZ BRUTE
403a96d0d6 chore: bump version up
71e8402819 Merge pull request #8 from besya/nesting
ae22d1e1b8 chore: update screenshots and readme
6304b9f3a0 Merge branch 'origin/nesting'
19a934ee37 fix: correct Cigar Box 3 Open G tuning
55b8294977 Nested tunings and UI improvements
278a3482b3 Merge pull request #7 from besya/merge-conflicts
0567a8a2af fix: solve merge conflicts
e033e83725 Merge pull request #6 from GrafOrlok/main
4f716e6b23 fix: correct Cigar Box 3 Open G tuning
7f590e52e3 Nested tunings and UI improvements
ef31f22d34 Adding Tunning for Banjo 5 strings and Cigar Box 3 and 4 strings Open G
d464d430ab chore: update readme
a4d8f67a90 chore: update readme
42bc3098b5 chore: update application.fam
7de7c7f059 Merge pull request #5 from besya/codebase-improvements
9f0ba6d2c4 refactor: codebase improvements
c0aa6ea427 Update README.md
e5175c8135 Update README.md
471c5b9ad2 Merge branch 'main' of https://github.com/huuck/FlipperZeroNRFJammer
46ba08a7c3 improvements regarding the crash, added ability to load custom file
db51feae6d Update README.md
6f81168be2 Merge pull request #83 from SpenserCai/master
a42ff524d1 fix menu item being not reset
1fc0390676 bump version
1fb8063cad remove debug
9b601fceec del some stuff
99acf07e72 Latest RM0307-1535-0.420.0-f691ad3 on PATREON - FMT
b06de220ae Latest RM0307-1535-0.420.0-f691ad3 on PATREON - NEW RELEASE
123e9bace4 优化 NFC APDU 运行器的目录创建和错误处理逻辑
3c3a36bf6d init
1c28df2797 add pt2262 430.5Mhz
f691ad3553 Latest RM0305-2306-0.420.0-21d447c on PATREON - UPD FINDMYFLIPPER
09ff61d81f update pt2262 te to 350
15c6ef035e rechange some code which not must change
e032d322cc update .gitignore
5bfb55ef51 clear debug code
914353f9e5 fix the can't change pt2262 btn before first change
06127d5183 Latest RM0305-2306-0.420.0-21d447c on PATREON - UPD PoF sanjay900
0bb27f55a0 update readme
9eb860d1f9 Latest RM0305-2306-0.420.0-21d447c on PATREON - UPD PoF sanjay900
f339ae98f8 update readme
ffc0bed005 update readme
a4389698cd update readme
c8b202862a Latest RM0305-2306-0.420.0-21d447c on PATREON - UPD PoF sanjay900
2ec40eab07 update readme
b65ca33b79 update readme
021f006234 update readme
c0f04ab457 more speaker changes
6c8c8df17d Latest RM0305-2306-0.420.0-21d447c on PATREON - UPD PoF
0545f6bbdc Latest RM0305-2306-0.420.0-21d447c on PATREON - UPD LM
193d9e6ff3 Latest RM0305-2306-0.420.0-21d447c on PATREON - UPD PoF
e0a4639a23 debug (subbrute_worker.c line:375)
cfbab85979 try clear flipper_format steam
04167d20a2 update
1657ac4cc4 Merge pull request #19 from tixlegeek/tixlegeek/update-release
af5e85a27c Set default letter width to 1
abbbbfa65a more speaker changes
26b3b14ff1 Merge pull request #18 from tixlegeek/tixlegeek/update-release
c4ff6f3aa8 Unused TAG removed
0af1a059fc Merge pull request #17 from tixlegeek/tixlegeek/update-release
1a8dd86da4 remove unnecessary log
c83e675505 Update, format, and lint for publishing
8201d152ef more speaker changes
2f6317a863 more speaker changes
81c8c6fb5e more speaker changes
ace5cf5845 more speaker changes
a10f39c016 more speaker changes
d2777bc30d more speaker changes
d607bb0a87 more speaker changes
8d607ca1f3 more speaker changes
10fb05f22e more speaker changes
68d19a186f more speaker changes
02e6527197 more speaker changes
11efcd279a more speaker changes
1fb0355bc6 more speaker changes
634e3d2c95 more speaker changes
05e5fa5e04 more speaker changes
81408ef852 more speaker changes
89858336c6 more speaker changes
d58bef608e more speaker changes
63ac79375a turn on speaker with m command
0d92b55abe v sets m
8915d6257a fixes
c3da0b1b04 Latest RM0305-2306-0.420.0-21d447c on PATREON - NEW RELEASE
21d447c8f9 Latest RM0304-1335-0.420.0-3441392 on PATREON - UPD DEADZONE
94041c3c6c Latest RM0304-1335-0.420.0-3441392 on PATREON - UPD  DEADZONE
7e415b26fb support save pt2262 file
0b01b365e2 removed distracting background.
f9ea2e728d Latest RM0304-1335-0.420.0-3441392 on PATREON - UPD LM
d709090eee Latest RM0304-1335-0.420.0-3441392 on PATREON - UPD KEYCOPIER
80d4bde07b Latest RM0304-1335-0.420.0-3441392 on PATREON - UPD LM
98b6228c11 Merge pull request #16 from tixlegeek/tixlegeek/fix_bmp_editor_ui
84299b1749 Fixed bmp editor width & height, enhance UI, added README about Hold function
0b6415b8c2 Latest RM0304-1335-0.420.0-3441392 on PATREON - UPD LM
0d55ac2368 Merge pull request #15 from tixlegeek/tixlegeek/add-resources
2f0441b9ae Added resources and moved app's directory to /apps_assets
de6e0314f2 update
f696859080 fix bug
8dbc275efe fix bug
f722f1aa77 fix bug
5578d32232 add more btn
5f2ef83034 Latest RM0304-1335-0.420.0-3441392 on PATREON - NEW RELEASE
dae7f99ee6 Merge applications/external/cigarette updates from cigarette
3441392b72 Latest RM0303-1119-0.420.0-f0160a2 on PATREON & GitHub - UPD BLE KILLER
bdd2f7772f Merge pull request #11 from fuckmaz/fuckmaz/flipper_cigarette_v0.1.2
597ce17345 removed HTML linebreaks
a86862eb25 Update key_copier.c
48ba33ba62 Latest RM0303-1119-0.420.0-f0160a2 on PATREON & GitHub - UPD POF
9acc38760b Latest RM0303-1119-0.420.0-f0160a2 on PATREON & GitHub - UPD PORTAL OF FLIPPER
af6e5e0b09 Latest RM0303-1119-0.420.0-f0160a2 on PATREON & GitHub - UPD CIG RDME
eb5be370e2 Merge applications/external/lightmessenger updates from lightmessenger
dbfd2dbf0c Latest RM0303-1119-0.420.0-f0160a2 on PATREON & GitHub - UPD BADUSB REFS
bc588aa78f Latest RM0303-1119-0.420.0-f0160a2 on PATREON & GitHub - OFW PR 4133
99dfbacfa5 Latest RM0303-1119-0.420.0-f0160a2 on PATREON & GitHub - OFW PR 4136
2f0de1b0f7 Latest RM0303-1119-0.420.0-f0160a2 on PATREON & GitHub - UPD CLIPPER
503a7dd724 Merge pull request #10 from fuckmaz/fuckmaz/flipper_cigarette_v0.1.2
004c42b0c4 added DESCRIPTION.md
04030ad3ff support pt2262 complete
288a3e1616 update
b697a4ea5e Merge pull request #14 from jamisonderek/jamisonderek/timer-flush
972696b376 update
cbeec658f1 support pt2262 demo
abbc411590 save nfc files on write
d6f53cdee4 audio works
afbed631e1 move audio libs to seperate dir
883c483946 move audio libs to seperate dir
9f131a8407 Latest RM0303-1119-0.420.0-f0160a2 on PATREON & GitHub - NEW RELEASE
a7fe3c9b15 Latest RM0303-1119-0.420.0-f0160a2 on PATREON - NEW RELEASE
3dec326748 Latest RM0301-1928-0.420.0-9c6e433 on PATREON - UPD SERVOTESTER
c9b130a8ce alaw
b3179b946d alaw
25e0747886 alaw
9e84bbba98 alaw
244f8ef4bf alaw
0f62171e54 alaw
83d1ea0724 ulaw
c259cde661 test 360 audio
1679a60099 test 360 audio
dc481008e3 test 360 audio
20c0cd2e83 test 360 audio
3507ed70fb test 360 audio
49919b6a5e test 360 audio
f0160a2743 Latest RM0301-1928-0.420.0-9c6e433 on PATREON - 401LM PR 14
44e07c6fb0 test 360 audio
01829eb3bf test 360 audio
3217556678 try larger buffer
648a42f6a4 try larger buffer
eea742c983 roll things back a little
ad5165f862 Latest RM0301-1928-0.420.0-9c6e433 on PATREON - NOTHING
04fb2f359c roll things back a little
a21e2baada roll things back a little
f39d106f31 roll things back a little
a09ee22e62 roll things back a little
c32bb182f0 roll things back a little
9bf1006cc6 comment volume
18febd08d0 comment volume
b67cdf57df comment volume
4ed80a8f90 comment volume
cadcdc5985 comment volume
dab001557c comment volume
43ee582342 comment volume
c23919c817 slow down sense with audio packets
221065fd72 slow down sense with audio packets
023db8ebfc more audio tests
cabf3b12d9 more audio tests
be16ccbb82 more audio tests
8c1373dbb8 more audio tests
04c11efeb4 more audio tests
10e5cdeae4 fix typos, copy load string
b00eb80a84 Merge applications/external/gpio_ina updates from gpio_ina
cbe2013064 oopsx2
8309c74470 oops
d670ea3b63 change workflow to only run after changes
3a89ad29b0 update build dependency
14d0adf341 Latest RM0301-1928-0.420.0-9c6e433 on PATREON - TEMP UNDO 401LM PR 14
17b98efa9f Latest RM0301-1928-0.420.0-9c6e433 on PATREON - UPD POF
d92752acd8 Latest RM0301-1928-0.420.0-9c6e433 on PATREON - IR FIX
9fc3c87e34 Updated README
e8b451e80c more audio tests
3dbad0fcdc Updated README
78c5f35829 Updated README
24677e511c work on audio
8686db0308 Latest RM0301-1928-0.420.0-9c6e433 on PATREON - UPD 401LM PR 14
9dcf30d29d Fix issue where app exit takes a long time.
666b87f78a Latest RM0301-1928-0.420.0-9c6e433 on PATREON - NEW RELEASE
9c6e433d88 Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD INA
3cdb67963e Latest RM0226-2320-0.420.0-44e8618 on PATREON - ADD FIGHTER JET
3ce9f7422c Add 'applications/external/fighter_jet/' from commit '50b8213eb48271ee5944db90a126aa818e3b3388'
7526af6a9e Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD NFC COMPARATOR
4e570a69d8 fix led logic
50b8213eb4 Adds screenshot and changelog
ba784e546f initial release
9cc9938f97 Added LED blinking
3abf8f368f Merge pull request #8 from acegoal07/dev
f86ef5254a Update nfc_comparator.h
23cfc8a214 Update nfc_comparator_scene_comparator.c
8c7296d990 Latest RM0226-2320-0.420.0-44e8618 on PATREON - FMT
d6bd63a6ab Latest RM0226-2320-0.420.0-44e8618 on PATREON - OFW PR 4132
a2aa6e10a0 Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD RDME
25dcabe9f9 Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD CLOCK
cf37900a52 Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD NOTHING
742611be59 Merge pull request #7 from acegoal07/dev
80974dbea6 Update README.md
cabd6ea21c Update README.md
00954274a8 Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD NFC COMPARATOR
494b2732c6 Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD NOTHING
44f102be9b style updates
0e3a31ca5b Merge pull request #6 from acegoal07/dev
0069794718 Fixes back button
e11bb9ab75 Merge pull request #7 from 956MB/battery-pct
f32ac61081 more lerping fixes
f8bc91a1cc lerp quicker
965f021b81 more led fixes
e14f848d3d more led fixes
fb4ab63077 if duration is 0, immediately write led state
6718899b9b if duration is 0, immediately write led state
7df0dc8da2 properly support multiple leds
2a6205ed51 use our own timer instead of ui timer
289b514619 update leds on ui tick instead of seperate thread
eed65a042b update leds on ui tick instead of seperate thread
f951a75141 Add toggle to battery %
73326fc69d Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD NOTHING
7ced895326 Merging Flipper and ESP32 projects. Anything to procrastinate, it seems
fabc22d91e Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD TOTP
8b956c9b1a Merge applications/external/lightmessenger updates from lightmessenger
ca17ef0454 Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD METROFLIP CREDITS (KEEP SUICA)
9f95e57eb4 Merge pull request #13 from tixlegeek/tixlegeek-draw-continuously
fc5a86205d remove command
7c9cf9d214 Merge pull request #12 from tixlegeek/tixlegeek-check_bmp_size_editor
2a5be23beb Merge pull request #12 from tixlegeek/tixlegeek-check_bmp_size_editor
cf740538b1 cleanup and event management rework
a1ac642f82 Also analog
aeea56b7a4 Show battery % on digital clock
62eea82219 Merge branch 'lab-401:main' into tixlegeek-check_bmp_size_editor
80ba0cc6cc Merge pull request #11 from jamisonderek/jamisonderek/signed-col
a8f53e4cec Merge branch 'master' of https://github.com/akopachov/flipper-zero_authenticator
7852776e8f docs: updated CHANGELOG
941ca098d2 chore: Updated version
df93bd4189 Extended valid UTC offset range from -12 to +14 (#250)
916da9eade Merge pull request #49 from ry4000/main
458a6c7c88 Latest RM0226-2320-0.420.0-44e8618 on PATREON - NEW RELEASE
05cb352162 R&Y: Stylisation Update to `README.md`
e5c5ae20ac R&Y: Stylisation Update to `metroflip_scene_credits.c`
a02df9e314 R&Y: Stylisation Update to `README.md`
83ad7202e2 R&Y: Stylisation Update to `README.md`
94e4ace389 R&Y: Stylisation Update to `metroflip_scene_supported.c`
0baa267530 R&Y: Stylisation Update to `README.md`
44e86186c3 Latest RM0225-1310-0.420.0-bebc11d on PATREON & GitHub - UPD METROFLIP
314cecdd4d Merge pull request #48 from zinongli/add_yurikamome
b0c18ee18d Update readme for Suica support
3f63329697 alternative way to get data
31c229e36f more agrressive fix
bf5f161f0c Update suica_drawings.h
afbd16cb7a fix include bug
cfdaa582ca Latest RM0225-1310-0.420.0-bebc11d on PATREON & GitHub - OFW 4129 NOT ADDED (YET)
df87145b79 Latest RM0225-1310-0.420.0-bebc11d on PATREON & GitHub - UPD CROSS REMOTE
e04431772c Added Yurikamome line
efe2f386d7 Latest RM0225-1310-0.420.0-bebc11d on PATREON & GitHub - UPD TIMER
de58fdcb73 First steps, not really working
d57c46ab98 Latest RM0225-1310-0.420.0-bebc11d on PATREON & GitHub - NEW RELEASE
47a7381513 Merge pull request #34 from leedave/feature/favorites_menu
04359c1b34 update README
7b1d56f438 Added support for favorites menu (only CFW)
caf314c004 feat: implement countdown logic and alarm trigger functionality
9d986083e8 Latest RM0225-1310-0.420.0-bebc11d on PATREON - NEW RELEASE
a991843613 Latest RM0225-1310-0.420.0-bebc11d on PATREON - NEW RELEASE
41e7306321 Merge pull request #47 from zinongli/0.5+load+suica
231cab52bb Update suica.c
da1c056e4d Update main.yml
838bbca22d Update main.yml
d797d3daeb Latest RM0225-1310-0.420.0-bebc11d on PATREON - NEW RELEASE
bebc11db16 Latest RM0223-2010-0.420.0-a569995 on PATREON - FIX QUAC
5e54c28543 Latest RM0223-2010-0.420.0-a569995 on PATREON - UPD METROFLIP
939f9d03ca simplify column data
dfa7299874 format and file name fixes
9ca7b01cea Add screenshots
d6b12d8a19 credit format
762b16832d bug fixes for loading
79b4a2c6ff delete repetitive code
a622965dfb Merge branch 'dev' into 0.5+load+suica
cb38132688 Merge branch 'dev' into 0.5+load+suica
ba35cffb7b Latest RM0223-2010-0.420.0-a569995 on PATREON - UPD QUAC
ccb34fb4d8 Merge pull request #14 from rdefeo/file_link
bea45dfe48 quac link files
440255c17c add game mode
88db6ca800 do not display users stats when switching worlds
2b66b93379 Latest RM0223-2010-0.420.0-a569995 on PATREON - OFW x3
6869ea264d new FlipperHTTP API
629c2a026b Latest RM0223-2010-0.420.0-a569995 on PATREON - UPD KEY COPIER
7f90d1131e Latest RM0223-2010-0.420.0-a569995 on PATREON -  UPD KEY COPIER
30edc1b907 major/minor ver only
05d229c5c7 bump version
23959760b9 update screenshots
e4c92ed6e2 bug fix
eeef7c22dc allow lerp interrupts
a41f99929d allow lerp interrupts
4e73ede85e fix activate
2dede9705e fix two phase
6b14109b4e only left
9698d64311 two phase lerp
81e253f6a2 lerp test
37b78d4936 lerp test
6d205bdab6 lerp test
3568600405 lerp test
95149dd6e1 lerp test
7b26c06872 lerp test
cfe4f3e3fa lerp test
bccdae4c46 lerp test
ee0ca42e28 unlock usb
0b21a49322 drive leds with hal
6c8983b612 drive leds with hal
8a74763d64 drive leds with hal
cbc8382c50 drive leds with hal
0123ecb127 drive leds with hal
99f584566e drive leds with hal
428225abe0 don't send sense packets if we have just sent some other response
5d2724323d don't send sense packets if we have just sent some other response
727aab753b Revert "set change bit after activat ecommand"
352d3e5120 don't send sense packets if we have just sent some other response
f90ca437ea Latest RM0223-2010-0.420.0-a569995 on PATREON - NEW RELEASE
a569995c35 Latest RM0220-2136-0.420.0-4e452fd on PATREON - ADD LED BLINKER
63dcd5adf6 Add 'applications/external/blinker/' from commit '7733cebdaa9fb284dc978d5fcd50fdf9e7909fa7'
b987d4ce9f Latest RM0220-2136-0.420.0-4e452fd on PATREON - ADD LIDAR EMULATOR
6c9e31b359 Add 'applications/external/lidar_emulator/' from commit 'd2092a01ae627129c24c257102f619813a61986e'
ae95ad4e15 Latest RM0220-2136-0.420.0-4e452fd on PATREON - UPD GB LINK
cbf874b7cd Latest RM0220-2136-0.420.0-4e452fd on PATREON - UPD GB PRINTER
7733cebdaa Merge pull request #4 from Cupprum/dev
faae0f5de0 chore: scale down pictures
1e2fbb2555 chore: move fap description to code from manifest
9220d514fe Merge pull request #3 from Cupprum/dev
0121251ca7 chore: clang formatting
685ddff975 Merge pull request #2 from Cupprum/dev
1f49bb8058 chore: make if statements more readable
7ca7a6161a printer/receive: add compression support
6168632756 gblink: Performance test for measuring interrupt latency
4939b462af printer: remove thread from printer_proto
3d010d40d3 gblink: create separate thread for bottom half of interrupt
dd94830458 Latest RM0220-2136-0.420.0-4e452fd on PATREON - UPD METROFLIP
89ddcc982e Latest RM0220-2136-0.420.0-4e452fd on PATREON - UPD METROFLIP
56a3563eba gocard
ae0cb269f0 Resolved merge conflict in gocard.c
06fc172112 Temporary commit
d2092a01ae include <assets_icons.h> not found when built with ufbt. Removed.
e0f1b1cc37 README updated and screenshots added for flipper-application-catalog compliance
32b962024c Initial commit.
fa27de3586 Latest RM0220-2136-0.420.0-4e452fd on PATREON - NEW RELEASE
4e452fd52a Latest RM0218-1205-0.420.0-7bb30bf on PATREON - ADD TIMER APP
47f47e42ed Add 'applications/external/timer/' from commit '6effcb9c0bbd00f04978f17b92ed6750614db005'
659323bfa0 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - UPD METROFLIP
68e753f3e3 expiry+concessiontype
31242239a9 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - UPD HID AUTOFIRE
099dc49424 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - QUICKER ICONS DEADZONE
11ea25babf doc: update changelog
659bff9ca9 release: bump version
2b03d630da fix: remove now redundant itoa function
7c1fb2939e Latest RM0220-1236-0.420.0-5cec824 on PATREON - ULx3
14121d7f80 came atomo button hold simulation half cycle
c9427866b2 fix text pos
92d4c7850d fix naming
b96ae590a1 FIX GANG QI
7df4a67baa Latest RM0220-1236-0.420.0-5cec824 on PATREON - NEW RELEASE
5cec824102 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - UPD METROFLIP
4ba70470f4 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - UPD METROFLIP
8a4b9e34e7 Merge applications/external/metroflip updates from dev metroflip
8e96e84cc2 Merge applications/external/metroflip updates from main metroflip
1a7622a1c3 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - UPD DEADZONE
ab2f80cf60 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - KEEP SPACE No NORALSY
4a655f2a84 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - QUICKER ICONS FOR THESE GAMES
813a894219 temporarily remove game resumption due to bugs
e3f096f687 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - GAME MODE UPDATE
2df000c3bc Latest RM0218-1205-0.420.0-7bb30bf on PATREON - GAME MODE UPDATE
660f244cc8 bump readme in code space
2513fbb6fd Fix markdown misformatting
ac4922c34e Merge pull request #46 from luu176/main
f6d741432a Rav-Kav balance and scene fix
bbfdf50fdc deletion of game template file
f65fefb693 README update
797243547b Latest RM0218-1205-0.420.0-7bb30bf on PATREON - MERGE FIX
b7b39e0d52 Fixed repeat in subghz tx_from_file command (#4099)
d0945c38ed LFRFID: Noralsy Format/Brand (#4090)
78e89d2dd0 Faster di card reading (#4087)
04814b1086 [FL-3949] Universal IR signal selection (#4085)
8f3d47ed9c vscode: disabled auto-update for clangd since correct version is in the toolchain (#4122)
1655b8af76 BadUSB: Mouse control (#4004)
373b1d4336 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - UPD METROFLIP
d6894d0dc5 gocard dev
8cca7f835d Latest RM0218-1205-0.420.0-7bb30bf on PATREON - FIX LM README
5561cd1874 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - FIX LM README
76123782b6 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - OFW 4114
3da17166aa added new shader by jamisonderek inside readme
89a98ba64f remove "contributors" from readme as it is redundant with github's UI
3b53d1637f copy README
4ee0902814 Update README
6608edd7fc Merge pull request #8 from jamisonderek/jamisonderek/docs
6544f97bad Latest RM0218-1205-0.420.0-7bb30bf on PATREON - NEW RELEASE
ef582c0304 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - NEW RELEASE
37e2d04dc9 Change build testing to weekly.
7bb30bfff8 Latest RM0216-2005-0.420.0-a6969e7 on PATREON - UPD CROSSREMOTE
c763004922 Merge pull request #33 from leedave/feature/gpio_ir
a639cd9ff2 Fix Power Management Issue
4e49c18d74 Latest RM0216-2005-0.420.0-a6969e7 on PATREON - UPD LM README
19df3ff9f9 Latest RM0216-2005-0.420.0-a6969e7 on PATREON - UPD CROSSREMOTE
878e3add67 Latest RM0216-2005-0.420.0-a6969e7 on PATREON - UPD DEADZONE
0a312ff149 Merge pull request #32 from leedave/feature/gpio_ir
f59526e476 Enabled GPIO support for IR boards
fb7374692f Save new IR GPIO Settings
29c795d708 Copy od README.md in code. This probably isn't the best way to do it, but it'll do for now
7ded678ea8 Created Settings entry for IR GPIO
1801564551 render username in tutorial level.
5e2285aca8 better beginning to tutorial level.
9534d1b2fb support choosing username & retaining in file storage
b70f1ecaaf removed settings menu.
9ec7c13a57 Latest RM0216-2005-0.420.0-a6969e7 on PATREON - UPD LIGHTMESSENGER
2f7fc969e4 Bump application.fam to 1.2
b91dfb760e CHANGELOG update
d2b62c271c Last pass before release
f2978a6538 Latest RM0216-2005-0.420.0-a6969e7 on PATREON - UPD SOLITAIRE
47710f848e Update development readme
a81e4fa32e Merge applications/external/lightmessenger updates from lightmessenger
0d2ac4760f Update CHANGELOG.md
d39e49d271 Merge pull request #9 from Erbonator3000/main
4beb0e4439 Merge pull request #7 from tixlegeek/main
5dcbda9239 Integrated some of the PR5 from Jamisonderek
509581eb50 Latest RM0216-2005-0.420.0-a6969e7 on PATREON - UPD LIGHTMESSENGER
33b443caa3 Merge pull request #6 from tixlegeek/main
ef0218c253 Added sensitivity to configuration following jamisonderek's work
5a366311d0 Fixes a bug where any card picked from waste could be placed in first tableau
b266e9bad7 Config file is reseted if malformed
232f3670a6 set change bit after activat ecommand
1dd84ba80c update changelog
dbf4d6c078 bump version number
e326901e11 update application metadata
e2bbbdb11f Latest RM0216-2005-0.420.0-a6969e7 on PATREON - NEW RELEASE
a6969e74a7 Latest RM0215-1145-0.420.0-3cfc04b on PATREON & GitHub - ADD SMARTRA
8937dcf0bd Add 'applications/external/smartra_vin2pin/' from commit '8951001c437e5ba29cfc4b60bfd670af1b2535cc'
fe0e525b63 Latest RM0215-1145-0.420.0-3cfc04b on PATREON & GitHub - ADD 1DPACMAN
73c2bf1df9 Latest RM0215-1145-0.420.0-3cfc04b on PATREON & GitHub - ADD 1DPACMAN
3fea8d99a7 Add 'applications/external/1dpacman/' from commit 'c53f3c0bf74086bb434bca844c517b2d3d3bacd1'
52e390de5c Latest RM0215-1145-0.420.0-3cfc04b on PATREON & GitHub - OFW TO ADD
cb4924792c Latest RM0215-1145-0.420.0-3cfc04b on PATREON & GitHub - ADD INA METER
9ee7be15cf Add 'applications/external/gpio_ina/' from commit 'c370c90e65886c735ec113c45538a50afb05f982'
a87819e912 Merge applications/external/portal_of_flipper updates from portal_of_flipper
26eff62740 Merge applications/external/id_card_v2 updates from id_card_v2
ea8103d93d Update README.md
bfb70b1ffb Merge remote-tracking branch 'upstream/main'
040cddb119 Merge branch 'led-notifications' into 'main'
a27ef55e5b Drive leds via notifications
8c2db9378f Latest RM0215-1145-0.420.0-3cfc04b on PATREON & GitHub - UPD LIGHT MESSENGER
66080f2be4 Merge pull request #3 from jamisonderek/jamisonderek/configreg
50d8dbc8c8 dont free pof_usb
df0431d7b9 set sense timer to 32ms
b850ef44bd set sense timer to 32ms
26c911ff0a always send status packets
ee1147b2fc always send status packets
7935c25d74 undo query change
b3d1183eb1 don't send sense packets after a query
6effcb9c0b feat: enhance timer logic and UI for improved alarm functionality
444e1fddb1 move type to virtual portal
588c324028 move type to virtual portal
f92678259f Fix incorrect header function definition
30f984c8a1 Latest RM0215-1145-0.420.0-3cfc04b on PATREON & GitHub - NEW RELEASE
d316488845 Have a seperate type selection ui on startup
b9fdab3689 Have a seperate type selection ui on startup
df9dd633e6 Have a seperate type selection ui on startup
5803f80079 move some shared structs to pof_usb.h
24a38daed8 Add ui element to swap type
6dda4f5e73 Add ui element to swap type
d08e8bb456 Add ui element to swap type
60fd576531 Add ui element to swap type
812044da49 style: format code for improved readability
90e315fc58 starve fix
e9320610db Move 360 code to its own file
b5a6d4b44a Move 360 code to its own file
01e9326b89 Move 360 code to its own file
ed1dfaac34 Move 360 code to its own file
d54e70a42e string to char
69b01746f0 don't init 360 endpoints for hid
f59f9e61c4 add back deleted line
a7480fd0af add comments about 360 portal audio
de321b4c68 seperate audio packets from normal ones
7e60ea7b9b seperate audio packets from normal ones
8a95e53086 ack 1f/1e
20fd861e87 xb360 emulation works
a37d98acbc xb360 emulation works
ba7c41d3d7 yes
43525d0d70 yes
e20324976a yes
cea987278f reset seq
aef7d66045 fix typo
c027333954 fix typo
c84e7934d5 fix typo
e57db64b81 360 status packets
1164cd4cdf bcddevice
ac516ae8ae portal
b754026a55 test
e7bba3a7df fix ep sizes
a7d8582547 zero caps
0e081017ea zero caps
8394e48254 register endpoints
82485fa71d ack clear feature
6955c04740 fix string desc read
b074941bbd fix string desc read
14b9b94e9b fix string desc read
d1b7b36086 fix string desc read
9931e84ee8 fix string desc read
16416fccb6 add caps
84778ae8b3 add caps
d88bc44375 fix incorrect interface ids
9c63b77b6a insert 360 header when construction packet
c143114e8f Specify type within virtual_portal instead of having differnt start functions
a8268f5af4 Specify type within virtual_portal instead of having differnt start functions
9e682680e4 Specify type within virtual_portal instead of having differnt start functions
3d8983d103 insert 360 header when construction packet
6181d4c39e add missing interface
956973c823 add missing interface
f5dcf2fef8 fix incorrect length
3c090a5dd1 fix numinterfaces
a5bcaf22c6 use different control request handler for x360
e34befc309 fix typos
1fe490dd46 360 descriptors
6cf28c0ecc Explictly clear out registers
e36775f9cc Explictly set rest of pin registers
6611ab7a31 Fix bug CTRL_REG3 sometimes has value 0xC8.
adfe120111 Latest RM0215-1145-0.420.0-3cfc04b on PATREON - NEW RELEASE
3cfc04b045 Latest RM0213-1625-0.420.0-b07b064 on PATREON - ADD PET YOUR DOLPHIN
49cea98d4b Add 'applications/external/pet_your_dolphin/' from commit '7d20b3ecc3fd8e83ba862e670448f46dacb1d7ea'
a3d054f5a5 Latest RM0213-1625-0.420.0-b07b064 on PATREON - ADD FORD RADIO CODES
5253af9754 Add 'applications/external/fordradiocodes/' from commit '7b3bf9d5c222054422f903f909513075ce867186'
57fbe9af09 Latest RM0213-1625-0.420.0-b07b064 on PATREON - UPD NFC KEYBOARD
4ac6f83858 Latest RM0213-1625-0.420.0-b07b064 on PATREON - UPD METROFLIP
66d536f35b Update manifest.yml
c4e1ed2304 Update CHANGELOG.md
a27a84d61c Update manifest.yml
ac4a57a8fc Update application.fam
9061b94e69 chore: split timer_alarm.c/h from timer_app.c/h · 0e3b3b3b7b - Gitea: Git with a cup of tea
cdb383b895 feat: Add timer app
33944b26be added mfcultralight compatibility
29c472363c fix weird keyboard timing issue
593d39841e Merge applications/external/portal_of_flipper updates from portal_of_flipper
d5b51bcc3d increase max tokens to 16
0f5b23b007 correct status message update math
2b0e95faba Prevent S starvation during incoming audio
5f57958103 Merge applications/external/portal_of_flipper updates from portal_of_flipper
d90f9379d1 Merge applications/external/id_card_v2 updates from id_card_v2
2305734bd8 reduce timeout to 30ms
d99a9ffba4 Merge applications/external/lightmessenger updates from lightmessenger
4208999703 Latest RM0213-1625-0.420.0-b07b064 on PATREON - UPD LIGHTMESSENGER
8033a642b4 update troubleshooting again
bcda5dfc02 update troubleshooting
04bc2d5ee4 Update README.md
f1bf790e2f Update README.md
c8e6ea6323 Update id_card_v2.c
7b3bf9d5c2 Update manifest.yml
c3e3aa7d82 Update manifest.yml
f274e94d4d Merge applications/external/portal_of_flipper updates from portal_of_flipper
93d7f94fa0 Update application.fam
396841cab6 Update manifest.yml
0a3e75dc6f Update manifest.yml
52d56bf58c Add files via upload
c38d0162ac Create manifest.yml
f5e231a1d9 Add files via upload
7004dfd622 Update application.fam
8ac8d6c988 Create changelog.md
ec5ff5d0d8 Correct error response for Q/W
1d0c66138b Update README.md
6b8727973a Add files via upload
109cc62a31 Update README.md
b01df7ac6a Update README.md
b7491d7fc8 Update README.md
02d55ebbc5 Initial commit
511f1277da Merge applications/external/portal_of_flipper updates from portal_of_flipper
6e07989026 Latest RM0213-1625-0.420.0-b07b064 on PATREON - UPD ID CARD
8af84206ae Update application.fam
b12ac48e54 Update id_card_v2.c
a1a9124e46 binwise or 0x10/0x20 to Q/W response
c3469411e6 typo in write error response
910dfee898 don't reset sequence on reset
2e9e1ad871 Reduce broadcast interval for Google
7134d7e441 Correct Google data size The advertisement payload for Google's network should be 29 bytes, not 31.
c5c0df36d5 Initial Google support
c370c90e65 Added LICENSE
f951594404 Latest RM0213-1625-0.420.0-b07b064 on PATREON - NEW RELEASE
8fbca3e264 Merge applications/external/deadzone updates from deadzone
77c0b20467 Latest RM0213-1625-0.420.0-b07b064 on PATREON - NEW RELEASE
b07b064927 Latest RM0212-1820-0.420.0-5d5af30 on PATREON - UPD RFID OFW 4069
550d5bb032 Fixed INA219 current calculation
bd5049811a Fixed VBUS voltage calculation
c53f3c0bf7 Add multiplier
066190b9a1 [FL-2754, FL-3945] EM4305 support (#4069)
ff41da7b7c Latest RM0212-1820-0.420.0-5d5af30 on PATREON - UPD PORTAL OF FLIPPER
4daa5f4b87 Latest RM0212-1820-0.420.0-5d5af30 on PATREON - UPD PORTAL OF FLIPPER
16052d6175 Remove M logging
dfc742f9bf readme for catalog
a70533e082 Latest RM0212-1820-0.420.0-5d5af30 on PATREON - RETIRE OLD STYLES
41dcc6d5ed Latest RM0212-1820-0.420.0-5d5af30 on PATREON - RETIRE OLD STYLES
7d3edddeb8 hone logging
ac379b15d4 set all loaded slots status to change on reset command
0416f25919 Latest RM0212-1820-0.420.0-5d5af30 on PATREON - OFW 4058
249decd458 Latest RM0212-1820-0.420.0-5d5af30 on PATREON - OFW 4050
d123b26b68 Latest RM0212-1820-0.420.0-5d5af30 on PATREON - UPD PORTAL OF FLIPPER
2d151b1f6a Persist high score to storage
ff4e813ab4 Fix ghost edible timer not being reset on second food
5ea20564f4 Define center
2046c9174b Fix stack size, small mutex change
aba9156319 Fix eaten ghost bugs
249331a1ed Move eaten ghost towards opposite half of screen
1cad357e58 Add background sprites
036ae3ef66 Display high score
32eafdb1ec Make ghost collider size smaller
d7af4a609c Tweak collider sizes according to pacman/ghost sprites
17d1a97315 Allow ghost to be eaten
15ebda1f85 Remove assets from repo
62a6656fcf Recreate portal logic with UID caching
86d7e8f683 Do not add new level, tweak ghost edible setting
fcfe2f5b3f add UID to pof_token
86c4c257a5 if Skylanders folder, default to that
611fa36e52 index in token name
3d143f1a58 Eating food enables ghost mode
473caf8548 add naive level reset button
26aa07ee97 Reduce L/J logging
affe219f37 update app icon
026ee80d4c Latest RM0212-1820-0.420.0-5d5af30 on PATREON - NEW RELEASE
54d87d3372 Update engine commit
1acb5a9189 add ghost logic
ed306772e4 Merge pull request #1 from evillero/main
8f1524d04f Add arrow key control
0ce62398b9 Update chess_clock.c
c5ac167a61 Latest RM0212-1820-0.420.0-5d5af30 on PATREON - NEW RELEASE
a5f8a76546 Include food entity in count when checking for empty level
f3fc2e297a Add food entity
632ec76d73 Change app name
fdadde8233 Change direction on key down
4f9ba4b21f Run "git submodule update --remote" to sync engine code
ab82c9bf21 Renamed TINA Gauge to INA Meter
822b2b928f Update Readme
f9bef88f0f Add pacman sprite, movement, and targets
8951001c43 Update README.md
a2acbc628c Update README.md
e145d4c9da Update README.md
844b59dbae Update README.md
5b26f5fe77 Update README.md
5d5af3033f Latest RM0210-1117-0.420.0-358602c on PATREON - ALREADY IN
38d58daa78 Update README.md
d91a4a20de Add files via upload
0f856e559e capital spelling for deadzone
74309fb143 Initial commit
ad5e49dd66 Reduced I2C transaction timeout
0d9f1d060c Fixed INA228 driver
8e4928764b Latest RM0210-1117-0.420.0-358602c on PATREON - UPD PORTAL OF FLIPPER
f0f439b380 Merge applications/external/gpio_explorer updates from gpio_explorer
edbe6319ec Latest RM0210-1117-0.420.0-358602c on PATREON - UPD SUBGHZ SCHED
c9a05be7d3 Latest RM0210-1117-0.420.0-358602c on PATREON - UPD SUBGHZ SCHED
3f4bbccc23 Update build.yml
dfea50c1f0 Update build.yml
8672655064 Build instructions
966f28c367 Update application.fam
59116098f8 Port to flipper zero, missing audio
d6348d7f8e Merge dev features for v2.2.
83ab17ae1b Merge applications/external/cigarette updates from cigarette
e3d7735dd0 Latest RM0210-1117-0.420.0-358602c on PATREON - PATREON BUILDS UPDATE 😄
91e201a82d Add lights for L and C
ddf0307bab set color of led for J command
e887fa0f4a Prevent crash when removing figure during read
46dbbb3e3c me brain slow
6a030ecd05 Add multiple targets and lock position of player
9fed314783 Latest RM0210-1117-0.420.0-358602c on PATREON - OFW 4095
8db7156ef3 Latest RM0210-1117-0.420.0-358602c on PATREON - OFW 4078
7d20b3ecc3 Updated workflow permissions
a398dc3679 Fixed file copy command in workflow
2de040e70b Created GitHub actions workflow to automatically build and release new versions
854b7db922 Latest RM0210-1117-0.420.0-358602c on PATREON - UPD STROBOMETER
fc5763d57f V1 finished
bb43e2aabf Fixed crash, frequency can now never be zero (default value: 1)
8e098f9f16 Latest RM0210-1117-0.420.0-358602c on PATREON - UPD VIN DECODER
d0dbc90176 Update README.md
46655077a0 Update README.md
3061d98d31 Update README.md
028ec89f3b Update README.md
5f7f525071 Update README.md
47c8f1c526 Update README.md
344375a084 Update README.md
6255628f25 Update CHANGELOG.md
c215155e07 Update vin_decoder.c
23d8a45e48 Update application.fam
478ec9eb8f Latest RM0210-1117-0.420.0-358602c on PATREON - UPD LIGHT MESSENGER
1494645109 move description to DESCRIPTION.md
38c23f2ce0 Update application.fam
0013e479bc Update application.fam
83a0c44780 Update manifest.yml
4e05c0ebe9 Updated screenshots
b0e0f2649e Updated README
1308c18c1d Updated application description
f7ac66002b Renamed changelog.md
9ce14793b8 Latest RM0210-1117-0.420.0-358602c on PATREON - NEW RELEASE
358602c2d0 Latest RM0207-2256-0.420.0-60a6c2e on PATREON & GitHub - UPD PORTAL OF FLIPPER
27332283f5 Latest RM0207-2256-0.420.0-60a6c2e on PATREON & GitHub - UPD METROFLIP
acb2db3a11 Latest RM0207-2256-0.420.0-60a6c2e on PATREON & GitHub - UPD MBEDTLS
c07eb260d2 they can speed through the entries
53887b765e set fap version
5159cb94ae Added precision settings
14ccc80d14 Added INA228 support
6819b33db3 Added INA226 settings
b7310ad04d Improved INA226 detection
c317b30e47 Latest RM0207-2256-0.420.0-60a6c2e on PATREON & GitHub - UPD METROFLIP
40961074f8 Latest RM0207-2256-0.420.0-60a6c2e on PATREON & GitHub - UPD SEADER
59e2fc5daf Added screenshots
3fa6c5cf97 Fixed github workflow
1c58fe3426 Initial commit
9826197d71 change name
dabeca9d10 dlete fucntion
f833767c89 save fucntion
17380a6f2a Latest RM0207-2256-0.420.0-60a6c2e on PATREON & GitHub - NEW RELEASE
2242e37576 bump upload-artifact@v4
ab45310f53 remove aussie seller
f8c4bfe987 Added sad idle animation and pet prompt
770a17135a Set up base and happy idle animations
91517a40eb Merge pull request #1 from Cupprum/dev
9315f9ae56 docs: update broken links in readme
e2cb512726 chore: bump upload artifact version
7cf0d139cb feat: create a pipeline for releasing the package
f05676e447 chore: update gitignore
bba7779a47 format: using clang-format, which is also verfied by ufbt lint tool
51e50b49fb format: using clang-format, which is also verfied by ufbt lint tool
e7771c5f81 chore: fix turning of leds
0abd05be0e chore: rename pictures to screenshots like in other flipper projects
a17b027627 docs: minor readme update
3ffc9ca68f docs: minor readme update
e237bba94b chore: copilot helped me with refactororing readme
3646fd8f17 docs: update readme
b66ea78481 feat: change red led to white, so it would shine brighter
86d9f36c7d fix: couple more minor bugs
2d6d0a0354 fix: couple of minor bugs and refactor timer
f0143c624e Latest RM0207-2256-0.420.0-60a6c2e on PATREON - NEW RELEASE
60a6c2e79f Latest RM0207-1202-0.420.0-b84c536 on PATREON - UPD METROFLIP
641cc4230d Merge applications/external/metroflip updates from dev metroflip
e8363a027b Latest RM0207-1202-0.420.0-b84c536 on PATREON - UPD SUBGHZ SCHEDULER
e0d70441aa pre-functional stuff for mfc data loading
5a412490c3 lint
66ef51182c Merge applications/external/metroflip updates from dev metroflip
eaee873c1f fix smartrider
5e40d55d4b add mifare classic loading
353f64e1ff Fixed load error introduced in last push re: check_file_ext
73bc4b93ec Updated README.md
07801a0251 Update CHANGELOG.md. Increment version to 2.1.
3e88673860 Fixed NULL dereference error during load_file. NULL extension filtering intermittently crashed on OFW, completely breaks on Momentum 009.
ce7c7b2106 Latest RM0207-1202-0.420.0-b84c536 on PATREON - UPD CIGARETTE
5642f23fd0 Merge applications/external/metroflip updates from dev metroflip
c09aa88458 remove ds store
32997adc89 Latest RM0207-1202-0.420.0-b84c536 on PATREON - NEW RELEASE
b189d4ea7d added 'about'
b84c536c63 Latest RM0206-1555-0.420.0-0ff1de4 on PATREON - UPD DEADZONE
cc054f36c9 Latest RM0206-1555-0.420.0-0ff1de4 on PATREON - UPD CIGARETTE
55cfdfcd22 Merge pull request #8 from fuckmaz/release
462f38e961 Merge pull request #7 from fuckmaz/dev
a529cc0a93 Latest RM0206-1555-0.420.0-0ff1de4 on PATREON - UPD METROFLIP
ad5d473d43 b day icon employed
57f9ea6e3a updated changelog
98fcdd1000 Top Left frame full rework
541847498e - added cancer progress bar - some minor layout & wording changes - slay
32fc35f1a4 bug fixes implement & player health increased
046559c1b3 mobile born suica & mobile logo deployed
56803c4af6 Merge branch '0.5+load+suica' of https://github.com/zinongli/Metroflip into 0.5+load+suica
529616b29e add mobile line logo
a9bdf5f911 Latest RM0206-1555-0.420.0-0ff1de4 on PATREON - UPD METROFLIP
61c271f425 complete keihin tohoku, added Utsunomiya line
d85d89a071 Latest RM0206-1555-0.420.0-0ff1de4 on PATREON - UPD METROFLIP
cb19fe494c debug mobile phone recognition issue
f038742914 entry slider stopper & move date frame by 2 px
d3da437f99 entry stop pngs
4b038cbe83 entry slider
e0e445e0f5 Latest RM0206-1555-0.420.0-0ff1de4 on PATREON - UPD FUTURE ASSETS
abbc081a14 entry slider png upload
1cf20baeb8 Latest RM0206-1555-0.420.0-0ff1de4 on PATREON - ADD DEADZONE
293bb4f7eb Latest RM0206-1555-0.420.0-0ff1de4 on PATREON - ADD DEADZONE
f1bef6e88c Add 'applications/external/deadzone/' from commit '5eaa85736c30684af4f5b4bda5179fe0cf28dcde'
5eaa85736c remove image link due to requirements
6675f35c0b adjust to maximum header depth requirements
fffb3cbcdf add flipper zero screenshots
b01d34454b making icon black and white
854f7c62b6 refinement of readme
b6a1c806b9 Merge branch 'master' of https://github.com/retrooper/deadzone
e050c6c4dc retitle to DeadZone
7ab247c3c1 Update README.md
277040ba10 move game_screenshot to screenshots folder
54aebd7964 Update README.md
9f8030f047 post game screenshot
b253082f06 Merge branch 'master' of https://github.com/retrooper/deadzone
7af864d4b7 fixed positioning of welcome message
917b6307d8 Update README.md
d4a4cc4783 Merge pull request #1 from retrooper/npc-ai-training
feb7309d06 various bug fixes for tutorial scene
7368d03588 background scene added, tombstown added, and statistics after game end added
fe39e80a72 Latest RM0206-1555-0.420.0-0ff1de4 on PATREON - NEW RELEASE
0ff1de4d52 Latest RM0205-1648-0.420.0-2f4a2d0 on PATREON - ADD PORTAL OF FLIPPER
121c264834 Add 'applications/external/portal_of_flipper/' from commit '7abc767ead595cae291457a9bb5526616d3e9314'
272f1a41ec Merge applications/external/longwave_clock updates from longwave_clock
ee6e6909d4 Merge pull request #10 from m7i-org/feat/hires_scrn
8dfcc5835c Hires screenshot
98cb6d605f Add a grave to player's death location upon death.
467c9b8515 Show failure in UI if usb not setup
02cc59c061 Fix crash on exit
a6c4733d13 Latest RM0205-1648-0.420.0-2f4a2d0 on PATREON - UPD CIGARETTE
7abc767ead format readme for catalog
08ff7d9f79 format readme for catalog
d916b28ac1 readme, changelog, screenshots
94bbf8b1df Merge pull request #6 from jaylikesbunda/dev
206e208783 Latest RM0205-1648-0.420.0-2f4a2d0 on PATREON - FIX IMGs
c2ebcb7c2a Latest RM0205-1648-0.420.0-2f4a2d0 on PATREON - ADD LIGHT MESSENGER
3ff4b2eab6 Add 'applications/external/lightmessenger/' from commit 'fde9a73ec829929be4d5d9f49887ef6e775e2f6f'
ddadf1cdf3 Latest RM0205-1648-0.420.0-2f4a2d0 on PATREON - UPD Strobometer
7e984f0466 Latest RM0205-1648-0.420.0-2f4a2d0 on PATREON - UPD CROSSREMOTE
74048c86d5 Latest RM0205-1648-0.420.0-2f4a2d0 on PATREON - UPD CROSSREMOTE
ab3861149b Latest RM0205-1648-0.420.0-2f4a2d0 on PATREON - UPD SUICA METROFLIP
1b45194cd6 Fix output pin info display alignment in strobometer app
5d2b3c5fd1 game closes when you press back when dead.
635b0a5883 enabling weight uniqueness, so that two npcs are not the same.
58618b5fa8 working on background assets, highscore feature implemented.
fde9a73ec8 Modify application.fam to match appstore prequisites
2d7ae9c1ab move screenshots
68900a5939 add changelog
69194d1ed5 Merge pull request #30 from leedave/feature/bugfix_firstsave
128f5b1caf Bugfixes firstsave & SubGHz RAW loop transmit
ff2a7897ac Add new file
cc0bf2e7a7 public release
09524ebd35 graphics
558a3bb958 add extra last drag with a 'cough'
bdcf0b7186 Latest RM0205-1648-0.420.0-2f4a2d0 on PATREON - UPD SUICA METROFLIP
195321e2dc add game submenu (pvp, pve, story)
df9e777f0d Latest RM0204-1915-0.420.0-c2a3166 on PATREON - UPD SUICA METROFLIP
3ba60fa674 Latest RM0205-1648-0.420.0-2f4a2d0 on PATREON - NEW RELEASE
f08c0a0c2d update enemy collision
2f4a2d0560 Latest RM0204-1915-0.420.0-c2a3166 on PATREON - UPD SUICA METROFLIP
be2be37bff update player during game + fix enemy state
f994022269 update enemy state
403c0dd9c0 Latest RM0204-1915-0.420.0-c2a3166 on PATREON - APP README UPDs
092bb33da0 Merge pull request #9 from m7i-org/feat/add-gpio-picture
a781fa13c4 Added bigger animated flipper
741e05ba03 Cleanup
0248c4f369 Initial commit
4ef65e6428 Initial commit
2244aff7ee Latest RM0204-1915-0.420.0-c2a3166 on PATREON - UPD SCHDULER NOT WORKING
71e36cf546 cleanup
d33a2eefcb added screenshots
f2ac15fb3f Out of the sand
a3e70a5d2e Latest RM0204-1915-0.420.0-c2a3166 on PATREON - UPD STROBOMETER
516a0e5746 Merge applications/external/cigarette updates from cigarette
1122299c2a Latest RM0204-1915-0.420.0-c2a3166 on PATREON - UPD METROFLIP
6b1e4b279b Update README.md
d1ffc5dc51 Merge applications/external/longwave_clock updates from longwave_clock
d34484dd0f Latest RM0204-1915-0.420.0-c2a3166 on PATREON - SUBGHZ SCHEDULER FIXES?
674d84a2a1 add skinny cigarette
19fc2c37ef Latest RM0204-1915-0.420.0-c2a3166 on PATREON - UPD SUBGHZ SCHEDULER
6988e2ee15 Merge pull request #8 from m7i-org/feat/add-animation
cb35733265 Created a gif from screenshots
0a7235fa1b Merge remote-tracking branch 'origin/main'
ab1da29a6f version 1.1: Add output pin info display and fixed PWM control logic
bd5c36cbeb Add output pin info display and fixed PWM control logic
18f362f00e red notif on 'light up'
d511ab7f58 slightly move text
84bba8f6a0 add stats
031f39eeea mosgortrans api
b74210134a Merge branch 'dev' of https://github.com/luu176/Metroflip into dev
325a271321 fix troika
f6eb53a431 finally fixing the issue. stopped poller when it's not on
4237287b40 Update suica.c
c3f3d0962d debug memory leak. read after load still bug
f0a7e6db4c Catch mobile suica IC code case
7099993a9b new vending machine image
db02f2a665 off load more drawing callback and add bar to store
9c4f12e126 reinitialize history for each parsing
23b64b8427 drawings fixes
39c87e9cb9 fix pixels
4544205ab5 offload drawing functions
fd3ced7b36 somehow can't enter plugin
be95c158d1 assets and additions
8514f101c9 finally fixing the issue. stopped poller when it's not on
fe9d5618b7 Update suica.c
9a15af52a0 debug memory leak. read after load still bug
8eb7cccd0b Catch mobile suica IC code case
2d17c0703a Perfection!
a5912f9112 adjust the U in thank you
47785e5987 add thank you banner to vending
967b7f239e new vending machine image
e9f78c9f4f off load more drawing callback and add bar to store
f900e38eb0 reinitialize history for each parsing
1f56178894 drawings fixes
4d40d1ffd8 fix pixels
8289c1bc83 offload drawing functions
d7515b218d Felica detection in auto
1e3ff60198 manifest plugin
646da44985 somehow can't enter plugin
bc500599b6 Revert "api icon"
67a2c48988 Update metroflip_i.h
ab461ce75e api icon
f65c69dc60 assets and additions
bf3d50aab4 Update manifest.yml
2012b48407 Merge pull request #42 from zinongli/dev
3bc995e136 Merge branch 'dev' of https://github.com/zinongli/Metroflip into dev
e579e30056 Fix several edge cases
2813ac6adb Updated CHANGELOG.md
a01e7bdc2c Comment
401b95639a Updated icon locations. Incremented major version.
63b1dbc00e Updated icon locations. Incremented major version.
002e633f80 Updated README and CHANGELOG.
029326579b Updated README.md
7dc07697c8 Update README.md
94776cfd7e Changed inter-transmission delay text from '1 sec' to '1000ms' for consistency
faea493f8b Added screenshot.
c1d922506c Update README.md
b4dcfa6c3f Added new screenshots.
406ca9ac02 Update CHANGELOG
21d6ceeb10 Update README, CHANGELOG. Enable inter-transmission delay for repeated transmissions instead of just playlists.
b9ce1f2f5a Enabled adjustable inter-signal delay at 100, 250, 500, and 100 milliseconds
477a3813c6 bump to 0.6
8803b38b43 Updated run view layout.
978c4dadca Fixed one-shot scene exit. Fixed tx repeats bug that would lock up the Flipper.
8b04ae7b7e Fixed intermittent loadscene crash
e8786dbf06 Added 'x1' to repeats text list for completeness.
27d575862d Fixed intermittent loadscene crash
0f6d1e4530 scenes/scheduler_scene_loadfile.c
8e31287f16 Update CHANGELOG
dd05ad8b6f Latest RM0204-1915-0.420.0-c2a3166 on PATREON - NEW RELEASE
ff328892d3 some progress on continuous levels.
b8f7cd601f bump to 0.6
191d028fc7 Update build.yml
d940d818fd Update README and CHANGELOG
9a0a98619c Added small delay after disabling battery charging and before transmission.
72573496eb Update for new modes.
221691ca71 Scene change for one-shot mode.
fc4dd83c79 Changed mode selection to 'Normal, Immediate, One-Shot'
156f039014 Changed mode selection to 'Normal, Immediate, One-Shot'
c2a31660ad Latest RM0202-1742-0.420.0-8f597b8 on PATREON - ADD GPIO EXPLORER
1fc0488b06 Add 'applications/external/gpio_explorer/' from commit 'a1e00e3f97e5f3981e86f3e5701164eb4c78fd5c'
5671f59d87 Latest RM0202-1742-0.420.0-8f597b8 on PATREON - ADD LONGWAVE CLOCK
69b5115506 Add 'applications/external/longwave_clock/' from commit '85317993287ae00334423d88cde220212e791732'
d00086abec Fixed missing dealloc if file load error.
b981e96300 Cleaned up transmission alloc/dealloc.
a1e00e3f97 Merge branch 'main' of https://github.com/EvgeniGenchev07/gpio_explorer
7bbf779282 information updated
987c2c0799 Update application.fam
a5fd177694 Merge applications/external/keycopier updates from keycopier
68f91294ee Latest RM0202-1742-0.420.0-8f597b8 on PATREON - UPD STROBOMETER
0bd62125d6 Update application.fam
8531799328 Merge pull request #7 from m7i-org/feat/prepare-for-publishing
39d191ad1c Added catalog screenshots
4f12a49b67 Merge pull request #3 from m7i-org/feat/prepare-for-publishing
2039ae5f7e Improved README
e3bb72b2a3 Merge applic…
RogueMaster added a commit that referenced this pull request Mar 29, 2025
d56fdf50bf flipper-plane
89716a9b00 Updated for fixed/parity bits
ee5700301b Update README.md
7f3dd18619 Update README.md (Keri)
78b32961b7 Encode Keri FC/Card into a HEX value
4d0e89c68d Backup JS example
d6b240b9f3 Add copy of readme to main project
5f4ba07127 Air Level v1.0
5123806283 Merge branch 'main' of https://github.com/jamisonderek/flipper-zero-tutorials
2ec9c96ef9 Initial (copy air_arkanoid)
23259f33d7 Update sensor.js
1993ee2866 WARNING: Dumps ALL passwords, even secure ones
15275bf7ff Merge branch 'main' of https://github.com/jamisonderek/flipper-zero-tutorials
fa3e4cb936 lucky rewritten with best practices.
f77cb78c8b Update README.md
4f415d2715 training files outdated, use firmware examples.
e41d57c7a4 Update VGM documentation
7702caeebb Update script for new API
696b15e4b7 Updated sample for new APIs.
f23f996d52 Updated script for latest API
691354c8e8 Update script
b907dbf7a3 Add debug tool to mount drive.
d929b41ea6 Update badusbdemo for MNTM-008
48ee1bbba0 Update ADC example for MNTM-008
5eb8b97cee Merge branch 'main' of https://github.com/jamisonderek/flipper-zero-tutorials
039a8186b7 Archive old JavaScript files.
9adc9ff9ca Merge pull request #32 from Einstein2150/main
36d68f0ebc Update README.md
REVERT: 681cf58575 Latest RM0322-2301-0.420.0-145d3cc on PATREON - FMT
REVERT: ab205640c6 Latest RM0322-2301-0.420.0-145d3cc on PATREON - UPD NFC MAKER
REVERT: 1368af52be Latest RM0322-2301-0.420.0-145d3cc on PATREON - 4x MFW
REVERT: dda20af6d8 Latest RM0322-2301-0.420.0-145d3cc on PATREON - Changes From Willy-JL
REVERT: 6b63a0238f Merge applications/external updates from jamisonderek
REVERT: aa4abf8c44 Squashed 'applications/external/' changes from d56fdf50bf..2eb5a5ef41
REVERT: 2eb5a5ef41 Latest RM0322-2301-0.420.0-145d3cc on PATREON - UPD PC MON
REVERT: 04987c805e Latest RM0322-2301-0.420.0-145d3cc on PATREON - UPD KEYCOPIER
REVERT: a2defe50a5 Latest RM0322-2301-0.420.0-145d3cc on PATREON - UPD SIO
REVERT: 190f23152e Merge applications/external/sio2flip updates from sio2flip
REVERT: 370d046b82 prepare for publish. also fix format list exit callback
REVERT: f272218221 Add TalkingSasquach's video QR
REVERT: 7453d6906e Fix displaying of the last accessed sector
REVERT: 50dd9a9f9b Merge pull request #32 from Offreds/main
REVERT: 9f8b77bb68 Add new disk menu command
REVERT: 494962efc8 Remove backticks from README
REVERT: cd126448dc Add CHANGELOG
REVERT: f9e637006e Increment app version
REVERT: 9982582a7e Disable led blinking during battery charging
REVERT: 8d3e59c381 Fix recording while led blinking is off
REVERT: 0f31eda27c Version bump + changelog
REVERT: ae7224f050 Backlight (#13) + blue LED during communication
REVERT: 62bcbaf012 Merge applications/external/solitaire updates from solitaire
REVERT: 6795672436 Latest RM0322-2301-0.420.0-145d3cc on PATREON - UPD PCMON
REVERT: 07078d067b Latest RM0322-2301-0.420.0-145d3cc on PATREON - UPD TOTP
REVERT: a50a2f4117 Merge branch 'main' of https://github.com/bettse/seader into 420
REVERT: b9d35d43ec Latest RM0322-2301-0.420.0-145d3cc on PATREON - UPD SPI TERM
REVERT: c1710da3d5 Merge applications/external/sio2flip updates from sio2flip
REVERT: 23b4719851 Latest RM0322-2301-0.420.0-145d3cc on PATREON - UPD FMATRIX
REVERT: abe9251f00 Merge applications/external updates from jamisonderek
REVERT: 32155eb910 Squashed 'applications/external/' changes from 89716a9b00..d56fdf50bf
REVERT: bc9acd9fd8 chore: Updated version
REVERT: 64e5e462c5 docs: updated CHANGELOG
REVERT: daccf2c832 docs: updated CHANGELOG
REVERT: d05098c9ea fix: HOTP counter is not increasing when "OK" button long-pressed (#254)
REVERT: 07da9679df remove '_site'
REVERT: 3fc2827b8f Add comparison table
REVERT: 0d16193193 Add favicon and apple touch icons
REVERT: af47d3a3aa scroll screenshots
REVERT: ff8d8d89c9 Tweak webpage
REVERT: cbc368eab8 Update application.fam
REVERT: 7cc6ec5baf Version bump for README update
REVERT: 31685c450e Update README.md
REVERT: 5e93147f96 i'm lovin it
REVERT: b3ac3fd04b Imagine replacing a uses line with an entirely different action?
REVERT: a1311cec1a Update build.yml #5
REVERT: 6839805a32 Update build.yml (testing #3)
REVERT: c1b7d7cbfe Update build.yml (testing #2)
REVERT: 2abb2ee851 Fix build.yml (testing)
REVERT: de8cb5eb6d I'm so sorry
REVERT: 567c024946 Moved App Catalog files to a subfolder
REVERT: b458da3637 Increased app version
REVERT: a5bf9b92ed fmatrix v0.3.5
REVERT: f336d5574d Forgot about that
REVERT: c4901de9e3 Flipper App Catalog fix
REVERT: 8c5569abc3 Update assets
REVERT: d382e45383 update .gitignore
REVERT: df2019b02b Add XF-551 high-speed mode support
REVERT: 98e61b8189 Fix switching between high/standard baud rates
REVERT: 469a08dec6 Latest RM0322-2301-0.420.0-145d3cc on PATREON - NEW RELEASE
REVERT: 145d3cc41d Latest RM0320-2347-0.420.0-16dfec3 on PATREON - UPD PC FAM
REVERT: 8c4a5e20fe Latest RM0320-2347-0.420.0-16dfec3 on PATREON - UPD PC README
REVERT: 4e7684ad40 Merge branch 'main' of https://github.com/Alex4386/f0-mtp into 420
REVERT: 804d1ae5cc Latest RM0320-2347-0.420.0-16dfec3 on PATREON - UPD SIO
REVERT: 605f08c402 Changelog for 1.1.0
REVERT: 9119a535ef Added format with skew command
REVERT: 50a51f80e8 Fix data returned by format command
REVERT: 20531af805 Update README
REVERT: 8cc31c1d21 Update screenshots
REVERT: d777a86c65 Fix disk write-protect bit persistence
REVERT: 560b2dd26b Add baudrate settings
REVERT: 6dd9012cef Fix crash on empty configuration file
REVERT: 8815d076cf docs: update docs
REVERT: 7277dfdb1c Latest RM0320-2347-0.420.0-16dfec3 on PATREON - UPD FLIPWORLD
REVERT: e15a222c68 Merge pull request #19 from jblanked/dev_0.7
REVERT: e09dd37429 FlipWorld v0.7
REVERT: dd5e6114ae Latest RM0320-2347-0.420.0-16dfec3 on PATREON - UPD PC MON
REVERT: 2611c2ae48 Screenshot + visual improvement
REVERT: 2c43e9c8e2 Actions update
REVERT: f4d0bd580e Update 1.1
REVERT: 53af472e7f Merge applications/external/nfc_apdu_runner updates from nfc_apdu_runner
REVERT: a362e88a92 Squashed 'applications/external/nfc_apdu_runner/' changes from b167041fc1..54e0170b4b
REVERT: dafa4abf63 Latest RM0320-2347-0.420.0-16dfec3 on PATREON - Spelling Mistakes
REVERT: dbb0756601 Latest RM0320-2347-0.420.0-16dfec3 on PATREON - NEW RELEASE
REVERT: 16dfec3bf0 Latest RM0316-2318-0.420.0-d116354 on PATREON - UPD SIO
REVERT: 12c53b5a6f disable PER support
REVERT: 12092dab65 Update application.fam
REVERT: dc2838f277 Merge applications/external/sio2flip updates from sio2flip
REVERT: c946e866f6 Disable LED blinking during battery charging
REVERT: d0c1ac45d6 Merge applications/external/sio2flip updates from sio2flip
REVERT: aa6f47e613 Merge applications/external/gpio_ina updates from gpio_ina
REVERT: bc0267123a Fix LED blinking config not applying properly
REVERT: 54e1f15e0f code cleanup
REVERT: 4cca9b6931 Fix README to not use backticks
REVERT: 1fa87b110b Remove unintended references from CHANGELOG
REVERT: 8d2f28607d Latest RM0316-2318-0.420.0-d116354 on PATREON - UPD SIO
REVERT: 4f21305f7f Latest RM0316-2318-0.420.0-d116354 on PATREON - NO UPDs NFC APDU
REVERT: a88828a8e4 Squashed 'applications/external/nfc_apdu_runner/' changes from a88da813c2..b167041fc1
REVERT: 66a9d7251a slow down player movement
REVERT: 8c1c403ac1 bump to 0.7
REVERT: 6648f9337d Added high-speed transfer
REVERT: fe453162be Add support for non-standard disk geometries
REVERT: f829269289 Latest RM0316-2318-0.420.0-d116354 on PATREON - NEW RELEASE
REVERT: 1bf8775227 Latest RM0316-2318-0.420.0-d116354 on PATREON - NEW RELEASE
REVERT: a407dcfb6b update
REVERT: 3e6a843a6d update
REVERT: 91f1db3299 update
REVERT: d0a168d918 update
REVERT: d1163544f4 Latest RM0314-1528-0.420.0-86a8013 on PATREON - ADD SIO2FLIP
REVERT: 9bf28fe060 Add 'applications/external/sio2flip/' from commit 'c611b6af49a6b42ea16cb307582b89be4497143f'
REVERT: e242b42417 Latest RM0314-1528-0.420.0-86a8013 on PATREON - REMOVE GENIE
REVERT: 48981e6ae8 Latest RM0314-1528-0.420.0-86a8013 on PATREON - UPD SUBGHz
REVERT: 813626c03b Latest RM0314-1528-0.420.0-86a8013 on PATREON - UPD SUBGHz
REVERT: 464dc7619e subghz bugfixes and experimental options
REVERT: 8fb275c29d Latest RM0314-1528-0.420.0-86a8013 on PATREON - NO PIPE NO INA UPD
REVERT: c611b6af49 Improve disk formatting and PERCOM support
REVERT: 92e5e38a8a Latest RM0314-1528-0.420.0-86a8013 on PATREON - REMOVE NON FLIPPER CODE
REVERT: 8a6f7db256 Latest RM0314-1528-0.420.0-86a8013 on PATREON - UPD FLIPWORLD
REVERT: 37f9318598 Merge applications/external/nfc_apdu_runner updates from nfc_apdu_runner
REVERT: 22db4fd747 Report disk geometry in drive status byte
REVERT: 03b5b64c6a Add basic disk format command
REVERT: 7d143b8ac3 Add disk geometry commands
REVERT: 9b804cddd0 Fix sio driver bug
REVERT: c8ecaaedcb complete animation
REVERT: 39b7c6c341 update animation
REVERT: ebb4b7e7d1 NFC全息动画组件
REVERT: 5a8a3d462c 更新多语言支持,简化NARD相关文本,移除最近活动部分,优化界面信息以提升用户体验。
REVERT: 440ea579eb 优化TLV视图组件的表格布局,调整列宽和文本显示方式,确保内容在不同屏幕下的可读性。
REVERT: b01d30faf9 添加多种颜色标签支持,移除描述字段,优化TLV视图组件的标签显示方式。
REVERT: a573e6a6ac Merge branch '420' of https://github.com/RogueMaster/flipperzero-firmware-wPlugins into 420
REVERT: 5dbd185459 FIX GAME MODE MAPs
REVERT: 41884d9567 Merge applications/external/nfc_apdu_runner updates from nfc_apdu_runner
REVERT: d60812d082 更新多语言支持,修改标签显示为“Hex”,添加复制标签功能及相关提示信息。
REVERT: 8d0046e847 增强TLV数据分析功能,支持嵌套TLV格式,添加提取标签功能及错误处理,优化界面文本和加载动画。
REVERT: e60146ce41 更新API响应结构,确保响应代码不为空;在前端添加axios依赖并调整代理设置;优化多语言支持,更新界面文本以增强用户体验。
REVERT: 67e7368f3c web support english and chinese
REVERT: cf9eaea530 update loading animation
REVERT: 29bb8fa94c update release
REVERT: 8785966ae9 framework change
REVERT: f38c23d3db add loading
REVERT: 9fced9a644 init web
REVERT: 48ce52196b Update README
REVERT: eef3ad05b2 Latest RM0314-1528-0.420.0-86a8013 on PATREON - UPD FLIPSOCIAL + FMT
REVERT: 86cc1c8f31 Merge applications/external/nfc_apdu_runner updates from nfc_apdu_runner
REVERT: c999bcd252 Latest RM0314-1528-0.420.0-86a8013 on PATREON - UPD INA METER
REVERT: 597873252b fix
REVERT: 2d249c5de1 update
REVERT: 228ccae8ab update
REVERT: aaf942efd2 Merge pull request #27 from jblanked/dev_1.1
REVERT: bd31eaa8c9 FlipSocial v1.0.4 (new server backend)
REVERT: dde0875e4d FlipWorld v0.6.1
REVERT: 952c2ab264 Added license
REVERT: bea5503bd5 Add some screenshots
REVERT: 354e8d461b Show only filename and extension, hiding the path
REVERT: aba334d812 Fix github worflow
REVERT: 63ad5c70c4 Initial commit
REVERT: dc226f3d1e Merge applications/external/nfc_apdu_runner updates from nfc_apdu_runner
REVERT: 8349535368 在wapi.go中禁用HTTPS,仅启用HTTP监听器以简化服务器配置。
REVERT: b4b8468853 更新测试用例文档,添加NARD格式模板、Flipper设备和TLV相关的测试用例信息,并同步测试用例表格。修正README中的最后编辑时间。
REVERT: 6a42728252 update
REVERT: f336e8007f tested get file content
REVERT: bd7de02107 Fix confirmation dialog headers
REVERT: 2fe178e3ae Add confirmation dialogs
REVERT: bbc2aa8015 nfc_analysis_platform auto test framework complete all tests pass,then need and get file from flipper test
REVERT: d2b396ecba update
REVERT: 46ae5bd997 update
REVERT: 3320a4a87d Add new screenshot
REVERT: d6080dd3ef Add recording to the CSV file
REVERT: 0cd3c0edf6 Prepare current gauge screen for log button
REVERT: 08d178d7c7 fix test
REVERT: f67349a3fc Add unix timestamp to the SensorState structure
REVERT: f09d8a3879 取消跳过 TLV API 测试的注释。
REVERT: 2a085802cd 增强命令行测试功能,支持通过环境变量控制错误输出,并更新相关文档和测试用例。
REVERT: 805ff5a73e update test tool
REVERT: 8d5ae66aaa fix cmd test
REVERT: ceb617bc7d update tests
REVERT: 9495641976 添加nfc_analysis_platform测试工具
REVERT: 38b8a2c04f support webapi (need test)
REVERT: 59b01bc9ed Latest RM0314-1528-0.420.0-86a8013 on PATREON - NEW RELEASE
REVERT: 86a8013ba9 Latest RM0313-1700-0.420.0-4fffa17 on PATREON - UPD simul_uhf_rfid
REVERT: 25620806fe Latest RM0313-1700-0.420.0-4fffa17 on PATREON - UPD simul_uhf_rfid
REVERT: 1084e6bf6d adding epc scroll pause
REVERT: cf3bf04de2 updating changelog, app fam, readmes
REVERT: c598224ef9 Latest RM0313-1700-0.420.0-4fffa17 on PATREON - UPD simul_uhf_rfid
REVERT: e011d2cc0e Merge applications/external/simultaneous_rfid_reader from simul_uhf_rfid
REVERT: c03085465d adding epc scroll pause
REVERT: fce9f053e1 adding epc scroll pause
REVERT: a2705a39ff Latest RM0313-1700-0.420.0-4fffa17 on PATREON - FMT
REVERT: 6dac9e4179 Latest RM0313-1700-0.420.0-4fffa17 on PATREON - OFW 4149
REVERT: 4800c8a8fe Latest RM0313-1700-0.420.0-4fffa17 on PATREON - UPD LM
REVERT: e0d185dcbd Latest RM0313-1700-0.420.0-4fffa17 on PATREON - ADD SPACE IMPACT II
REVERT: 26f11b2390 Merge pull request #20 from tixlegeek/tixlegeek/dirty-timer_flush-workaround
REVERT: 2714ba1ef5 added quick fix for older core's versions
REVERT: b297fdeeb4 Add 'applications/external/space_impact_ii/' from commit '5f618a1bb269cfea799699e7fe0f6567e2a8f9c9'
REVERT: 660291b690 update swagger
REVERT: 64c594fa80 Latest RM0313-1700-0.420.0-4fffa17 on PATREON - UPD NFC APDU
REVERT: de42d3ad81 wapi docs
REVERT: 477de05834 删除 ResponseDecoder 工具的所有相关文件,包括源代码、文档和格式文件,完成迁移至 nfc_analysis_platform 的 nard 子命令。
REVERT: 5e4b4ee3eb update readme
REVERT: 6f633b6aff Update README_CN.md
REVERT: 6b7bc9d2c6 Update README.md
REVERT: 27ee18ea7a update readme
REVERT: 8328f37a2a 更新 .gitignore 文件,移除 tlvtool 的忽略规则。
REVERT: 7e1f23bfcc Delete tools/nfc_analysis_platform/nfc_analysis_platform_macos
REVERT: e23788203a Merge pull request #3 from SpenserCai/nfc_analysis_platform
REVERT: e915d105dc 更新 GitHub Actions 工作流,将 ResponseDecoder 工具替换为 nfc_analysis_platform 工具,调整相关路径和构建步骤,以支持 Windows 和 macOS 平台的编译和发布。
REVERT: f62f2e4946 更新 README 文档,替换 APDU 响应解码器为 nfc_analysis_platform 的 nard 子命令,并添加迁移提示。确保文档内容一致性。
REVERT: 224271507f update
REVERT: 50b3380629 init
REVERT: 5f618a1bb2 Adds github workflow, screenshot, changelog,  and updates application.fam
REVERT: a29280d3b4 Update license
REVERT: 4d822187f8 更新交通卡 APDU 脚本,添加多个交易记录的解析字段,包括交易序号、交易金额、交易类型、终端号和时间,以增强响应解码器的功能。
REVERT: 2b5e70962d Merge applications/external/nfc_apdu_runner updates from nfc_apdu_runner
REVERT: 835edc6211 Latest RM0313-1700-0.420.0-4fffa17 on PATREON - NEW RELEASE
REVERT: 8d0c2d56f9 将电子公交卡名字修改为公交卡
REVERT: 38a9965fe0 Merge pull request #14 from MadLadSquad/auto
REVERT: 53b53aa15c auto
REVERT: c1e13157fe Update release.yaml
REVERT: 87b5afca17 Latest RM0313-1700-0.420.0-4fffa17 on PATREON - NEW RELEASE
REVERT: 4fffa173fd Latest RM0311-1641-0.420.0-963a181 on PATREON - UPD NFC APDU
REVERT: dd8784f65e Latest RM0311-1641-0.420.0-963a181 on PATREON - UPD NFC APDU
REVERT: 4bfc401303 Support EMV Card (MasterCard is tested)
REVERT: e3bbb3b34f Delete apdu_script/.DS_Store
REVERT: d0e483397a Delete .DS_Store
REVERT: 1fd0153928 更新 README 文档,修正中文内容为英文翻译,增加脚本格式说明和示例,完善自定义脚本创建步骤及注意事项,确保信息准确易懂。
REVERT: 32a1295bcc Latest RM0311-1641-0.420.0-963a181 on PATREON - UPD NFC APDU
REVERT: 7bb95f3847 更新版本号至0.3,修正应用程序和文档中的相关信息。同时在 nfc_worker 中添加错误信息处理,确保在 APDU 命令执行失败或超时时立即触发失败回调,提升用户体验。
REVERT: 2787253efa 在 nfc_worker 中添加错误信息处理,增强 APDU 命令长度检查,确保在错误情况下正确触发回调。更新 nfc_apdu_runner_scene_running 以显示自定义错误信息,优化用户体验。
REVERT: a682a6cc01 Merge applications/external/nfc_apdu_runner updates from nfc_apdu_runner
REVERT: 1cc835ab87 增强 nfc_apdu_script_parse 函数,支持多行格式的命令解析,清理多余空格以提高解析稳健性。同时更新 E_TRAVEL_CARD_SH.apdufmt 文件,添加有效时间字段的解析。
REVERT: b5934517fe Latest RM0311-1641-0.420.0-963a181 on PATREON - UPD NFC APDU
REVERT: 446f7727ae 1. Implement mathematical expression evaluation and slicing functions in ResponseDecoder, enhancing expression parsing capabilities. 2. Update the README document to include explanations of hexadecimal to decimal conversion and mathematical operation functions.
REVERT: 624af89cdb Latest RM0311-1641-0.420.0-963a181 on PATREON - UPD NFC APDU
REVERT: 158f687529 Latest RM0311-1641-0.420.0-963a181 on PATREON - UPD NFC APDU
REVERT: 2de13fdb1d Latest RM0311-1641-0.420.0-963a181 on PATREON - OFW 4146
REVERT: a39cb5d50b Latest RM0311-1641-0.420.0-963a181 on PATREON - UPD NFC APDU
REVERT: 7bb370ce26 Latest RM0311-1641-0.420.0-963a181 on PATREON - UPD NFC APDU
REVERT: 47571eeb09 support get_aid brute
REVERT: ac9527d9ac 更新上海电子公交卡读取脚本(TM的有8块钱工本费我说余额怎么算出来不对呢)
REVERT: b20be145bd update readme
REVERT: 07efe54754 update
REVERT: 303d07353b update
REVERT: 6a036cdba2 update
REVERT: 61b9e28ea9 update
REVERT: 922b983bf9 更新 GitHub Actions 工作流以支持 Windows 和 macOS 平台的 ResponseDecoder 工具构建。新增构建步骤和上传构建产物的功能,同时调整了发布目录结构以适应多平台构建结果。
REVERT: c9d30c1446 修复 cleanString 函数中的正则表达式,允许斜杠和加减号等符号。此更改增强了字符串清理功能,以支持更多字符的保留。
REVERT: 5e70818322 更新 ResponseDecoder 文档和代码,增加自动检测和报告失败的 APDU 命令功能。新增调试模式以显示错误信息,并在解码过程中收集错误信息。相关代码进行了重构以支持新的错误处理机制。
REVERT: 2ea6fe31ec update README
REVERT: 3ee329bb4b 删除 ResponseDecoder 工具的英文文档和相关文件
REVERT: 8308f9d0a2 update
REVERT: af7d2d0a26 更新 ResponseDecoder 英文文档和示例文件
REVERT: d80b38fe34 support use tlv command in response_decoder command
REVERT: 8a5ab91446 update tlv tool
REVERT: 6224734a13 support tlv need test
REVERT: 47628a7ec9 update
REVERT: 08ba33782f update
REVERT: 705ef7a124 update
REVERT: cf53340357 update
REVERT: 9a58014395 update release
REVERT: a30e01f466 修改 ResponseDecoder 构建配置以支持 macOS ARM64 架构
REVERT: 053a2c3be6 更新关于页面和构建工具
REVERT: 13f28a349b Latest RM0311-1641-0.420.0-963a181 on PATREON - NEW RELEASE
REVERT: 963a181f64 Latest RM0309-1930-0.420.0-0ef732f on PATREON & GitHub - ADD NFC APDU
REVERT: e9dba8d6fc Add 'applications/external/nfc_apdu_runner/' from commit 'a88da813c2660bfec23d831a2c3e518ade9d510f'
REVERT: a88da813c2 升级 NFC APDU 运行器版本号
REVERT: b246176866 优化 NFC APDU 运行器场景资源管理
REVERT: 7074b7a2eb 规范化错误消息和日志输出
REVERT: 7ac3ed4263 重构串口通信命令执行逻辑
REVERT: aee33b3ef0 升级 GitHub Actions 构建工作流
REVERT: e517dd13d7 更新 GitHub Actions 构建配置
REVERT: 33942b99dd Update ReadMe
REVERT: f550569ad0 Latest RM0309-1930-0.420.0-0ef732f on PATREON & GitHub - UPD FLIPWORLD
REVERT: 6172a1f896 添加文件保存功能和用户交互场景
REVERT: 671c5589d6 Latest RM0309-1930-0.420.0-0ef732f on PATREON & GitHub - UPD RADIO SCANNER
REVERT: 4eb3ccf47a Merge pull request #18 from jblanked/dev_0.6
REVERT: 2763fa71e6 update README and CHANGELOG
REVERT: a6696faecb save player attributes as intended
REVERT: 2086a5cc01 Add sound_on
REVERT: ab951f75fb Stealth Mode Sound Lock Bug Fix
REVERT: 793e62d639 Latest RM0309-1930-0.420.0-0ef732f on PATREON & GitHub - UPD INA METER
REVERT: 545fa0df15 Update changelog
REVERT: 4cd968cd9e Increment app version
REVERT: 266c4810a7 clear not check script
REVERT: 73e69f2d86 重构 NFC Worker 的 APDU 命令执行线程
REVERT: 867a12417a Latest RM0309-1930-0.420.0-0ef732f on PATREON & GitHub - NEW RELEASE
REVERT: 5151743a23 重构 APDU 命令执行回调上下文传递方式
REVERT: c150dec3d8 重构 NFC Worker 的 APDU 上下文管理
REVERT: c541f8b565 Move ledBlinking from Sensor to App section in INI config
REVERT: 739c663f2c Fix menu item linkinng to wiring screen
REVERT: ea0eac2f70 恢复 NFC Worker 检测线程中的初始化延迟
REVERT: 2ae2df9e95 调整 NFC Worker 检测线程中的延迟时间
REVERT: 78c3bdefe0 Merge branch 'main' of https://github.com/SpenserCai/nfc_apdu_runner
REVERT: 9cf5a42d56 优化 APDU 轮询器回调函数
REVERT: 42a65d1e55 重构 APDU 命令执行和轮询器回调
REVERT: d6e4f82b3b Create LICENSE
REVERT: 1bfd258585 重构 APDU 命令执行回调机制
REVERT: d40d7c9d6f 优化 NFC Worker 卡片检测和 APDU 命令执行逻辑
REVERT: e8beeca191 优化 NFC Worker 卡片检测和 APDU 命令执行流程
REVERT: bae7159335 Latest RM0309-1930-0.420.0-0ef732f on PATREON - NEW RELEASE
REVERT: 0159946b52 dev: nova toolbelt
REVERT: 0c8c34b646 Merge branch 'main' of https://github.com/besya/flipperzero-tuning-fork into 420
REVERT: 69bd267a00 重构 NFC Worker 检测和命令执行逻辑
REVERT: 29be7297b9 引入 NFC Worker 机制,重构 APDU 运行场景
REVERT: 4a6ec16d02 ci: use upload-artifact@v4
REVERT: 3d0a4a7353 ci: add build workflow
REVERT: 6d8922ac6e 增强 NFC APDU 运行器的错误处理和调试能力
REVERT: 0ef732f03e Latest RM0307-1535-0.420.0-f691ad3 on PATREON - UPD GHOSTESP
REVERT: 0a2a2215c9 Merge pull request #35 from jaylikesbunda/main
REVERT: 382a0b1f50 Merge branch 'Spooks4576:main' into main
REVERT: c7c74724b1 v1.2.3
REVERT: 895c03c5c3 Latest RM0307-1535-0.420.0-f691ad3 on PATREON - UPD TUNING FORK
REVERT: dd789f91c6 chore: update changelog
REVERT: d14310426e Latest RM0307-1535-0.420.0-f691ad3 on PATREON - UPD TUNING FORK
REVERT: 0c3f2de30e chore: update application.fam
REVERT: 0bd1b04d6f Latest RM0307-1535-0.420.0-f691ad3 on PATREON - UPD TUNING FORK
REVERT: bedb550f20 Merge applications/external/nrfjammer updates from nrfjammer
REVERT: b238e7b03f chore: add .catalog
REVERT: 195cac14d8 feat: add more tunings
REVERT: 9dba827923 Latest RM0307-1535-0.420.0-f691ad3 on PATREON - UPD TUNING FORK
REVERT: 067bc467a0 Latest RM0307-1535-0.420.0-f691ad3 on PATREON - UPD SUBGHZ BRUTE
REVERT: 403a96d0d6 chore: bump version up
REVERT: 71e8402819 Merge pull request #8 from besya/nesting
REVERT: ae22d1e1b8 chore: update screenshots and readme
REVERT: 6304b9f3a0 Merge branch 'origin/nesting'
REVERT: 19a934ee37 fix: correct Cigar Box 3 Open G tuning
REVERT: 55b8294977 Nested tunings and UI improvements
REVERT: 278a3482b3 Merge pull request #7 from besya/merge-conflicts
REVERT: 0567a8a2af fix: solve merge conflicts
REVERT: e033e83725 Merge pull request #6 from GrafOrlok/main
REVERT: 4f716e6b23 fix: correct Cigar Box 3 Open G tuning
REVERT: 7f590e52e3 Nested tunings and UI improvements
REVERT: ef31f22d34 Adding Tunning for Banjo 5 strings and Cigar Box 3 and 4 strings Open G
REVERT: d464d430ab chore: update readme
REVERT: a4d8f67a90 chore: update readme
REVERT: 42bc3098b5 chore: update application.fam
REVERT: 7de7c7f059 Merge pull request #5 from besya/codebase-improvements
REVERT: 9f0ba6d2c4 refactor: codebase improvements
REVERT: c0aa6ea427 Update README.md
REVERT: e5175c8135 Update README.md
REVERT: 471c5b9ad2 Merge branch 'main' of https://github.com/huuck/FlipperZeroNRFJammer
REVERT: 46ba08a7c3 improvements regarding the crash, added ability to load custom file
REVERT: db51feae6d Update README.md
REVERT: 6f81168be2 Merge pull request #83 from SpenserCai/master
REVERT: a42ff524d1 fix menu item being not reset
REVERT: 1fc0390676 bump version
REVERT: 1fb8063cad remove debug
REVERT: 9b601fceec del some stuff
REVERT: 99acf07e72 Latest RM0307-1535-0.420.0-f691ad3 on PATREON - FMT
REVERT: b06de220ae Latest RM0307-1535-0.420.0-f691ad3 on PATREON - NEW RELEASE
REVERT: 123e9bace4 优化 NFC APDU 运行器的目录创建和错误处理逻辑
REVERT: 3c3a36bf6d init
REVERT: 1c28df2797 add pt2262 430.5Mhz
REVERT: f691ad3553 Latest RM0305-2306-0.420.0-21d447c on PATREON - UPD FINDMYFLIPPER
REVERT: 09ff61d81f update pt2262 te to 350
REVERT: 15c6ef035e rechange some code which not must change
REVERT: e032d322cc update .gitignore
REVERT: 5bfb55ef51 clear debug code
REVERT: 914353f9e5 fix the can't change pt2262 btn before first change
REVERT: 06127d5183 Latest RM0305-2306-0.420.0-21d447c on PATREON - UPD PoF sanjay900
REVERT: 0bb27f55a0 update readme
REVERT: 9eb860d1f9 Latest RM0305-2306-0.420.0-21d447c on PATREON - UPD PoF sanjay900
REVERT: f339ae98f8 update readme
REVERT: ffc0bed005 update readme
REVERT: a4389698cd update readme
REVERT: c8b202862a Latest RM0305-2306-0.420.0-21d447c on PATREON - UPD PoF sanjay900
REVERT: 2ec40eab07 update readme
REVERT: b65ca33b79 update readme
REVERT: 021f006234 update readme
REVERT: c0f04ab457 more speaker changes
REVERT: 6c8c8df17d Latest RM0305-2306-0.420.0-21d447c on PATREON - UPD PoF
REVERT: 0545f6bbdc Latest RM0305-2306-0.420.0-21d447c on PATREON - UPD LM
REVERT: 193d9e6ff3 Latest RM0305-2306-0.420.0-21d447c on PATREON - UPD PoF
REVERT: e0a4639a23 debug (subbrute_worker.c line:375)
REVERT: cfbab85979 try clear flipper_format steam
REVERT: 04167d20a2 update
REVERT: 1657ac4cc4 Merge pull request #19 from tixlegeek/tixlegeek/update-release
REVERT: af5e85a27c Set default letter width to 1
REVERT: abbbbfa65a more speaker changes
REVERT: 26b3b14ff1 Merge pull request #18 from tixlegeek/tixlegeek/update-release
REVERT: c4ff6f3aa8 Unused TAG removed
REVERT: 0af1a059fc Merge pull request #17 from tixlegeek/tixlegeek/update-release
REVERT: 1a8dd86da4 remove unnecessary log
REVERT: c83e675505 Update, format, and lint for publishing
REVERT: 8201d152ef more speaker changes
REVERT: 2f6317a863 more speaker changes
REVERT: 81c8c6fb5e more speaker changes
REVERT: ace5cf5845 more speaker changes
REVERT: a10f39c016 more speaker changes
REVERT: d2777bc30d more speaker changes
REVERT: d607bb0a87 more speaker changes
REVERT: 8d607ca1f3 more speaker changes
REVERT: 10fb05f22e more speaker changes
REVERT: 68d19a186f more speaker changes
REVERT: 02e6527197 more speaker changes
REVERT: 11efcd279a more speaker changes
REVERT: 1fb0355bc6 more speaker changes
REVERT: 634e3d2c95 more speaker changes
REVERT: 05e5fa5e04 more speaker changes
REVERT: 81408ef852 more speaker changes
REVERT: 89858336c6 more speaker changes
REVERT: d58bef608e more speaker changes
REVERT: 63ac79375a turn on speaker with m command
REVERT: 0d92b55abe v sets m
REVERT: 8915d6257a fixes
REVERT: c3da0b1b04 Latest RM0305-2306-0.420.0-21d447c on PATREON - NEW RELEASE
REVERT: 21d447c8f9 Latest RM0304-1335-0.420.0-3441392 on PATREON - UPD DEADZONE
REVERT: 94041c3c6c Latest RM0304-1335-0.420.0-3441392 on PATREON - UPD  DEADZONE
REVERT: 7e415b26fb support save pt2262 file
REVERT: 0b01b365e2 removed distracting background.
REVERT: f9ea2e728d Latest RM0304-1335-0.420.0-3441392 on PATREON - UPD LM
REVERT: d709090eee Latest RM0304-1335-0.420.0-3441392 on PATREON - UPD KEYCOPIER
REVERT: 80d4bde07b Latest RM0304-1335-0.420.0-3441392 on PATREON - UPD LM
REVERT: 98b6228c11 Merge pull request #16 from tixlegeek/tixlegeek/fix_bmp_editor_ui
REVERT: 84299b1749 Fixed bmp editor width & height, enhance UI, added README about Hold function
REVERT: 0b6415b8c2 Latest RM0304-1335-0.420.0-3441392 on PATREON - UPD LM
REVERT: 0d55ac2368 Merge pull request #15 from tixlegeek/tixlegeek/add-resources
REVERT: 2f0441b9ae Added resources and moved app's directory to /apps_assets
REVERT: de6e0314f2 update
REVERT: f696859080 fix bug
REVERT: 8dbc275efe fix bug
REVERT: f722f1aa77 fix bug
REVERT: 5578d32232 add more btn
REVERT: 5f2ef83034 Latest RM0304-1335-0.420.0-3441392 on PATREON - NEW RELEASE
REVERT: dae7f99ee6 Merge applications/external/cigarette updates from cigarette
REVERT: 3441392b72 Latest RM0303-1119-0.420.0-f0160a2 on PATREON & GitHub - UPD BLE KILLER
REVERT: bdd2f7772f Merge pull request #11 from fuckmaz/fuckmaz/flipper_cigarette_v0.1.2
REVERT: 597ce17345 removed HTML linebreaks
REVERT: a86862eb25 Update key_copier.c
REVERT: 48ba33ba62 Latest RM0303-1119-0.420.0-f0160a2 on PATREON & GitHub - UPD POF
REVERT: 9acc38760b Latest RM0303-1119-0.420.0-f0160a2 on PATREON & GitHub - UPD PORTAL OF FLIPPER
REVERT: af6e5e0b09 Latest RM0303-1119-0.420.0-f0160a2 on PATREON & GitHub - UPD CIG RDME
REVERT: eb5be370e2 Merge applications/external/lightmessenger updates from lightmessenger
REVERT: dbfd2dbf0c Latest RM0303-1119-0.420.0-f0160a2 on PATREON & GitHub - UPD BADUSB REFS
REVERT: bc588aa78f Latest RM0303-1119-0.420.0-f0160a2 on PATREON & GitHub - OFW PR 4133
REVERT: 99dfbacfa5 Latest RM0303-1119-0.420.0-f0160a2 on PATREON & GitHub - OFW PR 4136
REVERT: 2f0de1b0f7 Latest RM0303-1119-0.420.0-f0160a2 on PATREON & GitHub - UPD CLIPPER
REVERT: 503a7dd724 Merge pull request #10 from fuckmaz/fuckmaz/flipper_cigarette_v0.1.2
REVERT: 004c42b0c4 added DESCRIPTION.md
REVERT: 04030ad3ff support pt2262 complete
REVERT: 288a3e1616 update
REVERT: b697a4ea5e Merge pull request #14 from jamisonderek/jamisonderek/timer-flush
REVERT: 972696b376 update
REVERT: cbeec658f1 support pt2262 demo
REVERT: abbc411590 save nfc files on write
REVERT: d6f53cdee4 audio works
REVERT: afbed631e1 move audio libs to seperate dir
REVERT: 883c483946 move audio libs to seperate dir
REVERT: 9f131a8407 Latest RM0303-1119-0.420.0-f0160a2 on PATREON & GitHub - NEW RELEASE
REVERT: a7fe3c9b15 Latest RM0303-1119-0.420.0-f0160a2 on PATREON - NEW RELEASE
REVERT: 3dec326748 Latest RM0301-1928-0.420.0-9c6e433 on PATREON - UPD SERVOTESTER
REVERT: c9b130a8ce alaw
REVERT: b3179b946d alaw
REVERT: 25e0747886 alaw
REVERT: 9e84bbba98 alaw
REVERT: 244f8ef4bf alaw
REVERT: 0f62171e54 alaw
REVERT: 83d1ea0724 ulaw
REVERT: c259cde661 test 360 audio
REVERT: 1679a60099 test 360 audio
REVERT: dc481008e3 test 360 audio
REVERT: 20c0cd2e83 test 360 audio
REVERT: 3507ed70fb test 360 audio
REVERT: 49919b6a5e test 360 audio
REVERT: f0160a2743 Latest RM0301-1928-0.420.0-9c6e433 on PATREON - 401LM PR 14
REVERT: 44e07c6fb0 test 360 audio
REVERT: 01829eb3bf test 360 audio
REVERT: 3217556678 try larger buffer
REVERT: 648a42f6a4 try larger buffer
REVERT: eea742c983 roll things back a little
REVERT: ad5165f862 Latest RM0301-1928-0.420.0-9c6e433 on PATREON - NOTHING
REVERT: 04fb2f359c roll things back a little
REVERT: a21e2baada roll things back a little
REVERT: f39d106f31 roll things back a little
REVERT: a09ee22e62 roll things back a little
REVERT: c32bb182f0 roll things back a little
REVERT: 9bf1006cc6 comment volume
REVERT: 18febd08d0 comment volume
REVERT: b67cdf57df comment volume
REVERT: 4ed80a8f90 comment volume
REVERT: cadcdc5985 comment volume
REVERT: dab001557c comment volume
REVERT: 43ee582342 comment volume
REVERT: c23919c817 slow down sense with audio packets
REVERT: 221065fd72 slow down sense with audio packets
REVERT: 023db8ebfc more audio tests
REVERT: cabf3b12d9 more audio tests
REVERT: be16ccbb82 more audio tests
REVERT: 8c1373dbb8 more audio tests
REVERT: 04c11efeb4 more audio tests
REVERT: 10e5cdeae4 fix typos, copy load string
REVERT: b00eb80a84 Merge applications/external/gpio_ina updates from gpio_ina
REVERT: cbe2013064 oopsx2
REVERT: 8309c74470 oops
REVERT: d670ea3b63 change workflow to only run after changes
REVERT: 3a89ad29b0 update build dependency
REVERT: 14d0adf341 Latest RM0301-1928-0.420.0-9c6e433 on PATREON - TEMP UNDO 401LM PR 14
REVERT: 17b98efa9f Latest RM0301-1928-0.420.0-9c6e433 on PATREON - UPD POF
REVERT: d92752acd8 Latest RM0301-1928-0.420.0-9c6e433 on PATREON - IR FIX
REVERT: 9fc3c87e34 Updated README
REVERT: e8b451e80c more audio tests
REVERT: 3dbad0fcdc Updated README
REVERT: 78c5f35829 Updated README
REVERT: 24677e511c work on audio
REVERT: 8686db0308 Latest RM0301-1928-0.420.0-9c6e433 on PATREON - UPD 401LM PR 14
REVERT: 9dcf30d29d Fix issue where app exit takes a long time.
REVERT: 666b87f78a Latest RM0301-1928-0.420.0-9c6e433 on PATREON - NEW RELEASE
REVERT: 9c6e433d88 Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD INA
REVERT: 3cdb67963e Latest RM0226-2320-0.420.0-44e8618 on PATREON - ADD FIGHTER JET
REVERT: 3ce9f7422c Add 'applications/external/fighter_jet/' from commit '50b8213eb48271ee5944db90a126aa818e3b3388'
REVERT: 7526af6a9e Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD NFC COMPARATOR
REVERT: 4e570a69d8 fix led logic
REVERT: 50b8213eb4 Adds screenshot and changelog
REVERT: ba784e546f initial release
REVERT: 9cc9938f97 Added LED blinking
REVERT: 3abf8f368f Merge pull request #8 from acegoal07/dev
REVERT: f86ef5254a Update nfc_comparator.h
REVERT: 23cfc8a214 Update nfc_comparator_scene_comparator.c
REVERT: 8c7296d990 Latest RM0226-2320-0.420.0-44e8618 on PATREON - FMT
REVERT: d6bd63a6ab Latest RM0226-2320-0.420.0-44e8618 on PATREON - OFW PR 4132
REVERT: a2aa6e10a0 Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD RDME
REVERT: 25dcabe9f9 Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD CLOCK
REVERT: cf37900a52 Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD NOTHING
REVERT: 742611be59 Merge pull request #7 from acegoal07/dev
REVERT: 80974dbea6 Update README.md
REVERT: cabd6ea21c Update README.md
REVERT: 00954274a8 Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD NFC COMPARATOR
REVERT: 494b2732c6 Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD NOTHING
REVERT: 44f102be9b style updates
REVERT: 0e3a31ca5b Merge pull request #6 from acegoal07/dev
REVERT: 0069794718 Fixes back button
REVERT: e11bb9ab75 Merge pull request #7 from 956MB/battery-pct
REVERT: f32ac61081 more lerping fixes
REVERT: f8bc91a1cc lerp quicker
REVERT: 965f021b81 more led fixes
REVERT: e14f848d3d more led fixes
REVERT: fb4ab63077 if duration is 0, immediately write led state
REVERT: 6718899b9b if duration is 0, immediately write led state
REVERT: 7df0dc8da2 properly support multiple leds
REVERT: 2a6205ed51 use our own timer instead of ui timer
REVERT: 289b514619 update leds on ui tick instead of seperate thread
REVERT: eed65a042b update leds on ui tick instead of seperate thread
REVERT: f951a75141 Add toggle to battery %
REVERT: 73326fc69d Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD NOTHING
REVERT: 7ced895326 Merging Flipper and ESP32 projects. Anything to procrastinate, it seems
REVERT: fabc22d91e Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD TOTP
REVERT: 8b956c9b1a Merge applications/external/lightmessenger updates from lightmessenger
REVERT: ca17ef0454 Latest RM0226-2320-0.420.0-44e8618 on PATREON - UPD METROFLIP CREDITS (KEEP SUICA)
REVERT: 9f95e57eb4 Merge pull request #13 from tixlegeek/tixlegeek-draw-continuously
REVERT: fc5a86205d remove command
REVERT: 7c9cf9d214 Merge pull request #12 from tixlegeek/tixlegeek-check_bmp_size_editor
REVERT: 2a5be23beb Merge pull request #12 from tixlegeek/tixlegeek-check_bmp_size_editor
REVERT: cf740538b1 cleanup and event management rework
REVERT: a1ac642f82 Also analog
REVERT: aeea56b7a4 Show battery % on digital clock
REVERT: 62eea82219 Merge branch 'lab-401:main' into tixlegeek-check_bmp_size_editor
REVERT: 80ba0cc6cc Merge pull request #11 from jamisonderek/jamisonderek/signed-col
REVERT: a8f53e4cec Merge branch 'master' of https://github.com/akopachov/flipper-zero_authenticator
REVERT: 7852776e8f docs: updated CHANGELOG
REVERT: 941ca098d2 chore: Updated version
REVERT: df93bd4189 Extended valid UTC offset range from -12 to +14 (#250)
REVERT: 916da9eade Merge pull request #49 from ry4000/main
REVERT: 458a6c7c88 Latest RM0226-2320-0.420.0-44e8618 on PATREON - NEW RELEASE
REVERT: 05cb352162 R&Y: Stylisation Update to `README.md`
REVERT: e5c5ae20ac R&Y: Stylisation Update to `metroflip_scene_credits.c`
REVERT: a02df9e314 R&Y: Stylisation Update to `README.md`
REVERT: 83ad7202e2 R&Y: Stylisation Update to `README.md`
REVERT: 94e4ace389 R&Y: Stylisation Update to `metroflip_scene_supported.c`
REVERT: 0baa267530 R&Y: Stylisation Update to `README.md`
REVERT: 44e86186c3 Latest RM0225-1310-0.420.0-bebc11d on PATREON & GitHub - UPD METROFLIP
REVERT: 314cecdd4d Merge pull request #48 from zinongli/add_yurikamome
REVERT: b0c18ee18d Update readme for Suica support
REVERT: 3f63329697 alternative way to get data
REVERT: 31c229e36f more agrressive fix
REVERT: bf5f161f0c Update suica_drawings.h
REVERT: afbd16cb7a fix include bug
REVERT: cfdaa582ca Latest RM0225-1310-0.420.0-bebc11d on PATREON & GitHub - OFW 4129 NOT ADDED (YET)
REVERT: df87145b79 Latest RM0225-1310-0.420.0-bebc11d on PATREON & GitHub - UPD CROSS REMOTE
REVERT: e04431772c Added Yurikamome line
REVERT: efe2f386d7 Latest RM0225-1310-0.420.0-bebc11d on PATREON & GitHub - UPD TIMER
REVERT: de58fdcb73 First steps, not really working
REVERT: d57c46ab98 Latest RM0225-1310-0.420.0-bebc11d on PATREON & GitHub - NEW RELEASE
REVERT: 47a7381513 Merge pull request #34 from leedave/feature/favorites_menu
REVERT: 04359c1b34 update README
REVERT: 7b1d56f438 Added support for favorites menu (only CFW)
REVERT: caf314c004 feat: implement countdown logic and alarm trigger functionality
REVERT: 9d986083e8 Latest RM0225-1310-0.420.0-bebc11d on PATREON - NEW RELEASE
REVERT: a991843613 Latest RM0225-1310-0.420.0-bebc11d on PATREON - NEW RELEASE
REVERT: 41e7306321 Merge pull request #47 from zinongli/0.5+load+suica
REVERT: 231cab52bb Update suica.c
REVERT: da1c056e4d Update main.yml
REVERT: 838bbca22d Update main.yml
REVERT: d797d3daeb Latest RM0225-1310-0.420.0-bebc11d on PATREON - NEW RELEASE
REVERT: bebc11db16 Latest RM0223-2010-0.420.0-a569995 on PATREON - FIX QUAC
REVERT: 5e54c28543 Latest RM0223-2010-0.420.0-a569995 on PATREON - UPD METROFLIP
REVERT: 939f9d03ca simplify column data
REVERT: dfa7299874 format and file name fixes
REVERT: 9ca7b01cea Add screenshots
REVERT: d6b12d8a19 credit format
REVERT: 762b16832d bug fixes for loading
REVERT: 79b4a2c6ff delete repetitive code
REVERT: a622965dfb Merge branch 'dev' into 0.5+load+suica
REVERT: cb38132688 Merge branch 'dev' into 0.5+load+suica
REVERT: ba35cffb7b Latest RM0223-2010-0.420.0-a569995 on PATREON - UPD QUAC
REVERT: ccb34fb4d8 Merge pull request #14 from rdefeo/file_link
REVERT: bea45dfe48 quac link files
REVERT: 440255c17c add game mode
REVERT: 88db6ca800 do not display users stats when switching worlds
REVERT: 2b66b93379 Latest RM0223-2010-0.420.0-a569995 on PATREON - OFW x3
REVERT: 6869ea264d new FlipperHTTP API
REVERT: 629c2a026b Latest RM0223-2010-0.420.0-a569995 on PATREON - UPD KEY COPIER
REVERT: 7f90d1131e Latest RM0223-2010-0.420.0-a569995 on PATREON -  UPD KEY COPIER
REVERT: 30edc1b907 major/minor ver only
REVERT: 05d229c5c7 bump version
REVERT: 23959760b9 update screenshots
REVERT: e4c92ed6e2 bug fix
REVERT: eeef7c22dc allow lerp interrupts
REVERT: a41f99929d allow lerp interrupts
REVERT: 4e73ede85e fix activate
REVERT: 2dede9705e fix two phase
REVERT: 6b14109b4e only left
REVERT: 9698d64311 two phase lerp
REVERT: 81e253f6a2 lerp test
REVERT: 37b78d4936 lerp test
REVERT: 6d205bdab6 lerp test
REVERT: 3568600405 lerp test
REVERT: 95149dd6e1 lerp test
REVERT: 7b26c06872 lerp test
REVERT: cfe4f3e3fa lerp test
REVERT: bccdae4c46 lerp test
REVERT: ee0ca42e28 unlock usb
REVERT: 0b21a49322 drive leds with hal
REVERT: 6c8983b612 drive leds with hal
REVERT: 8a74763d64 drive leds with hal
REVERT: cbc8382c50 drive leds with hal
REVERT: 0123ecb127 drive leds with hal
REVERT: 99f584566e drive leds with hal
REVERT: 428225abe0 don't send sense packets if we have just sent some other response
REVERT: 5d2724323d don't send sense packets if we have just sent some other response
REVERT: 727aab753b Revert "set change bit after activat ecommand"
REVERT: 352d3e5120 don't send sense packets if we have just sent some other response
REVERT: f90ca437ea Latest RM0223-2010-0.420.0-a569995 on PATREON - NEW RELEASE
REVERT: a569995c35 Latest RM0220-2136-0.420.0-4e452fd on PATREON - ADD LED BLINKER
REVERT: 63dcd5adf6 Add 'applications/external/blinker/' from commit '7733cebdaa9fb284dc978d5fcd50fdf9e7909fa7'
REVERT: b987d4ce9f Latest RM0220-2136-0.420.0-4e452fd on PATREON - ADD LIDAR EMULATOR
REVERT: 6c9e31b359 Add 'applications/external/lidar_emulator/' from commit 'd2092a01ae627129c24c257102f619813a61986e'
REVERT: ae95ad4e15 Latest RM0220-2136-0.420.0-4e452fd on PATREON - UPD GB LINK
REVERT: cbf874b7cd Latest RM0220-2136-0.420.0-4e452fd on PATREON - UPD GB PRINTER
REVERT: 7733cebdaa Merge pull request #4 from Cupprum/dev
REVERT: faae0f5de0 chore: scale down pictures
REVERT: 1e2fbb2555 chore: move fap description to code from manifest
REVERT: 9220d514fe Merge pull request #3 from Cupprum/dev
REVERT: 0121251ca7 chore: clang formatting
REVERT: 685ddff975 Merge pull request #2 from Cupprum/dev
REVERT: 1f49bb8058 chore: make if statements more readable
REVERT: 7ca7a6161a printer/receive: add compression support
REVERT: 6168632756 gblink: Performance test for measuring interrupt latency
REVERT: 4939b462af printer: remove thread from printer_proto
REVERT: 3d010d40d3 gblink: create separate thread for bottom half of interrupt
REVERT: dd94830458 Latest RM0220-2136-0.420.0-4e452fd on PATREON - UPD METROFLIP
REVERT: 89ddcc982e Latest RM0220-2136-0.420.0-4e452fd on PATREON - UPD METROFLIP
REVERT: 56a3563eba gocard
REVERT: ae0cb269f0 Resolved merge conflict in gocard.c
REVERT: 06fc172112 Temporary commit
REVERT: d2092a01ae include <assets_icons.h> not found when built with ufbt. Removed.
REVERT: e0f1b1cc37 README updated and screenshots added for flipper-application-catalog compliance
REVERT: 32b962024c Initial commit.
REVERT: fa27de3586 Latest RM0220-2136-0.420.0-4e452fd on PATREON - NEW RELEASE
REVERT: 4e452fd52a Latest RM0218-1205-0.420.0-7bb30bf on PATREON - ADD TIMER APP
REVERT: 47f47e42ed Add 'applications/external/timer/' from commit '6effcb9c0bbd00f04978f17b92ed6750614db005'
REVERT: 659323bfa0 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - UPD METROFLIP
REVERT: 68e753f3e3 expiry+concessiontype
REVERT: 31242239a9 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - UPD HID AUTOFIRE
REVERT: 099dc49424 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - QUICKER ICONS DEADZONE
REVERT: 11ea25babf doc: update changelog
REVERT: 659bff9ca9 release: bump version
REVERT: 2b03d630da fix: remove now redundant itoa function
REVERT: 7c1fb2939e Latest RM0220-1236-0.420.0-5cec824 on PATREON - ULx3
REVERT: 14121d7f80 came atomo button hold simulation half cycle
REVERT: c9427866b2 fix text pos
REVERT: 92d4c7850d fix naming
REVERT: b96ae590a1 FIX GANG QI
REVERT: 7df4a67baa Latest RM0220-1236-0.420.0-5cec824 on PATREON - NEW RELEASE
REVERT: 5cec824102 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - UPD METROFLIP
REVERT: 4ba70470f4 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - UPD METROFLIP
REVERT: 8a4b9e34e7 Merge applications/external/metroflip updates from dev metroflip
REVERT: 8e96e84cc2 Merge applications/external/metroflip updates from main metroflip
REVERT: 1a7622a1c3 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - UPD DEADZONE
REVERT: ab2f80cf60 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - KEEP SPACE No NORALSY
REVERT: 4a655f2a84 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - QUICKER ICONS FOR THESE GAMES
REVERT: 813a894219 temporarily remove game resumption due to bugs
REVERT: e3f096f687 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - GAME MODE UPDATE
REVERT: 2df000c3bc Latest RM0218-1205-0.420.0-7bb30bf on PATREON - GAME MODE UPDATE
REVERT: 660f244cc8 bump readme in code space
REVERT: 2513fbb6fd Fix markdown misformatting
REVERT: ac4922c34e Merge pull request #46 from luu176/main
REVERT: f6d741432a Rav-Kav balance and scene fix
REVERT: bbfdf50fdc deletion of game template file
REVERT: f65fefb693 README update
REVERT: 797243547b Latest RM0218-1205-0.420.0-7bb30bf on PATREON - MERGE FIX
REVERT: b7b39e0d52 Fixed repeat in subghz tx_from_file command (#4099)
REVERT: d0945c38ed LFRFID: Noralsy Format/Brand (#4090)
REVERT: 78e89d2dd0 Faster di card reading (#4087)
REVERT: 04814b1086 [FL-3949] Universal IR signal selection (#4085)
REVERT: 8f3d47ed9c vscode: disabled auto-update for clangd since correct version is in the toolchain (#4122)
REVERT: 1655b8af76 BadUSB: Mouse control (#4004)
REVERT: 373b1d4336 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - UPD METROFLIP
REVERT: d6894d0dc5 gocard dev
REVERT: 8cca7f835d Latest RM0218-1205-0.420.0-7bb30bf on PATREON - FIX LM README
REVERT: 5561cd1874 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - FIX LM README
REVERT: 76123782b6 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - OFW 4114
REVERT: 3da17166aa added new shader by jamisonderek inside readme
REVERT: 89a98ba64f remove "contributors" from readme as it is redundant with github's UI
REVERT: 3b53d1637f copy README
REVERT: 4ee0902814 Update README
REVERT: 6608edd7fc Merge pull request #8 from jamisonderek/jamisonderek/docs
REVERT: 6544f97bad Latest RM0218-1205-0.420.0-7bb30bf on PATREON - NEW RELEASE
REVERT: ef582c0304 Latest RM0218-1205-0.420.0-7bb30bf on PATREON - NEW RELEASE
REVERT: 37e2d04dc9 Change build testing to weekly.
REVERT: 7bb30bfff8 Latest RM0216-2005-0.420.0-a6969e7 on PATREON - UPD CROSSREMOTE
REVERT: c763004922 Merge pull request #33 from leedave/feature/gpio_ir
REVERT: a639cd9ff2 Fix Power Management Issue
REVERT: 4e49c18d74 Latest RM0216-2005-0.420.0-a6969e7 on PATREON - UPD LM README
REVERT: 19df3ff9f9 Latest RM0216-2005-0.420.0-a6969e7 on PATREON - UPD CROSSREMOTE
REVERT: 878e3add67 Latest RM0216-2005-0.420.0-a6969e7 on PATREON - UPD DEADZONE
REVERT: 0a312ff149 Merge pull request #32 from leedave/feature/gpio_ir
REVERT: f59526e476 Enabled GPIO support for IR boards
REVERT: fb7374692f Save new IR GPIO Settings
REVERT: 29c795d708 Copy od README.md in code. This probably isn't the best way to do it, but it'll do for now
REVERT: 7ded678ea8 Created Settings entry for IR GPIO
REVERT: 1801564551 render username in tutorial level.
REVERT: 5e2285aca8 better beginning to tutorial level.
REVERT: 9534d1b2fb support choosing username & retaining in file storage
REVERT: b70f1ecaaf removed settings menu.
REVERT: 9ec7c13a57 Latest RM0216-2005-0.420.0-a6969e7 on PATREON - UPD LIGHTMESSENGER
REVERT: 2f7fc969e4 Bump application.fam to 1.2
REVERT: b91dfb760e CHANGELOG update
REVERT: d2b62c271c Last pass before release
REVERT: f2978a6538 Latest RM0216-2005-0.420.0-a6969e7 on PATREON - UPD SOLITAIRE
REVERT: 47710f848e Update development readme
REVERT: a81e4fa32e Merge applications/external/lightmessenger updates from lightmessenger
REVERT: 0d2ac4760f Update CHANGELOG.md
REVERT: d39e49d271 Merge pull request #9 from Erbonator3000/main
REVERT: 4beb0e4439 Merge pull request #7 from tixlegeek/main
REVERT: 5dcbda9239 Integrated some of the PR5 from Jamisonderek
REVERT: 509581eb50 Latest RM0216-2005-0.420.0-a6969e7 on PATREON - UPD LIGHTMESSENGER
REVERT: 33b443caa3 Merge pull request #6 from tixlegeek/main
REVERT: ef0218c253 Added sensitivity to configuration following jamisonderek's work
REVERT: 5a366311d0 Fixes a bug where any card picked from waste could be placed in first tableau
REVERT: b266e9bad7 Config file is reseted if malformed
REVERT: 232f3670a6 set change bit after activat ecommand
REVERT: 1dd84ba80c update changelog
REVERT: dbf4d6c078 bump version number
REVERT: e326901e11 update application metadata
REVERT: e2bbbdb11f Latest RM0216-2005-0.420.0-a6969e7 on PATREON - NEW RELEASE
REVERT: a6969e74a7 Latest RM0215-1145-0.420.0-3cfc04b on PATREON & GitHub - ADD SMARTRA
REVERT: 8937dcf0bd Add 'applications/external/smartra_vin2pin/' from commit '8951001c437e5ba29cfc4b60bfd670af1b2535cc'
REVERT: fe0e525b63 Latest RM0215-1145-0.420.0-3cfc04b on PATREON & GitHub - ADD 1DPACMAN
REVERT: 73c2bf1df9 Latest RM0215-1145-0.420.0-3cfc04b on PATREON & GitHub - ADD 1DPACMAN
REVERT: 3fea8d99a7 Add 'applications/external/1dpacman/' from commit 'c53f3c0bf74086bb434bca844c517b2d3d3bacd1'
REVERT: 52e390de5c Latest RM0215-1145-0.420.0-3cfc04b on PATREON & GitHub - OFW TO ADD
REVERT: cb4924792c Latest RM0215-1145-0.420.0-3cfc04b on PATREON & GitHub - ADD INA METER
REVERT: 9ee7be15cf Add 'applications/external/gpio_ina/' from commit 'c370c90e65886c735ec113c45538a50afb05f982'
REVERT: a87819e912 Merge applications/external/portal_of_flipper updates from portal_of_flipper
REVERT: 26eff62740 Merge applications/external/id_card_v2 updates from id_card_v2
REVERT: ea8103d93d Update README.md
REVERT: bfb70b1ffb Merge remote-tracking branch 'upstream/main'
REVERT: 040cddb119 Merge branch 'led-notifications' into 'main'
REVERT: a27ef55e5b Drive leds via notifications
REVERT: 8c2db9378f Latest RM0215-1145-0.420.0-3cfc04b on PATREON & GitHub - UPD LIGHT MESSENGER
REVERT: 66080f2be4 Merge pull request #3 from jamisonderek/jamisonderek/configreg
REVERT: 50d8dbc8c8 dont free pof_usb
REVERT: df0431d7b9 set sense timer to 32ms
REVERT: b850ef44bd set sense timer to 32ms
REVERT: 26c911ff0a always send status packets
REVERT: ee1147b2fc always send status packets
REVERT: 7935c25d74 undo query change
REVERT: b3d1183eb1 don't send sense packets after a query
REVERT: 6effcb9c0b feat: enhance timer logic and UI for improved alarm functionality
REVERT: 444e1fddb1 move type to virtual portal
REVERT: 588c324028 move type to virtual portal
REVERT: f92678259f Fix incorrect header function definition
REVERT: 30f984c8a1 Latest RM0215-1145-0.420.0-3cfc04b on PATREON & GitHub - NEW RELEASE
REVERT: d316488845 Have a seperate type selection ui on startup
REVERT: b9fdab3689 Have a seperate type selection ui on startup
REVERT: df9dd633e6 Have a seperate type selection ui on startup
REVERT: 5803f80079 move some shared structs to pof_usb.h
REVERT: 24a38daed8 Add ui element to swap type
REVERT: 6dda4f5e73 Add ui element to swap type
REVERT: d08e8bb456 Add ui element to swap type
REVERT: 60fd576531 Add ui element to swap type
REVERT: 812044da49 style: format code for improved readability
REVERT: 90e315fc58 starve fix
REVERT: e9320610db Move 360 code to its own file
REVERT: b5a6d4b44a Move 360 code to its own file
REVERT: 01e9326b89 Move 360 code to its own file
REVERT: ed1dfaac34 Move 360 code to its own file
REVERT: d54e70a42e string to char
REVERT: 69b01746f0 don't init 360 endpoints for hid
REVERT: f59f9e61c4 add back deleted line
REVERT: a7480fd0af add comments about 360 portal audio
REVERT: de321b4c68 seperate audio packets from normal ones
REVERT: 7e60ea7b9b seperate audio packets from normal ones
REVERT: 8a95e53086 ack 1f/1e
REVERT: 20fd861e87 xb360 emulation works
REVERT: a37d98acbc xb360 emulation works
REVERT: ba7c41d3d7 yes
REVERT: 43525d0d70 yes
REVERT: e20324976a yes
REVERT: cea987278f reset seq
REVERT: aef7d66045 fix typo
REVERT: c027333954 fix typo
REVERT: c84e7934d5 fix typo
REVERT: e57db64b81 360 status packets
REVERT: 1164cd4cdf bcddevice
REVERT: ac516ae8ae portal
REVERT: b754026a55 test
REVERT: e7bba3a7df fix ep sizes
REVERT: a7d8582547 zero caps
REVERT: 0e081017ea zero caps
REVERT: 8394e48254 register endpoints
REVERT: 82485fa71d ack clear feature
REVERT: 6955c04740 fix string desc read
REVERT: b074941bbd fix string desc read
REVERT: 14b9b94e9b fix string desc read
REVERT: d1b7b36086 fix string desc read
REVERT: 9931e84ee8 fix string desc read
REVERT: 16416fccb6 add caps
REVERT: 84778ae8b3 add caps
REVERT: d88bc44375 fix incorrect interface ids
REVERT: 9c63b77b6a insert 360 header when construction packet
REVERT: c143114e8f Specify type within virtual_portal instead of having differnt start functions
REVERT: a8268f5af4 Specify type within virtual_portal instead of having differnt start functions
REVERT: 9e682680e4 Specify type within virtual_portal instead of having differnt start functions
REVERT: 3d8983d103 insert 360 header when construction packet
REVERT: 6181d4c39e add missing interface
REVERT: 956973c823 add missing interface
REVERT: f5dcf2fef8 fix incorrect length
REVERT: 3c090a5dd1 fix numinterfaces
REVERT: a5bcaf22c6 use different control request handler for x360
REVERT: e34befc309 fix typos
REVERT: 1fe490dd46 360 descriptors
REVERT: 6cf28c0ecc Explictly clear out registers
REVERT: e36775f9cc Explictly set rest of pin registers
REVERT: 6611ab7a31 Fix bug CTRL_REG3 sometimes has value 0xC8.
REVERT: adfe120111 Latest RM0215-1145-0.420.0-3cfc04b on PATREON - NEW RELEASE
REVERT: 3cfc04b045 Latest RM0213-1625-0.420.0-b07b064 on PATREON - ADD PET YOUR DOLPHIN
REVERT: 49cea98d4b Add 'applications/external/pet_your_dolphin/' from commit '7d20b3ecc3fd8e83ba862e670448f46dacb1d7ea'
REVERT: a3d054f5a5 Latest RM0213-1625-0.420.0-b07b064 on PATREON - ADD FORD RADIO CODES
REVERT: 5253af9754 Add 'applications/external/fordradiocodes/' from commit '7b3bf9d5c222054422f903f909513075ce867186'
REVERT: 57fbe9af09 Latest RM0213-1625-0.420.0-b07b064 on PATREON - UPD NFC KEYBOARD
REVERT: 4ac6f83858 Latest RM0213-1625-0.420.0-b07b064 on PATREON - UPD METROFLIP
REVERT: 66d536f35b Update manifest.yml
REVERT: c4e1ed2304 Update CHANGELOG.md
REVERT: a27a84d61c Update manifest.yml
REVERT: ac4a57a8fc Update application.fam
REVERT: 9061b94e69 chore: split timer_alarm.c/h from timer_app.c/h · 0e3b3b3b7b - Gitea: Git with a cup of tea
REVERT: cdb383b895 feat: Add timer app
REVERT: 33944b26be added mfcultralight compatibility
REVERT: 29c472363c fix weird keyboard timing issue
REVERT: 593d39841e Merge applications/external/portal_of_flipper updates from portal_of_flipper
REVERT: d5b51bcc3d increase max tokens to 16
REVERT: 0f5b23b007 correct status message update math
REVERT: 2b0e95faba Prevent S starvation during incoming audio
REVERT: 5f57958103 Merge applications/external/portal_of_flipper updates from portal_of_flipper
REVERT: d90f9379d1 Merge applications/external/id_card_v2 updates from id_card_v2
REVERT: 2305734bd8 reduce timeout to 30ms
REVERT: d99a9ffba4 Merge applications/external/lightmessenger updates from lightmessenger
REVERT: 4208999703 Latest RM0213-1625-0.420.0-b07b064 on PATREON - UPD LIGHTMESSENGER
REVERT: 8033a642b4 update troubleshooting again
REVERT: bcda5dfc02 update troubleshooting
REVERT: 04bc2d5ee4 Update README.md
REVERT: f1bf790e2f Update README.md
REVERT: c8e6ea6323 Update id_card_v2.c
REVERT: 7b3bf9d5c2 Update manifest.yml
REVERT: c3e3aa7d82 Update manifest.yml
REVERT: f274e94d4d Merge applications/external/portal_of_flipper updates from portal_of_flipper
REVERT: 93d7f94fa0 Update application.fam
REVERT: 396841cab6 Update manifest.yml
REVERT: 0a3e75dc6f Update manifest.yml
REVERT: 52d56bf58c Add files via upload
REVERT: c38d0162ac Create manifest.yml
REVERT: f5e231a1d9 Add files via upload
REVERT: 7004dfd622 Update application.fam
REVERT: 8ac8d6c988 Create changelog.md
REVERT: ec5ff5d0d8 Correct error response for Q/W
REVERT: 1d0c66138b Update README.md
REVERT: 6b8727973a Add files via upload
REVERT: 109cc62a31 Update README.md
REVERT: b01df7ac6a Update README.md
REVERT: b7491d7fc8 Update README.md
REVERT: 02d55ebbc5 Initial commit
REVERT: 511f1277da Merge applications/external/portal_of_flipper updates from portal_of_flipper
REVERT: 6e07989026 Latest RM0213-1625-0.420.0-b07b064 on PATREON - UPD ID CARD
REVERT: 8af84206ae Update application.fam
REVERT: b12ac48e54 Update id_card_v2.c
REVERT: a1a9124e46 binwise or 0x10/0x20 to Q/W response
REVERT: c3469411e6 typo in write error response
REVERT: 910dfee898 don't reset sequence on reset
REVERT: 2e9e1ad871 Reduce broadcast interval for Google
REVERT: 7134d7e441 Correct Google data size The advertisement payload for Google's network should be 29 bytes, not 31.
REVERT: c5c0df36d5 Initial Google support
REVERT: c370c90e65 Added LICENSE
REVERT: f951594404 Latest RM0213-1625-0.420.0-b07b064 on PATREON - NEW RELEASE
REVERT: 8fbca3e264 Merge applications/external/deadzone updates from deadzone
REVERT: 77c0b20467 Latest RM0213-1625-0.420.0-b07b064 on PATREON - NEW RELEASE
REVERT: b07b064927 Latest RM0212-1820-0.420.0-5d5af30 on PATREON - UPD RFID OFW 4069
REVERT: 550d5bb032 Fixed INA219 current calculation
REVERT: bd5049811a Fixed VBUS voltage calculation
REVERT: c53f3c0bf7 Add multiplier
REVERT: 066190b9a1 [FL-2754, FL-3945] EM4305 support (#4069)
REVERT: ff41da7b7c Latest RM0212-1820-0.420.0-5d5af30 on PATREON - UPD PORTAL OF FLIPPER
REVERT: 4daa5f4b87 Latest RM0212-1820-0.420.0-5d5af30 on PATREON - UPD PORTAL OF FLIPPER
REVERT: 16052d6175 Remove M logging
REVERT: dfc742f9bf readme for catalog
REVERT: a70533e082 Latest RM0212-1820-0.420.0-5d5af30 on PATREON - RETIRE OLD STYLES
REVERT: 41dcc6d5ed Latest RM0212-1820-0.420.0-5d5af30 on PATREON - RETIRE OLD STYLES
REVERT: 7d3edddeb8 hone logging
REVERT: ac379b15d4 set all loaded slots status to change on reset command
REVERT: 0416f25919 Latest RM0212-1820-0.420.0-5d5af30 on PATREON - OFW 4058
REVERT: 249decd458 Latest RM0212-1820-0.420.0-5d5af30 on PATREON - OFW 4050
REVERT: d123b26b68 Latest RM0212-1820-0.420.0-5d5af30 on PATREON - UPD PORTAL OF FLIPPER
REVERT: 2d151b1f6a Persist high score to storage
REVERT: ff4e813ab4 Fix ghost edible timer not being reset on second food
REVERT: 5ea20564f4 Define center
REVERT: 2046c9174b Fix stack size, small mutex change
REVERT: aba9156319 Fix eaten ghost bugs
REVERT: 249331a1ed Move eaten ghost towards opposite half of screen
REVERT: 1cad357e58 Add background sprites
REVERT: 036ae3ef66 Display high score
REVERT: 32eafdb1ec Make ghost collider size smaller
REVERT: d7af4a609c Tweak collider sizes according to pacman/ghost sprites
REVERT: 17d1a97315 Allow ghost to be eaten
REVERT: 15ebda1f85 Remove assets from repo
REVERT: 62a6656fcf Recreate portal logic with UID caching
REVERT: 86d7e8f683 Do not add new level, tweak ghost edible setting
REVERT: fcfe2f5b3f add UID to pof_token
REVERT: 86c4c257a5 if Skylanders folder, default to that
REVERT: 611fa36e52 index in token name
REVERT: 3d143f1a58 Eating food enables ghost mode
REVERT: 473caf8548 add naive level reset button
REVERT: 26aa07ee97 Reduce L/J logging
REVERT: affe219f37 update app icon
REVERT: 026ee80d4c Latest RM0212-1820-0.420.0-5d5af30 on PATREON - NEW RELEASE
REVERT: 54d87d3372 Update engine commit
REVERT: 1acb5a9189 add ghost logic
REVERT: ed306772e4 Merge pull request #1 from evillero/main
REVERT: 8f1524d04f Add arrow key control
REVERT: 0ce62398b9 Update chess_clock.c
REVERT: c5ac167a61 Latest RM0212-1820-0.420.0-5d5af30 on PATREON - NEW RELEASE
REVERT: a5f8a76546 Include food entity in count when checking for empty level
REVERT: f3fc2e297a Add food entity
REVERT: 632ec76d73 Change app name
REVERT: fdadde8233 Change direction on key down
REVERT: 4f9ba4b21f Run "git submodule update --remote" to sync engine code
REVERT: ab82c9bf21 Renamed TINA Gauge to INA Meter
REVERT: 822b2b928f Update Readme
REVERT: f9bef88f0f Add pacman sprite, movement, and targets
REVERT: 8951001c43 Update README.md
REVERT: a2acbc628c Update README.md
REVERT: e145d4c9da Update README.md
REVERT: 844b59dbae Update README.md
REVERT: 5b26f5fe77 Update README.md
REVERT: 5d5af3033f Latest RM0210-1117-0.420.0-358602c on PATREON - ALREADY IN
REVERT: 38d58daa78 Update README.md
REVERT: d91a4a20de Add files via upload
REVERT: 0f856e559e capital spelling for deadzone
REVERT: 74309fb143 Initial commit
REVERT: ad5e49dd66 Reduced I2C transaction timeout
REVERT: 0d9f1d060c Fixed INA228 driver
REVERT: 8e4928764b Latest RM0210-1117-0.420.0-358602c on PATREON - UPD PORTAL OF FLIPPER
REVERT: f0f439b380 Merge applications/external/gpio_explorer updates from gpio_explorer
REVERT: edbe6319ec Latest RM0210-1117-0.420.0-358602c on PATREON - UPD SUBGHZ SCHED
REVERT: c9a05be7d3 Latest RM0210-1117-0.420.0-358602c on PATREON - UPD SUBGHZ SCHED
REVERT: 3f4bbccc23 Update build.yml
REVERT: dfea50c1f0 Update build.yml
REVERT: 8672655064 Build instructions
REVERT: 966f28c367 Update application.fam
REVERT: 59116098f8 Port to flipper zero, missing audio
REVERT: d6348d7f8e Merge dev features for v2.2.
REVERT: 83ab17ae1b Merge applications/external/cigarette updates from cigarette
REVERT: e3d7735dd0 Latest RM0210-1117-0.420.0-358602c on PATREON - PATREON BUILDS UPDATE 😄
REVERT: 91e201a82d Add lights for L and C
REVERT: ddf0307bab set color of led for J command
REVERT: e887fa0f4a Prevent crash when removing figure during read
REVERT: 46dbbb3e3c me brain slow
REVERT: 6a030ecd05 Add multiple targets and lock position of player
REVERT: 9fed314783 Latest RM0210-1117-0.420.0-358602c on PATREON - OFW 4095
REVERT: 8db7156ef3 Latest RM0210-1117-0.420.0-358602c on PATREON - OFW 4078
REVERT: 7d20b3ecc3 Updated workflow permissions
REVERT: a398dc3679 Fixed file copy command in workflow
REVERT: 2de040e70b Created GitHub actions workflow to automatically build and release new versions
REVERT: 854b7db922 Latest RM0210-1117-0.420.0-358602c on PATREON - UPD STROBOMETER
REVERT: fc5763d57f V1 finished
REVERT: bb43e2aabf Fixed crash, frequency can now never be zero (default value: 1)
REVERT: 8e098f9f16 Latest RM0210-1117-0.420.0-358602c on PATREON - UPD VIN DECODER
REVERT: d0dbc90176 Update README.md
REVERT: 46655077a0 Update README.md
REVERT: 3061d98d31 Update README.md
REVERT: 028ec89f3b Update README.md
REVERT: 5f7f525071 Update README.md
REVERT: 47c8f1c526 Update README.md
REVERT: 344375a084 Update README.md
REVERT: 6255628f25 Update CHANGELOG.md
REVERT: c215155e07 Update vin_decoder.c
REVERT: 23d8a45e48 Update application.fam
REVERT: 478ec9eb8f Latest RM0210-1117-0.420.0-358602c on PATREON - UPD LIGHT MESSENGER
REVERT: 1494645109 move description to DESCRIPTION.md
REVERT: 38c23f2ce0 Update application.fam
REVERT: 0013e479bc Update application.fam
REVERT: 83a0c44780 Update manifest.yml
REVERT: 4e05c0ebe9 Updated screenshots
REVERT: b0e0f2649e Updated README
REVERT: 1308c18c1d Updated application description
REVERT: f7ac66002b Renamed changelog.md
REVERT: 9ce14793b8 Latest RM0210-1117-0.420.0-358602c on PATREON - NEW RELEASE
REVERT: 358602c2d0 Latest RM0207-2256-0.420.0-60a6c2e on PATREON & GitHub - UPD PORTAL OF FLIPPER
REVERT: 27332283f5 Latest RM0207-2256-0.420.0-60a6c2e on PATREON & GitHub - UPD METROFLIP
REVERT: acb2db3a11 Latest RM0207-2256-0.420.0-60a6c2e on PATREON & GitHub - UPD MBEDTLS
REVERT: c07eb260d2 they can speed through the entries
REVERT: 53887b765e set fap version
REVERT: 5159cb94ae Added precision settings
REVERT: 14ccc80d14 Added INA228 support
REVERT: 6819b33db3 Added INA226 settings
REVERT: b7310ad04d Improved INA226 detection
REVERT: c317b30e47 Latest RM0207-2256-0.420.0-60a6c2e on PATREON & GitHub - UPD METROFLIP
REVERT: 40961074f8 Latest RM0207-2256-0.420.0-60a6c2e on PATREON & GitHub - UPD SEADER
REVERT: 59e2fc5daf Added screenshots
REVERT: 3fa6c5cf97 Fixed github workflow
REVERT: 1c58fe3426 Initial commit
REVERT: 9826197d71 change name
REVERT: dabeca9d10 dlete fucntion
REVERT: f833767c89 save fucntion
REVERT: 17380a6f2a Latest RM0207-2256-0.420.0-60a6c2e on PATREON & GitHub - NEW RELEASE
REVERT: 2242e37576 bump upload-artifact@v4
REVERT: ab45310f53 remove aussie seller
REVERT: f8c4bfe987 Added sad idle animation and pet prompt
REVERT: 770a17135a Set up base and happy idle animations
REVERT: 91517a40eb Merge pull request #1 from Cupprum/dev
REVERT: 9315f9ae56 docs: update broken links in readme
REVERT: e2cb512726 chore: bump upload artifact version
REVERT: 7cf0d139cb feat: create a pipeline for releasing the package
REVERT: f05676e447 chore: update gitignore
REVERT: bba7779a47 format: using clang-format, which is also verfied by ufbt lint tool
REVERT: 51e50b49fb format: using clang-format, which is also verfied by ufbt lint tool
REVERT: e7771c5f81 chore: fix turning of leds
REVERT: 0abd05be0e chore: rename pictures to screenshots like in other flipper projects
REVERT: a17b027627 docs: minor readme update
REVERT: 3ffc9ca68f docs: minor readme update
REVERT: e237bba94b chore: copilot helped me with refactororing readme
REVERT: 3646fd8f17 docs: update readme
REVERT: b66ea78481 feat: change red led to white, so it would shine brighter
REVERT: 86d9f36c7d fix: couple more minor bugs
REVERT: 2d6d0a0354 fix: couple of minor bugs and refactor timer
REVERT: f0143c624e Latest RM0207-2256-0.420.0-60a6c2e on PATREON - NEW RELEASE
REVERT: 60a6c2e79f Latest RM0207-1202-0.420.0-b84c536 on PATREON - UPD METROFLIP
REVERT: 641cc4230d Merge applications/external/metroflip updates from dev metroflip
REVERT: e8363a027b Latest RM0207-1202-0.420.0-b84c536 on PATREON - UPD SUBGHZ SCHEDULER
REVERT: e0d70441aa pre-functional stuff for mfc data loading
REVERT: 5a412490c3 lint
REVERT: 66ef51182c Merge applications/external/metroflip updates from dev metroflip
REVERT: eaee873c1f fix smartrider
REVERT: 5e40d55d4b add mifare classic loading
REVERT: 353f64e1ff Fixed load error introduced in last push re: check_file_ext
REVERT: 73bc4b93ec Updated README.md
REVERT: 07801a0251 Update CHANGELOG.md. Increment version to 2.1.
REVERT: 3e88673860 Fixed NULL dereference error during load_file. NULL extension filtering intermittently crashed on OFW, completely breaks on Momentum 009.
REVERT: ce7c7b2106 Latest RM0207-1202-0.420.0-b84c536 on PATREON - UPD CIGARETTE
REVERT: 5642f23fd0 Merge applications/external/metroflip updates from dev metroflip
REVERT: c09aa88458 remove ds store
REVERT: 32997adc89 Latest RM0207-1202-0.420.0-b84c536 on PATREON - NEW RELEASE
REVERT: b189d4ea7d added 'about'
REVERT: b84c536c63 Latest RM0206-1555-0.420.0…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant