Skip to content

Commit

Permalink
feat: allow delay up to 12s
Browse files Browse the repository at this point in the history
  • Loading branch information
xtruan authored Aug 29, 2024
1 parent cb6e15d commit 22445c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nfc_playlist.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ typedef struct {

static const int options_emulate_timeout[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
static const int default_emulate_timeout = 4;
static const int options_emulate_delay[] = {0, 1, 2, 3, 4, 5, 6};
static const int options_emulate_delay[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
static const int default_emulate_delay = 0;
static const bool default_emulate_led_indicator = true;
static const bool default_skip_error = false;
Expand All @@ -82,4 +82,4 @@ typedef enum NfcPlaylistLedState {
} NfcPlaylistLedState;

void start_blink(NfcPlaylist* nfc_playlist, int state);
void stop_blink(NfcPlaylist* nfc_playlist);
void stop_blink(NfcPlaylist* nfc_playlist);

0 comments on commit 22445c5

Please sign in to comment.