esrom/firmware
Pim Kunis d6e877137f Remove config in UI.
Merge dev config in UI into firmware config.
2019-08-24 15:22:32 +02:00
..
config Remove config in UI. 2019-08-24 15:22:32 +02:00
lib init 2019-07-13 20:16:46 +02:00
rel init 2019-07-13 20:16:46 +02:00
rootfs_overlay/etc init 2019-07-13 20:16:46 +02:00
test init 2019-07-13 20:16:46 +02:00
.formatter.exs init 2019-07-13 20:16:46 +02:00
.gitignore Don't let Git track secrets file. 2019-07-15 19:36:57 +02:00
mix.exs init 2019-07-13 20:16:46 +02:00
mix.lock Port morse code. 2019-07-14 17:23:37 +02:00
README.md init 2019-07-13 20:16:46 +02:00

Firmware

TODO: Add description

Targets

Nerves applications produce images for hardware targets based on the MIX_TARGET environment variable. If MIX_TARGET is unset, mix builds an image that runs on the host (e.g., your laptop). This is useful for executing logic tests, running utilities, and debugging. Other targets are represented by a short name like rpi3 that maps to a Nerves system image for that platform. All of this logic is in the generated mix.exs and may be customized. For more information about targets see:

https://hexdocs.pm/nerves/targets.html#content

Getting Started

To start your Nerves app:

  • export MIX_TARGET=my_target or prefix every command with MIX_TARGET=my_target. For example, MIX_TARGET=rpi3
  • Install dependencies with mix deps.get
  • Create firmware with mix firmware
  • Burn to an SD card with mix firmware.burn

Learn more