forked from flipperdevices/flipperzero-firmware
-
-
Notifications
You must be signed in to change notification settings - Fork 547
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed 'applications/external/' changes from 68b1a9af7c..e242113f55
e242113f55 Add seader/plugin from https://gitlab.com/bettse/flipper-wiegand-plugin f83a18aab9 Merge seader from https://github.com/bettse/seader 1c9883d64f Merge picopass from https://github.com/flipperdevices/flipperzero-good-faps 57598dfd83 Merge flizzer_tracker from https://github.com/LTVA1/flizzer_tracker 47ee8e55e9 Picopass cleanup (#201) b702c44 Update application.fam e96cfa1 trigger envelope release on xx tick... 6369a1f Update screenshots d34730f move pxd to media f4821fd show parse for saved cards 32cae43 Move delete below info in list dbb9efe Update plugin 30d5c440e6 Correct H10301 parity check 4688e5f v2.7 123141a Merge pull request #16 from bettse/plugin 877cf03 Change submodule to http c2dc739575 Update readme 124549c Add submodule to git workflow checkout aaf3e22 Move plugin to git submodule 4353973354 Add code 0dcc0d1cf9 add README 0cb6383 Move plugin to folder 4aeb5f4 add C1k35s f907489 H10301 parsing f736e8d fix plugin check 93cd7ea scene to show parsed formats 8b3fb58 Add textbox 0802b59 loads plugin 6bbd7d5 Builds 7ac58d7 re #15 create picopass folder 57aba91 log incoming apdu git-subtree-dir: applications/external git-subtree-split: e242113f5503569206db6a75b21ece2fa50e5919
- Loading branch information
1 parent
2bcadee
commit aee2212
Showing
25 changed files
with
406 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
https://gitlab.com/bettse/flipper-wiegand-plugin main / |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Flipper zero wiegand plugin | ||
|
||
Add as git submodule: `git submodule add https://gitlab.com/bettse/flipper-wiegand-plugin.git plugin` | ||
|
||
Add to your `application.fam` | ||
``` | ||
App( | ||
appid="plugin_wiegand", | ||
apptype=FlipperAppType.PLUGIN, | ||
entry_point="plugin_wiegand_ep", | ||
requires=["seader"], | ||
sources=["plugin/wiegand.c"], | ||
) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/** | ||
* @file plugin_interface.h | ||
* @brief Example plugin interface. | ||
* | ||
* Common interface between a plugin and host application | ||
*/ | ||
#pragma once | ||
|
||
#include <stdint.h> | ||
#include <stddef.h> | ||
#include <furi.h> | ||
|
||
#define PLUGIN_APP_ID "plugin_wiegand" | ||
#define PLUGIN_API_VERSION 1 | ||
|
||
typedef struct { | ||
const char* name; | ||
int (*count)(uint8_t, uint64_t); | ||
void (*description)(uint8_t, uint64_t, size_t, FuriString*); | ||
} PluginWiegand; |
Oops, something went wrong.