Skip to content

Commit a011845

Browse files
authored
Merge pull request jgarff#521 from dimzeta/master
Fix RPi 3B+ Rev 1.4 - Revision a020d4
2 parents 15330cb + c09fecb commit a011845

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

rpihw.c

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ static const rpi_hw_t rpi_hw_info[] = {
157157
.videocore_base = VIDEOCORE_BASE_RPI2,
158158
.desc = "Pi 4 Model B - 4GB v1.5"
159159
},
160-
{
160+
{
161161
.hwver = 0xd03115,
162162
.type = RPI_HWVER_TYPE_PI4,
163163
.periph_base = PERIPH_BASE_RPI4,
@@ -414,9 +414,9 @@ static const rpi_hw_t rpi_hw_info[] = {
414414
.desc = "Pi Zero W v1.1",
415415
},
416416

417-
//
417+
//
418418
// Model Zero 2 W
419-
//
419+
//
420420
{
421421
.hwver = 0x902120,
422422
.type = RPI_HWVER_TYPE_PI2,
@@ -487,6 +487,13 @@ static const rpi_hw_t rpi_hw_info[] = {
487487
//
488488
// Pi 3 Model B
489489
//
490+
{
491+
.hwver = 0xa020d4,
492+
.type = RPI_HWVER_TYPE_PI2,
493+
.periph_base = PERIPH_BASE_RPI2,
494+
.videocore_base = VIDEOCORE_BASE_RPI2,
495+
.desc = "Pi 3 B+",
496+
},
490497
{
491498
.hwver = 0xa020d3,
492499
.type = RPI_HWVER_TYPE_PI2,
@@ -621,4 +628,3 @@ const rpi_hw_t *rpi_hw_detect(void)
621628

622629
return result;
623630
}
624-

0 commit comments

Comments
 (0)