Skip to content

Commit

Permalink
Move plugin to folder
Browse files Browse the repository at this point in the history
  • Loading branch information
bettse committed Apr 15, 2024
1 parent 4aeb5f4 commit 0cb6383
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ App(
sources=[
"*.c",
"aeabi_uldivmod.sx",
"!plugin*.c",
"!plugin/*.c",
],
fap_icon="icons/logo.png",
fap_category="NFC",
Expand Down Expand Up @@ -46,5 +46,5 @@ App(
apptype=FlipperAppType.PLUGIN,
entry_point="plugin_wiegand_ep",
requires=["seader"],
sources=["plugin_wiegand.c"],
sources=["plugin/wiegand.c"],
)
File renamed without changes.
2 changes: 1 addition & 1 deletion plugin_wiegand.c → plugin/wiegand.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

#include "plugin_interface.h"
#include "interface.h"

#include <lib/bit_lib/bit_lib.h>
#include <flipper_application/flipper_application.h>
Expand Down
2 changes: 1 addition & 1 deletion seader_i.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
#include <Payload.h>
#include <FrameProtocol.h>

#include "plugin_interface.h"
#include "plugin/interface.h"
#include <flipper_application/flipper_application.h>
#include <flipper_application/plugins/plugin_manager.h>
#include <loader/firmware_api/firmware_api.h>
Expand Down

0 comments on commit 0cb6383

Please sign in to comment.