Intel Galileo Gen 2
This is the base Nerves System configuration for the Intel Galileo Gen 2.
<sup>[Image credit](#fritzing)</sup>
| Feature | Description |
|---|---|
| CPU | 400 MHz Intel Quark X1000 |
| Memory | 256 MB DRAM |
| Storage | 8 MB NOR Flash and MicroSD |
| Linux kernel | 3.8 w/ Intel patches |
| IEx terminal | UART via ttyS1 |
| GPIO, I2C, SPI | Yes - Elixir ALE |
| ADC | Yes |
| PWM | Yes, but no Elixir support |
| UART | 1 available - ttyACM0 |
| Ethernet | Yes |
| WiFi | Requires USB WiFi dongle |
| Bluetooth | Not supported |
This platform has worked in the past, but has a number of issues.
If you're interested in x86 platforms, take a look at a generic x86 system like that in ag150. Otherwise, ARM boards such as the Raspberry Pi and BeagleBone Black are faster, less expensive, have more modern Linux kernels, and have better upstream support. If you're still interested in the Galileo Gen 2, please contact us and consider maintaining this platform. It does have a couple interesting features, but the overhead of supporting it is high compared to the number of known users.
Limitations
- Boot time is long - this is mostly due to the NOR Flash bootloader waiting on input.
-
Ethernet MAC is not set. Wired Ethernet doesn't work and the node name is
always
nerves-0000.
Supported USB WiFi devices
The base image includes drivers and firmware for Ralink RT53xx
(rt2800usb driver) and RealTek RTL8712U (r8712u driver) devices.
We are still working out which subset of all possible WiFi dongles to support in our images. At some point, we may have the option to support all dongles and selectively install modules at packaging time, but until then, these drivers and their associated firmware blobs add significantly to Nerves release images.
If you are unsure what driver your WiFi dongle requires, run Raspbian and configure WiFi
for your device. At a shell prompt, run lsmod to see which drivers are loaded.
Running dmesg may also give a clue. When using dmesg, reinsert the USB
dongle to generate new log messages if you don't see them.
Installation
If available in Hex, the package can be installed as:
Add nerves_system_galileo to your list of dependencies in
mix.exs:def deps do
[{:nerves_system_galileo, "~> 0.4.0"}]end
Ensure nerves_system_galileo is started before your application:
def application do
[applications: [:nerves_system_galileo]]end
Image credit: This image is from the Fritzing parts library.