While coding a Raspberry Pi application I do use my PC most of the time since it is a little faster then the Pi.
Today I got the following message when a WiringPi specific code (wiringPiSetup();
) got called:
piBoardRev: Unable to determine board revision from /proc/cpuinfo
-> No hardware line
-> You may want to check:
-> http://www.raspberrypi.org/phpBB3/viewtopic.php?p=184410#p184410
I would like to skip Raspberry Pi specific code (such this WiringPi part) but execute the rest when running on a PC.
Actually how should I approach this issue?