Overview

This part of the platform interface deals contains a small set of "low level functions" that are used to "couple" the eLua port with the target system. No eLua module exposes these functions, as they are strictly used for porting and do not provide any other functionality.

Data structures, constants and types

// Error / status codes
enum
{
  PLATFORM_ERR,
  PLATFORM_OK,
  PLATFORM_UNDERFLOW = -1
};

This enum defines the possible return values of the platform_init function (although only PLATFORM_ERR and PLATFORM_OK should be returned from platform_init).

Functions

int platform_init();

This is the platform-specific initialization code. It is the first function called from main() (src/main.c) and it should handle all the platform initialization sequence, included (but not limited to) setting up the proper clocks, initializing the interrupt subsystem, setting up various peripherals and so on. Although platform specific, this function has a common part named cmn_platform_init (implemented in src/common.c) that initializes terminal support over serial connections, as well as the XMODEM and TERM components (see here for details). If you need any of these, you need to call cmn_platform_init at the end of your platform_init function, after initializing all the peripherals (in particular the UART used for the serial connection).
An implementation skeleton for this function is given below:

int platform_init()
  {
    ............. // perform all your initializations here
    cmn_platform_init(); // call the common initialiation code
    return PLATFORM_OK;
  }

Arguments: none.

Returns:

void* platform_get_last_free_ram( unsigned id );

Returns the start address of a free RAM area in the system (this is the RAM that will be used by any part of the code that uses malloc(), a good example being the Lua interpreter itself). There can be multiple free RAM areas in the system (for example the internal MCU RAM and external RAM chips). Implemented in src/common.c, it uses the the MEM_START_ADDRESS macro that must be defined in the platform's platform_conf.h file (see here for details). This macro must be defined as an array that contains all the start addresses of free RAM in the system. For internal RAM, this is generally handled by a linker exported symbol (named end in many eLua ports) which points to the firs RAM address after all the constant and non-constant program data. An example is given below:

#define MEM_START_ADDRESS     { ( void* )end }

Arguments: id - the identifier of the RAM area

Returns: the start address of the given memory area

void* platform_get_last_free_ram( unsigned id );

Returns the last address of a free RAM area in the system (this is the RAM that will be used by any part of the code that uses malloc(), a good example being the Lua interpreter itself). There can be multiple free RAM areas in the system (for example the internal MCU RAM and external RAM chips). Implemented in src/common.c, it uses the the MEM_END_ADDRESS macro that must be defined in the platform's platform_conf.h file (see here for details). This macro must be defined as an array that contains all the end addresses of free RAM in the system. For internal RAM, this is generally set as the last RAM memory address minus the size of the system stack(s). An example is given below:

#define MEM_END_ADDRESS       { ( void* )( SRAM_BASE + 0x10000 - STACK_SIZE_TOTAL - 1 ) }

Arguments: id - the identifier of the RAM area

Returns: the end address of the given memory area