DolphinV4 API  1.6.1.0
Module configuration area (MOD)

Flash page from 0xFE00 to 0xFFFF xdata address. This area contains values that are related to the specific chip module like calibration values as well as the radio settings for proper sending and receiving. These information is typically set in production.

The information in this page cannot be erased by reprogramming the chip.

The structure of the data stored in the MOD area is indicated in the MOD_AREA of the EO3100_API.h

In the following code snippet is shown how to access the information in MOD area

void main()
{
uart_sendByte(gModArea.val.u16CalibWatchdog>>8); // Send the MSB of the WDT calibration value
uart_sendByte((uint8)gModArea.val.u16CalibWatchdog); // Send the LSB of the WDT calibration value
}
// The gModArea shouldn't be declared in the application.
// The variable gModArea is declared within the API library.