Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Revert "Skorp/subghz cc1120 Patched" #20

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-Trad…
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