EM1206 and EM1206W Platforms

Top  Previous  Next

The difference between the EM1206 and EM1206W platforms is that the EM1206W additionally includes the Wi-Fi  (wln.) object (requires an external GA1000 add-on module). All other features of these two platforms are exactly the same.

 

Memory space

RAM

22,528* bytes for application variables and data

Flash

983,040 bytes for application and data storage (shared flash memory)**

EEPROM

2040 bytes for application data

* RAM available in the debug mode is smaller by 257 bytes. All memory is available in the release mode.

**Some earlier devices had only 458,752 bytes of flash memory available

 

Supported Objects, variable types, and functions

Sock — socket communications (up to 16 UDP, TCP, and HTTP sessions);
Net — controls Ethernet port;
Wln — handles Wi-Fi interface (only available on the EM1206W platform, requires GA1000 add-on module);
Ser — in charge of serial ports (UART, Wiegand, and clock/data modes);
Ssi  — implements up to four serial synchronous interface (SSI) channels, supports SPI, I2C, clock/data, etc.;
Io — handles I/O lines, ports, and interrupts;
Kp — scans keypads of matrix and "binary" types;
Rtc — keeps track of date and time;
Fd — manages flash memory file system and direct sector access;
Stor — provides access to the EEPROM;
Romfile — facilitates access to resource files (fixed data);
Pppoe — provides access to the Internet over an ADSL modem;
Ppp — provides access to the Internet over a serial modem (GPRS, POTS, etc.);
Pat — "plays" patterns on up to five LED pairs;
Beep — generates buzzer patterns;
Button — monitors MD line (setup button);
Sys — in charge of general device functionality.

 

These platforms support the standard set of variable types and functions (a.k.a. "syscalls").

 

Platform-specific constants

You can find them here.

 

Miscellaneous information

Available network interfaces

EM1206: Ethernet (net.)

EM1206W: Ethernet (net.), Wi-Fi (wln.)(1)

GPIO type

Unidirectional

RTS/CTS remapping

Supported(2)

GA1000 lines remapping

Supported(3)

Serial port FIFOs

16 byte for TX, 16 bytes for RX

Clock frequency (PLL) control

PLL on (def): 88.4736Mhz, PLL off: 11.0592Mhz(4)

Special configuration section of the EEPROM

8 bytes for MAC storage

Device serial number

128 bytes: 64 OTP bytes + 64 fixed bytes(5)

Flash memory configuration

Shared

LEDs

Green (SG) and red (SR) Status LED lines

Green (EG) and yellow (EY) Ethernet LED lines

Debug communications

Ethernet / UDP Broadcast transport

Ethernet /WinPCap transport

 

1.The sock.allowedinterfaces property refers to the Ethernet interface as "NET", Wi-Fi -- as "WLN". Sock.targetinterface and sock.currentinterface properties rely on the pl_sock_interfaces enum, whose members differ depending on the platform.
2.Default CTS/RTS mapping is different for each serial port. Notice that CTS and RTS lines in default mapping interfere with each other. Do remember to select meaningful mapping for these lines!

 

RTS

CTS

Port 1

0- PL_IO_NUM_0_RX0_INT0

0- PL_INT_NUM_0 (0- PL_IO_NUM_0_RX0_INT0)

Port 2

1- PL_IO_NUM_1_TX0_INT1

1- PL_INT_NUM_1 (1- PL_IO_NUM_1_TX0_INT1)

Port 3

2- PL_IO_NUM_2_RX1_INT2

2- PL_INT_NUM_2 (2- PL_IO_NUM_2_RX1_INT2)

Port 4

3- PL_IO_NUM_3_TX1_INT3

3- PL_INT_NUM_3 (3- PL_IO_NUM_3_TX1_INT3)

 

3.Mapping of GA1000 control lines is fully flexible on the EM1206W. However, if the EM1206EV board is used, then the following mapping must be applied:

CS

15- PL_IO_NUM_15

CLK

14- PL_IO_NUM_14

DI

12- PL_IO_NUM_12

DO

13- PL_IO_NUM_13

RST

11- PL_IO_NUM_11

 

4.Default PLL state after the external reset is ON.
5.Older EM1206 and EM1206W devices did not contain the serial number. To find out if your EM1206(W) has the serial number onboard, try to read this serial number with the sys.serialnum R/O property. If this property returns an empty string, then the serial number is not present. Sys.serialnum returns all 128 bytes of the serial number. First 64 bytes are one-time-programmable (OTP) with the sys.setserialnum method.