diff --git a/application.fam b/application.fam index d7c6eda..84e8c72 100644 --- a/application.fam +++ b/application.fam @@ -14,7 +14,7 @@ App( sources=[ "*.c", "aeabi_uldivmod.sx", - "!plugin*.c", + "!plugin/*.c", ], fap_icon="icons/logo.png", fap_category="NFC", @@ -46,5 +46,5 @@ App( apptype=FlipperAppType.PLUGIN, entry_point="plugin_wiegand_ep", requires=["seader"], - sources=["plugin_wiegand.c"], + sources=["plugin/wiegand.c"], ) diff --git a/plugin_interface.h b/plugin/interface.h similarity index 100% rename from plugin_interface.h rename to plugin/interface.h diff --git a/plugin_wiegand.c b/plugin/wiegand.c similarity index 99% rename from plugin_wiegand.c rename to plugin/wiegand.c index 51d6973..424d40d 100644 --- a/plugin_wiegand.c +++ b/plugin/wiegand.c @@ -1,5 +1,5 @@ -#include "plugin_interface.h" +#include "interface.h" #include #include diff --git a/seader_i.h b/seader_i.h index 19248b1..2cd5b80 100644 --- a/seader_i.h +++ b/seader_i.h @@ -41,7 +41,7 @@ #include #include -#include "plugin_interface.h" +#include "plugin/interface.h" #include #include #include