Problems With Old Projects

Can't compile things to check Library file changes Are you using a library like the bcm2835 IO library by Mike McCauley? If so have you updated the library since last working on this project and need to copy the new header file into your project source? Can't run things to check Using eclipse and putty  Delete […]

Read More

.Getting Your RPi Ready For C Programming

C is a natural choice to program in on the Raspberry Pi. It's very powerful, usable on virtually all hardware platforms and really similar to lots of other programming languages such as Java, PHP, C# and objective C. As popular programming languages go its as powerful as it gets, with only assembler beating it in […]

Read More

Running Your Exe

Running your exe from the command prompt If you are in the same directory: ./myexefile //The '.' says 'in this directory' If you are in another directory: /home/pi/projects/myexefile If you need root permissions (e.g. your application uses IO control) then add sudo in front of the command to elevate the command permissions to the root […]

Read More