Microcontroller Cross Compiler: A Comprehensive Guide

microcontroller
compiler
embedded system
cross compiler
object code

A Microcontroller Cross Compiler is a program that translates source code written in a higher-level language (like C) into a lower-level language (assembly language/machine code/binary code/object code). This resulting object code is then suitable for execution on a specific target, such as a microcontroller or processor.

The primary reason for this conversion is to create an executable program tailored for the desired target device. When the target program is compiled and meant to run on a computer/platform/system with a CPU/operating system different from where the compiler itself is installed, this type of compiler is known as a cross-compiler.

Tools like µVision are widely used as compilers for various microcontroller families. µVision assists in the development and testing of embedded applications for ARM/Cortex-M, C166/C251/C51 microcontrollers.

The following memory type models, variable types, and Special Function Registers (SFRs) are used in 8051-based cross compilers.

Memory Types

The memory model dictates the default memory type to be used for:

  • Function arguments
  • Automatic variables
  • Declarations lacking an explicit memory type specifier

You can specify the memory model on the Cx51 command line using SMALL, COMPACT, and LARGE directives.

Memory TypeDescription
codeProgram memory
dataDirectly addressable internal data memory
idataIndirectly addressable internal data memory
bdataBit addressable internal data memory
xdataExternal data memory
pdataPaged external data memory

Variable Data Types

Variable data typeBitsBytesValue Range
bit110 to 1
signed char81-128 to +127
unsigned char810 to 255
signed short162-32768 to +32767
unsigned short1620 to 65535
signed int162-32768 to +32767
unsigned long3240 to 4294967295
float324+/- 1.17E-38 to +/-3.40E+38
sbit110 to 1
sfr810 to 255

Special Function Registers (SFRs)

Intel 8051 family microprocessors designate a specific memory area for accessing SFRs. SFRs are primarily used to control timers/counters, serial I/Os, port I/Os, and other peripherals.

SFRs are addressed from 0x80 to 0xFF and can be accessed as bits, bytes, and words. SFRs are declared in the same way as other C variable types:

sfr P0 = 0x80; /* Port-0, address 80h */

Generic Pointers/Memory-specific Pointers

Generic pointers are declared in the same fashion as standard C pointers.

int *numptr; /* int ptr */

Specify the memory area in which a generic pointer is stored by using a memory type specifier.

int xdata *numtab; /* ptr to int(s) in xdata */

Download

You can download evaluation development tools for all 8051 and 80251 devices from KEIL:

https://www.keil.com/download/product/

Atmel Ships SAM D20 Cortex-M0+ Microcontrollers

Atmel Corporation ships its new Atmel® SAM D20 microcontrollers. This is the first series in a new family of ultra-low power embedded Flash microcontrollers based on the ARM® Cortex®-M0+ processor.

microcontroller
atmel
arm cortex

Freescale Launches Kinetis E-Series 32-bit Microcontroller

Freescale Semiconductor introduces the Kinetis E-series MCUs, 32-bit microcontrollers with ARM Cortex-M0+ core, designed for high performance and extended battery life in harsh environments.

microcontroller
arm cortex
embedded system