mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-01 00:28:18 +00:00
60 lines
1.0 KiB
C
60 lines
1.0 KiB
C
|
|
||
|
#include <stdint.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#include "raspi_get_model.h"
|
||
|
|
||
|
/**
|
||
|
* Raspberry Pi model detection based on,
|
||
|
* https://elinux.org/RPi_HardwareHistory
|
||
|
**/
|
||
|
int raspi_get_model()
|
||
|
{
|
||
|
FILE *f = fopen( "/proc/cpuinfo", "rb" );
|
||
|
if( f == NULL )
|
||
|
{
|
||
|
perror( "can't open cpuinfo!" );
|
||
|
return MODEL_UNKNOWN;
|
||
|
}
|
||
|
|
||
|
int ret = 0;
|
||
|
uint32_t revision = 0;
|
||
|
uint32_t model = MODEL_UNKNOWN;
|
||
|
char line[100] = { 0 };
|
||
|
char *ptr = NULL;
|
||
|
for(; ret < 1;)
|
||
|
{
|
||
|
ptr = fgets( line, 100, f );
|
||
|
if( ptr == NULL )
|
||
|
break;
|
||
|
ret = sscanf( line, "Revision : %x\n", &revision );
|
||
|
}
|
||
|
|
||
|
fclose( f );
|
||
|
|
||
|
switch( revision )
|
||
|
{
|
||
|
case 0x9000c1:
|
||
|
model = MODEL_ZERO_W;
|
||
|
break;
|
||
|
case 0xa02082:
|
||
|
case 0xa22082:
|
||
|
case 0xa32082:
|
||
|
model = MODEL_3B;
|
||
|
break;
|
||
|
case 0xa020d3:
|
||
|
model = MODEL_3BPLUS;
|
||
|
break;
|
||
|
case 0x9020e0:
|
||
|
model = MODEL_3APLUS;
|
||
|
break;
|
||
|
default:
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
return model;
|
||
|
}
|
||
|
|
||
|
|