LinkIt Smart
This is the base Nerves System configuration for the LinkIt Smart.
| Feature | Description |
|---|---|
| CPU | 580 MHz MIPS24KEc |
| Memory | 128 MB DRAM |
| Storage | 32 MB NAND Flash and MicroSD |
| Linux kernel | 4.4.14 w/ OpenWRT patches |
| IEx terminal | ttyS2 via FTDI pins |
| GPIO, I2C, SPI | Yes - Elixir ALE |
| ADC | Yes, on Duo's ATmega32U4 |
| PWM | Yes, on Duo's ATmega32U4 |
| UART | 3? |
| Camera | None |
| Ethernet | Yes, via expansion board |
| WiFi | Yes |
Console access
The console is configured to output to ttyS2 by default. This is
accessible via pins 8 (RX) and 9 (TX). A 3.3V FTDI
cable is needed to access the output. The UART should be configured
to 57600 8n1.
Prepping the LinkIt Smart
Before you can use a LinkIt Smart with Nerves, you must update the bootloader. Follow these instructions precisely and patiently so that you don't accidentally brick your board. If something goes wrong, the board will not boot. You will need a SPI NAND Flash programmer to fix it, and given the cost of the board, it probably is easier to just buy a new LinkIt Smart.
You'll need a normal USB flash drive and an On-the-go cable to plug it into the USB port on the LinkIt Smart. The USB flash drive should have a FAT filesystem on it. If you're not sure, you probably are ok.
Download the Nerves LinkIt Smart bootloader and Linux kernel images and place
them in the root directory of the USB flash drive. They should be named
lks7688.ldr and lks7688.img.
Then do the following:
- Connect a 3.3V FTDI cable (GND, RX, and TX) to the LinkIt Smart. Power up the LinkIt Smart and verify that you can see text and type. You should be interacting with the default OpenWRT firmware.
- Remove power from the LinkIt Smart
-
Plug the USB Flash drive into the LinkIt Smart via the On-the-go cable.
Make sure that it's plugged into the
USB Hostconnector. - Apply power to the LinkIt Smart and get ready for the next step
- Press the 'b' key repeatedly on the serial port until you see that it is programming the Flash.
- When the programming completes, the LinkIt Smart will reboot. You'll still get prints OpenWRT.
-
Now reboot (remove/apply power) or press the
MPUreset button. - Press the '5' key repeatedly on the serial port until you see that it is programming the Flash.
Now you're done. The next reboot will load Nerves. Keep in mind that Nerves
requires an SDCard with the root filesystem on it to work. This isn't necessary
for production, but it's much and convenient during development. If you don't
have an SDCard image yet, go through the normal Nerves workflow and mix burn
yourself one. Insert it and reboot and you should have an iex prompt.
The bootloader
The LinkIt Smart bootloader is a very customized old version of u-boot. If you're familiar with u-boot, forget what you know.
To break into the bootloader, press the 4 key continuously on a reboot.
To load an image over TFTP, press the 1 key continuously on reboot until you
get a prompt. If you stare hard at the messages, you can see what to type. Keep
in mind that the rootfs is still on the NAND Flash.
Going back to OpenWRT
MediaTek and Seeedstudio provide some information about the board that also applies to Nerves. If you decide to switch back to OpenWRT, see the following links:
http://support.seeedstudio.com/knowledgebase/articles/848667-linkit-smart-7688-duo-sku-102110017https://labs.mediatek.com/site/global/developer_tools/mediatek_linkit_smart_7688/training_docs/firmware_and_bootloader/kernel_console/index.gsp
You will need to update both the bootloader and the firmware.
Installation
If available in Hex, the package can be installed as:
Add nerves_system_linkit to your list of dependencies in
mix.exs:def deps do
[{:nerves_system_linkit, "~> 0.6.1"}]end
Ensure nerves_system_linkit is started before your application:
def application do
[applications: [:nerves_system_linkit]]end
Linux and OpenWRT patches
The official defconfig and kernel patches for the MT7688 on the LinkIt Smart are found in the OpenWRT repository. See https://dev.openwrt.org/wiki/GetSource.
This repository uses the OpenWRT Linux 4.4 patch set. They can be found in the following directories:
https://github.com/openwrt/openwrt/tree/master/target/linux/generichttps://github.com/openwrt/openwrt/tree/master/target/linux/ramips/patches-4.4