Skip to content

Commit 141a392

Browse files
committed
Sigmastar: add infinity6f
1 parent 9f76227 commit 141a392

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/hal/sstar.c

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ bool sstar_detect_cpu(char *chip_name) {
6262
case INFINITY6:
6363
strcpy(chip_name, "SSC32X");
6464
break;
65-
case INFINITY6E:
65+
case INFINITY6B:
6666
strcpy(chip_name, "SSC33X");
6767
break;
68-
case INFINITY6B:
68+
case INFINITY6E:
6969
strcpy(chip_name, "SSC33X");
7070
break;
7171
case MERCURY6:
@@ -74,6 +74,9 @@ bool sstar_detect_cpu(char *chip_name) {
7474
case INFINITY6C:
7575
strcpy(chip_name, "SSC37X");
7676
break;
77+
case INFINITY6F:
78+
strcpy(chip_name, "SSC37X");
79+
break;
7780
}
7881
return true;
7982
}

src/hal/sstar.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define MSTAR_ADDR 0x1F2025A4
1212
#define SSTAR_ADDR 0x1F003C00
1313

14-
#define INFINITY3 0xC2 // Twinkie
14+
#define INFINITY3 0xC2 // Infinity3
1515
#define INFINITY5 0xED // Pretzel
1616
#define MERCURY5 0xEE // Mercury5
1717
#define INFINITY6 0xEF // Macaron
@@ -21,6 +21,7 @@
2121
#define MERCURY6 0xF4 // Tiramisu
2222
#define PIONEER3 0xF5 // Ikayaki
2323
#define INFINITY6C 0xF9 // Maruko
24+
#define INFINITY6F 0xFB // Souffle
2425

2526
bool mstar_detect_cpu(char *chip_name);
2627
bool sstar_detect_cpu(char *chip_name);

0 commit comments

Comments
 (0)