Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fhunleth/nerves_system_alix
Base Nerves system configuration for the PC Engines ALIX - WARNING: Unmaintained
https://github.com/fhunleth/nerves_system_alix
Last synced: about 2 months ago
JSON representation
Base Nerves system configuration for the PC Engines ALIX - WARNING: Unmaintained
- Host: GitHub
- URL: https://github.com/fhunleth/nerves_system_alix
- Owner: fhunleth
- License: apache-2.0
- Created: 2016-04-02T22:31:52.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-25T20:32:00.000Z (over 7 years ago)
- Last Synced: 2024-03-14T22:52:03.941Z (10 months ago)
- Language: Elixir
- Homepage:
- Size: 36.1 KB
- Stars: 1
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# PC Engines ALIX
[![Build Status](https://travis-ci.org/nerves-project/nerves_system_alix.png?branch=master)](https://travis-ci.org/nerves-project/nerves_system_alix)This is the base Nerves System configuration for the PC Engines ALIX board.
| Feature | Description |
| -------------------- | ------------------------------- |
| CPU | 500 MHz AMD Geode LX CPU |
| Memory | 256 MB DRAM |
| Storage | CompactFlash |
| Linux kernel | 3.13.5 |
| IEx terminal | UART - ttyS0 |
| GPIO, I2C, SPI | No |
| ADC | No |
| PWM | No |
| UART | 1 available - ttyS0 |
| Camera | No |
| Ethernet | Yes |
| WiFi | No |
| Bluetooth | No |This configuration is for a PC Engines ALIX board using an AMD Geode LX CPU. It
was a formerly supported platform for Nerves. The configuration is been modified
as changes to `nerves_system_br` have been made, but the changes have not been
tested. If you're looking for a more tested x86 board, look at
`nerves_system_ag150`.## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:
1. Add nerves_system_alix to your list of dependencies in `mix.exs`:
def deps do
[{:nerves_system_alix, "~> 0.4.0"}]
end2. Ensure nerves_system_alix is started before your application:
def application do
[applications: [:nerves_system_alix]]
end