Updated versions for new maker - mbest

This commit is contained in:
Gordon Henderson 2015-01-07 14:26:17 +00:00
parent 0a9fdeb29d
commit d42e831089
3 changed files with 6 additions and 3 deletions

View File

@ -53,7 +53,7 @@ extern void doPins (void) ;
# define FALSE (1==2) # define FALSE (1==2)
#endif #endif
#define VERSION "2.21" #define VERSION "2.22"
#define PI_USB_POWER_CONTROL 38 #define PI_USB_POWER_CONTROL 38
#define I2CDETECT "/usr/sbin/i2cdetect" #define I2CDETECT "/usr/sbin/i2cdetect"

View File

@ -222,12 +222,13 @@ const char *piRevisionNames [5] =
"2", "2",
} ; } ;
const char *piMakerNames [4] = const char *piMakerNames [5] =
{ {
"Unknown", "Unknown",
"Egoman", "Egoman",
"Sony", "Sony",
"Qusda", "Qusda",
"MBest",
} ; } ;
@ -787,6 +788,7 @@ void piBoardId (int *model, int *rev, int *mem, int *maker, int *overVolted)
else if (strcmp (c, "0010") == 0) { *model = PI_MODEL_BP ; *rev = PI_VERSION_1_2 ; *mem = 512 ; *maker = PI_MAKER_SONY ; } else if (strcmp (c, "0010") == 0) { *model = PI_MODEL_BP ; *rev = PI_VERSION_1_2 ; *mem = 512 ; *maker = PI_MAKER_SONY ; }
else if (strcmp (c, "0011") == 0) { *model = PI_MODEL_CM ; *rev = PI_VERSION_1_2 ; *mem = 512 ; *maker = PI_MAKER_SONY ; } else if (strcmp (c, "0011") == 0) { *model = PI_MODEL_CM ; *rev = PI_VERSION_1_2 ; *mem = 512 ; *maker = PI_MAKER_SONY ; }
else if (strcmp (c, "0012") == 0) { *model = PI_MODEL_AP ; *rev = PI_VERSION_1_2 ; *mem = 256 ; *maker = PI_MAKER_SONY ; } else if (strcmp (c, "0012") == 0) { *model = PI_MODEL_AP ; *rev = PI_VERSION_1_2 ; *mem = 256 ; *maker = PI_MAKER_SONY ; }
else if (strcmp (c, "0013") == 0) { *model = PI_MODEL_BP ; *rev = PI_VERSION_1_2 ; *mem = 512 ; *maker = PI_MAKER_MBEST ; }
else { *model = 0 ; *rev = 0 ; *mem = 0 ; *maker = 0 ; } else { *model = 0 ; *rev = 0 ; *mem = 0 ; *maker = 0 ; }
} }

View File

@ -87,10 +87,11 @@
#define PI_MAKER_EGOMAN 1 #define PI_MAKER_EGOMAN 1
#define PI_MAKER_SONY 2 #define PI_MAKER_SONY 2
#define PI_MAKER_QISDA 3 #define PI_MAKER_QISDA 3
#define PI_MAKER_MBEST 4
extern const char *piModelNames [6] ; extern const char *piModelNames [6] ;
extern const char *piRevisionNames [5] ; extern const char *piRevisionNames [5] ;
extern const char *piMakerNames [4] ; extern const char *piMakerNames [5] ;
// Intended for the GPIO program Use at your own risk. // Intended for the GPIO program Use at your own risk.