Skip to content

Commit

Permalink
removing speaker, printf
Browse files Browse the repository at this point in the history
  • Loading branch information
xtruan committed Mar 3, 2023
1 parent 0ebd89e commit e10c129
Show file tree
Hide file tree
Showing 5 changed files with 1,061 additions and 1,061 deletions.
2 changes: 1 addition & 1 deletion flipbip.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ FlipBip* flipbip_app_alloc() {
app->submenu = submenu_alloc();

app->haptic = 1;
app->speaker = 1;
//app->speaker = 1;
app->led = 1;
app->bip39_strength = 2; // 256 bits (24 words)

Expand Down
10 changes: 5 additions & 5 deletions flipbip.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ typedef struct {
FlipBipScene1* flipbip_scene_1;
// FlipBipScene2* flipbip_scene_2;
int haptic;
int speaker;
// int speaker;
int led;
int bip39_strength;
} FlipBip;
Expand All @@ -44,10 +44,10 @@ typedef enum {
FlipBipHapticOn,
} FlipBipHapticState;

typedef enum {
FlipBipSpeakerOff,
FlipBipSpeakerOn,
} FlipBipSpeakerState;
// typedef enum {
// FlipBipSpeakerOff,
// FlipBipSpeakerOn,
// } FlipBipSpeakerState;

typedef enum {
FlipBipLedOff,
Expand Down
Loading

0 comments on commit e10c129

Please sign in to comment.