View Source F3RP70 Support

This is the base Nerves System configuration for the F3RP70, e-RT3 Products, OS-free CPU module.

F3RP70 image


<sup>[Image is provided by Yokogawa Electric Corporation](https://www.yokogawa.com/)</sup>
FeatureDescription
CPUARM Cortex-A9 MPCore (Dual) 866 MHz
Memory1 GB SDRAM
Storage256MB Flash and Two SD slots (SD1/SD2)
Linux kernel4.14.164 w/ 4.14.164-rt73 and ert3xlnx patch
IEx terminalUART ttySP0
GPIO, I2C, SPINo
ADCNo
PWMNo
UARTttySP0
DisplayNo
CameraNo
EthernetTwo 1Gbps (eth0 and eth1)
WiFiNo
BluetoothNo
AudioNo
RTCYes w/ battery

using

Using

This port currently only runs off a SD card.

If you need custom modifications to this system for your device, clone this repository and update as described in Making custom systems

networking

Networking

The board has two 1 Gbps Ethernet interfaces. Here's an example :vintage_net configuration that enables both of them:

config :vintage_net,
  config: [
    {"eth0",
     %{
       type: VintageNetEthernet,
       ipv4: %{
         method: :static,
         address: "192.168.3.72",
         prefix_length: 24,
         gateway: "192.168.3.1",
         name_servers: ["192.168.3.1"]
       }
     }},
    {"eth1",
     %{
       type: VintageNetEthernet,
       ipv4: %{method: :dhcp}
     }}
  ]