Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 959 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 959 Bytes

Blinky

Targets

Nerves applications are configured that they can produce images for target hardware by setting NERVES_TARGET. By default, if MIX_TARGET is not set, Nerves defaults to building a host target. This is useful for executing logic tests, running utilities, and debugging. For more information about targets: https://hexdocs.pm/nerves/targets.html#content

Getting Started

To start your Nerves app:

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

Learn more