Skip to content

Commit

Permalink
Update ed64x.c
Browse files Browse the repository at this point in the history
Improve variant enumeration
  • Loading branch information
networkfusion committed Aug 30, 2024
1 parent 9f4d65f commit 31d0758
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/flashcart/ed64/ed64x.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
#include "ed64x.h"

typedef enum {
ED64_X5 = 5,
ED64_X7 = 7,
// potentially handle if the firmware supports it...
// ED64_V1_0 = 10,
// ED64_V2_0 = 20,
// ED64_V2_5 = 25,
// ED64_V3_0 = 30,
// ED64_V1_0 = 110,
// ED64_V2_0 = 320,
// ED64_V2_5 = 325,
// ED64_V3_0 = 330,
ED64_X5 = 450,
ED64_X7 = 470,
ED64_UKNOWN = 0,
} ed64x_device_variant_t;

Expand Down

0 comments on commit 31d0758

Please sign in to comment.