Skip to content

Commit

Permalink
increase SSID/Password size to 30
Browse files Browse the repository at this point in the history
  • Loading branch information
marchingband committed Jan 3, 2024
1 parent d759c44 commit f7f1f86
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/file_system.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
// char waver_tag[METADATA_TAG_LENGTH] = "wvr_magic_13"; // v1.x.x
// char waver_tag[METADATA_TAG_LENGTH] = "wvr_magic_14"; // v2.x.x
char waver_tag[METADATA_TAG_LENGTH] = "wvr_magic_15"; // v3.x.x
// char waver_tag[METADATA_TAG_LENGTH] = "wvr_magic_16"; // v4.x.x

static const char* TAG = "file_system";

Expand Down
4 changes: 2 additions & 2 deletions src/file_system.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ struct metadata_t {
uint8_t pitch_bend_semitones_up;
uint8_t pitch_bend_semitones_down;
uint8_t do_station_mode;
char station_ssid[20];
char station_passphrase[20];
char station_ssid[30];
char station_passphrase[30];
};

struct vol_t {
Expand Down

0 comments on commit f7f1f86

Please sign in to comment.