Is this what you're after? I think there's currently only two DragonBall
devices used on the Palm device (the original DragonBall and the newer
DragonBall EZ).
// Retrieve the DragonBall CPU type used in the Palm device
UInt32 cpuType;
if ( FtrGet( sysFtrCreator, sysFtrNumProcessorID, &cpuType ) )
{
// ERROR: Feature isn't defined, so must an old PalmOS.
// Assume an original DragonBall processor.
cpuType = sysFtrNumProcessor328;
}
else
{
cpuType &= sysFtrNumProcessorMask;
}
if ( cpuType == sysFtrNumProcessor328 )
{
// Original DragonBall processor
}
else if ( cpuType == sysFtrNumProcessorEZ )
{
// DragonBall EZ processor
}
else
{
// Some new processor we don't know about yet!
}
Stuart Nicholson
Programmer
Firepad Inc.
-----Original Message-----
From: Patrick Ouellet [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 01, 2000 11:46 AM
To: Palm Developer Forum
Subject: How to know which processor
How could I find which Dragon Ball is inside my palm device,
since many variant of the Dragon Ball processor are present in palm
device...
--
For information on using the Palm Developer Forums, or to unsubscribe,
please see http://www.palmos.com/dev/tech/support/forums/
--
For information on using the Palm Developer Forums, or to unsubscribe, please see
http://www.palmos.com/dev/tech/support/forums/