Skip to content

Commit ead9941

Browse files
authored
Merge pull request #6 from Nem0oo/renaming
removing ios references (tested on android)
2 parents 350150c + e2fac0f commit ead9941

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

application.fam

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
App(
2-
appid="ios_trigger",
3-
name="iOS trigger",
2+
appid="bt_trigger",
43
apptype=FlipperAppType.EXTERNAL,
5-
entry_point="ios_trigger_app",
6-
cdefines=["APP_IOS_TRIGGER"],
4+
name="BT trigger",
5+
entry_point="bt_trigger_app",
6+
cdefines=["APP_BT_TRIGGER"],
77
requires=[
8-
"gui",
8+
"gui"
99
],
1010
stack_size=1 * 1024,
11-
order=90,
12-
fap_icon="ios_trigger_logo.png",
11+
fap_icon="bt_trigger_logo.png",
1312
fap_category="Misc",
1413
fap_icon_assets="assets"
1514
)

ios_trigger.c bt_trigger.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#include "ios_trigger.h"
1+
#include "bt_trigger.h"
22

3-
__int32_t ios_trigger_app(void *p){
3+
__int32_t bt_trigger_app(void *p){
44
//Fake using p to compile
55
UNUSED(p);
66
AppStruct* app = appStructAlloc();

ios_trigger.h bt_trigger.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
#include <assets_icons.h>
1717
//#include "ios_trigger_icons.h"
1818

19-
#define HID_BT_KEYS_STORAGE_PATH EXT_PATH("apps_data/ios_trigger/hid.keys")
20-
#define TAG "iOs_trigger"
19+
#define HID_BT_KEYS_STORAGE_PATH EXT_PATH("apps_data/bt_trigger/hid.keys")
20+
#define TAG "bt_trigger"
2121

2222
//Enum of allowed event types
2323
typedef enum{
File renamed without changes.

0 commit comments

Comments
 (0)