In the second article we introduced CPU structure and the program implementation. In this article we are going to teach you how to install and configure necessary tools for compiling written codes for Raspberry-Pi’s boards.
As we explained earlier, Raspberry-Pi hardware based on ARM processor and its program can’t be complied using x86 compiler such as visual studio.
For more information about necessary tools, installation and configuration method follow sisoog.
Available compiler:
This is obvious that a tool for converting written code to understandable code for processor, is needed. For converting raspberry pi code, it must be compatible with ARM platforms; there aren’t many compilers which have this capability, here are some the most popular ones:
- ARM keil
- ARM IAR
- GCC
You may say what about Atmel Studio or CooCox! But here is the point that we want compiler and these are just editors without their own compiler; for example, SEGGER Embedded Studio or even Atmel Studio use GCC as compiler.
Which compiler do we use?
It’s easy to decide about compiler, both IAR and Keil are not free and have to buy license, we as sisoog team prefer to recommend and use open source and free tools. So we select GCC but is GCC not only is free and open source but also flexible and is better than Keil. Maybe it isn’t stronger than IAR but has very close perforfance.
GCC is such a powerful compiler that ARM Keil allows user to choose between Keil editor and GCC compiler.
How to install GCC compiler?
If your using Linux OS all you have to do is to type just one command:
1 | sudo apt-get install gcc-arm-embedded |
*this command is only for Debian based Linux distribution.
Windows users have to follow some steps:
First, go to GCC ARM Embedded and download the latest version based on their Windows OS.
Pay attention to download the installation version.
Installation is simple, just click next bottom like other software; the video can help.
To make sure software installed correctly you can type this command in windows’ Command Prompt or Linux terminal
1 | arm-none-eabi-gcc –v |
For correct installation, output is like below:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | Using built-in specs. COLLECT_GCC=arm-none-eabi-gcc COLLECT_LTO_WRAPPER=c:/program\ files\ (x86)/gnu\ tools\ arm\ embedded/4.9\ 2015 q1/bin/../lib/gcc/arm-none-eabi/4.9.3/lto-wrapper.exe Target: arm-none-eabi Configured with: /home/build/work/GCC-4-9-build/src/gcc/configure --build=i686-l inux-gnu --host=i686-w64-mingw32 --target=arm-none-eabi --prefix=/home/build/wor k/GCC-4-9-build/install-mingw --libexecdir=/home/build/work/GCC-4-9-build/instal l-mingw/lib --infodir=/home/build/work/GCC-4-9-build/install-mingw/share/doc/gcc -arm-none-eabi/info --mandir=/home/build/work/GCC-4-9-build/install-mingw/share/ doc/gcc-arm-none-eabi/man --htmldir=/home/build/work/GCC-4-9-build/install-mingw /share/doc/gcc-arm-none-eabi/html --pdfdir=/home/build/work/GCC-4-9-build/instal l-mingw/share/doc/gcc-arm-none-eabi/pdf --enable-languages=c,c++ --disable-decim al-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libqu admath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared - -disable-threads --disable-tls --with-gnu-as --with-gnu-ld --with-headers=yes -- with-newlib --with-python-dir=share/gcc-arm-none-eabi --with-sysroot=/home/build /work/GCC-4-9-build/install-mingw/arm-none-eabi --with-libiconv-prefix=/home/bui ld/work/GCC-4-9-build/build-mingw/host-libs/usr --with-gmp=/home/build/work/GCC- 4-9-build/build-mingw/host-libs/usr --with-mpfr=/home/build/work/GCC-4-9-build/b uild-mingw/host-libs/usr --with-mpc=/home/build/work/GCC-4-9-build/build-mingw/h ost-libs/usr --with-isl=/home/build/work/GCC-4-9-build/build-mingw/host-libs/usr --with-cloog=/home/build/work/GCC-4-9-build/build-mingw/host-libs/usr --with-li belf=/home/build/work/GCC-4-9-build/build-mingw/host-libs/usr --with-host-libstd cxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --with-pkgversion='GNU Tools for ARM Embedded Processors' --with-multilib-list=armv6-m,armv7-m,armv7e-m ,cortex-m7,armv7-r Thread model: single gcc version 4.9.3 20150303 (release) [ARM/embedded-4_9-branch revision 221220] ( GNU Tools for ARM Embedded Processors) |
It means all configuration and installation is done correctly.
Write the first program
Writing the first program is always the hardest part, because there are lots of parameters which can cause a program not to work. This this why the first program is written as simple as possible, in computer word it’s called Hello word. Here it is:
1 2 3 | main( ) { printf("hello, world"); } |
But in electronics word it’s different because printf needs lots of knowledge of hardware and software to be configured. So in this word we start with something completely different and this is a blinking LED, which is actually a program sends 1 and 0 to a pin continuously. This is the simplest program which can be written for checking the correctness of running program; this is the reason that most of evaluation boards have at least one LED which can be controlled by central processor. Raspberry boards also have a LED named ACT.
First of all, we have to know which pin is connected to this LED; depends on various type of hardware of Raspberry pi boards, we set Raspberry pi 2 as default.
Before all we need schematic of board which fortunately is available. For downloading the schematic go to Raspberry pi website.
As you can see in the picture above, ACT LED which is called Status LED by the schematic, is connected to GPIO16. For controlling a GPIO, processor datasheet is needed which is also available by Raspberry development team.
Due to the obtained information and processor registers, it’s easy to write the program but in this article we stop explaining details and we will discuss how to implement and work with processor registers in the next articles.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | /* The base address of the GPIO peripheral (ARM Physical Address) */ #define GPIO_BASE 0x3F200000UL #define LED_GPFSEL GPIO_GPFSEL4 #define LED_GPFBIT 21 #define LED_GPSET GPIO_GPSET1 #define LED_GPCLR GPIO_GPCLR1 #define LED_GPIO_BIT 15 /** GPIO Register set */ volatile unsigned int* gpio; /** Simple loop variable */ volatile unsigned int tim; /** Main function - we'll never return from here */ int main(void) __attribute__((naked)); int main(void) { /* Assign the address of the GPIO peripheral (Using ARM Physical Address) */ gpio = (unsigned int*)GPIO_BASE; /* Write 1 to the GPIO16 init nibble in the Function Select 1 GPIO peripheral register to enable GPIO16 as an output */ gpio[LED_GPFSEL] |= (1 << LED_GPFBIT); /* Never exit as there is no OS to exit to! */ while(1) { for(tim = 0; tim < 500000; tim++) ; /* Set the LED GPIO pin low ( Turn OK LED on for original Pi)*/ gpio[LED_GPCLR] = (1 << LED_GPIO_BIT); for(tim = 0; tim < 500000; tim++) ; /* Set the LED GPIO pin high ( Turn OK LED off for original Pi)*/ gpio[LED_GPSET] = (1 << LED_GPIO_BIT); } } |
How to compile a program?
We save the above program with the name blinkact.c. Before compiling the program, we need to customized settings for used platform, which can be set at once duo to the GCC compiler command line options. All we need is to run the bottom line at terminal or command line:
1 | arm-none-eabi-gcc -O0 -mfpu=neon-vfpv4 -mfloat-abi=hard -march=armv7-a -mtune=cortex-a7 -nostartfiles -g blinkact.c -o kernel.elf |
-mtune=cortex-a7 tells compiler to compile the code for Cortex-a7 family and -march=armv7-a defines architecture. After running the above command, program is compiled and kernel.elf as output is created. Elf file contains lots of information about used libraries, some parameters for faulting and also executive details. For extracting executive codes, we need to run this command:
1 | arm-none-eabi-objcopy kernel.elf -O binary kernel.img |
After this kernel.img as executive file is created.
Now program is ready to run.
In the next article we’re going to discussed about used tools and how to configure Eclipse editor.
Author: Zeus
Translate: Golnoosh