File tree 4 files changed +10
-11
lines changed
4 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 1
1
App(
2
- appid="ios_trigger",
3
- name="iOS trigger",
2
+ appid="bt_trigger",
4
3
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"],
7
7
requires=[
8
- "gui",
8
+ "gui"
9
9
],
10
10
stack_size=1 * 1024,
11
- order=90,
12
- fap_icon="ios_trigger_logo.png",
11
+ fap_icon="bt_trigger_logo.png",
13
12
fap_category="Misc",
14
13
fap_icon_assets="assets"
15
14
)
Original file line number Diff line number Diff line change 1
- #include "ios_trigger .h"
1
+ #include "bt_trigger .h"
2
2
3
- __int32_t ios_trigger_app (void * p ){
3
+ __int32_t bt_trigger_app (void * p ){
4
4
//Fake using p to compile
5
5
UNUSED (p );
6
6
AppStruct * app = appStructAlloc ();
Original file line number Diff line number Diff line change 16
16
#include <assets_icons.h>
17
17
//#include "ios_trigger_icons.h"
18
18
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 "
21
21
22
22
//Enum of allowed event types
23
23
typedef enum {
File renamed without changes.
You can’t perform that action at this time.
0 commit comments