Skip to content

Commit

Permalink
Merge pull request #6 from Nem0oo/renaming
Browse files Browse the repository at this point in the history
removing ios references (tested on android)
  • Loading branch information
Nem0oo authored Jan 29, 2023
2 parents 350150c + e2fac0f commit ead9941
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
13 changes: 6 additions & 7 deletions application.fam
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
App(
appid="ios_trigger",
name="iOS trigger",
appid="bt_trigger",
apptype=FlipperAppType.EXTERNAL,
entry_point="ios_trigger_app",
cdefines=["APP_IOS_TRIGGER"],
name="BT trigger",
entry_point="bt_trigger_app",
cdefines=["APP_BT_TRIGGER"],
requires=[
"gui",
"gui"
],
stack_size=1 * 1024,
order=90,
fap_icon="ios_trigger_logo.png",
fap_icon="bt_trigger_logo.png",
fap_category="Misc",
fap_icon_assets="assets"
)
4 changes: 2 additions & 2 deletions ios_trigger.c → bt_trigger.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "ios_trigger.h"
#include "bt_trigger.h"

__int32_t ios_trigger_app(void *p){
__int32_t bt_trigger_app(void *p){
//Fake using p to compile
UNUSED(p);
AppStruct* app = appStructAlloc();
Expand Down
4 changes: 2 additions & 2 deletions ios_trigger.h → bt_trigger.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
#include <assets_icons.h>
//#include "ios_trigger_icons.h"

#define HID_BT_KEYS_STORAGE_PATH EXT_PATH("apps_data/ios_trigger/hid.keys")
#define TAG "iOs_trigger"
#define HID_BT_KEYS_STORAGE_PATH EXT_PATH("apps_data/bt_trigger/hid.keys")
#define TAG "bt_trigger"

//Enum of allowed event types
typedef enum{
Expand Down
File renamed without changes

0 comments on commit ead9941

Please sign in to comment.