Difference between revisions of "Lazarus on RPi"

From eLinux.org
Jump to: navigation, search
(Hardware access)
Line 18: Line 18:
  
 
The newest versions of Lazarus are distributed as source code. In order to compile Lazarus from subversion sources see [http://www.michellcomputing.co.uk/blog/2012/11/lazarus-on-the-raspberry-pi/ Michell Computing: Lazarus on the Raspberry Pi] for details.
 
The newest versions of Lazarus are distributed as source code. In order to compile Lazarus from subversion sources see [http://www.michellcomputing.co.uk/blog/2012/11/lazarus-on-the-raspberry-pi/ Michell Computing: Lazarus on the Raspberry Pi] for details.
 +
 +
==Accessing low-level hardware==
 +
 +
Hardware hacking is easily possible with the Lazarus wrapper unit for Gordon Henderson's wiringPi C library (see bwlow). Alternatively, the GPIO port is also accessible directly from Free Pascal as described in the article on [[RPi Low-level peripherals#GPIO Driving Example (Lazarus / Free Pascal)|RPi Low-level peripherals]].
  
 
== External Links ==
 
== External Links ==

Revision as of 11:22, 27 January 2013

Lazarus on Raspbian Wheezy
Lazarus on Raspberry Pi.

Lazarus is a cross-platform IDE for Free Pascal, a professional 32 bit / 64 bit Pascal Compiler. Lazarus supports a wide variety of processors and Linux distributions including the Raspberry Pi, where it runs natively.

Simple installation

In the Raspbian distribution Lazarus and Free Pascal are easily installed with the following shell commands:

  sudo apt-get update
  sudo apt-get upgrade
  sudo apt-get install fpc
  sudo apt-get install lazarus

This installs a ready-to-use precompiled version of Lazarus, however not necessarily the newest one.

Compiling from sources

The newest versions of Lazarus are distributed as source code. In order to compile Lazarus from subversion sources see Michell Computing: Lazarus on the Raspberry Pi for details.

Accessing low-level hardware

Hardware hacking is easily possible with the Lazarus wrapper unit for Gordon Henderson's wiringPi C library (see bwlow). Alternatively, the GPIO port is also accessible directly from Free Pascal as described in the article on RPi Low-level peripherals.

External Links