Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fhunleth/nerves_system_ag150
Base Nerves system configuration for the Logic Supply AG150 - WARNING: Unmaintained
https://github.com/fhunleth/nerves_system_ag150
Last synced: about 1 month ago
JSON representation
Base Nerves system configuration for the Logic Supply AG150 - WARNING: Unmaintained
- Host: GitHub
- URL: https://github.com/fhunleth/nerves_system_ag150
- Owner: fhunleth
- License: apache-2.0
- Created: 2016-04-02T22:25:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-25T20:31:32.000Z (over 7 years ago)
- Last Synced: 2024-03-15T14:22:51.360Z (9 months ago)
- Language: Elixir
- Homepage:
- Size: 40 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
# Logic Supply AG150
[![Build Status](https://travis-ci.org/nerves-project/nerves_system_ag150.png?branch=master)](https://travis-ci.org/nerves-project/nerves_system_ag150)This is the base Nerves System configuration for the Logic Supply AG150.
| Feature | Description |
| -------------------- | ------------------------------- |
| CPU | 1.86 GHz Intel Atom N2800 |
| Memory | 1 GB+ DRAM |
| Storage | Internal SSD or USB Flash drive |
| Linux kernel | 3.13.5 |
| IEx terminal | UART - ttyS0 |
| GPIO, I2C, SPI | No |
| ADC | No |
| PWM | No |
| UART | 1 or 2 available - ttyS0, ttyS1 |
| Camera | No |
| Ethernet | Yes |
| WiFi | No |
| Bluetooth | No |The Logic Supply AG150 is a fanless Intel Atom N2800 platform. This
configuration creates an image that can be copied on to a USB Flash drive or on
to the internal mSATA SSD. The image currently provides access to the IEX prompt
via the front serial port (ttyS0).## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:
1. Add nerves_system_ag150 to your list of dependencies in `mix.exs`:
def deps do
[{:nerves_system_ag150, "~> 0.4.0"}]
end2. Ensure nerves_system_ag150 is started before your application:
def application do
[applications: [:nerves_system_ag150]]
end