-
-
Notifications
You must be signed in to change notification settings - Fork 345
Host Emulator
The latest versions of Sming allow most of components of the library and the sample applications to be compiled on a Linux/Windows host system and be tested before uploading them to the microcontroller.
If you want to try it we have interactive tutorial that can be run directly from your browser.
Most popular modern distributions should be fine. At the moment we develop only with Ubuntu 16.04 and 18.04.
If your OS is 64 bit then you should install also 32 bit C/C++ compiler and libraries. Under Ubuntu those can be installed using the command below
sudo apt-get install gcc-multilib g++-multilib
For the compilation of LWIP CMake
version 3.8 or newer is required. In order to get newer Cmake version under Ubuntu 16.04 one should execute the commands below:
cd /tmp
wget https://github.com/Kitware/CMake/releases/download/v3.14.4/cmake-3.14.4-Linux-x86_64.sh
sudo mkdir /opt/cmake
sudo sh cmake-3.14.4-Linux-x86_64.sh --prefix=/opt/cmake
sudo mv /usr/bin/cmake /usr/bin/cmake.orig
sudo ln -s /opt/cmake/bin/cmake /usr/bin/cmake
The following environmental variable have to be set to use Host
as the desired architecture.
export SMING_ARCH=Host
If you plan to use a debugger make sure to set the following environmental variables before compiling the code:
export ENABLE_GDB=1
export ENABLE_LWIPDEBUG=1 # <!-- this will compile also LWIP with debug symbols
Make sure that you are working on a clean source code tree. The following commands may help:
cd $SMING_HOME
make dist-clean
Compile a sample as usual using the following command sequence:
cd $SMING_HOME/../samples/Basic_Blink
make
You may need to modify your existing applications to work with the emulator. Architecture-specific code should be moved into separate code modules. Code that is specific to the ESP8266 may be conditionally compiled using #ifdef ARCH_ESP8266
. Similarly, you can check if the code is compiled for the emulator using #ifdef ARCH_HOST
.
Once the sample is compiled you can run it on the host using the command below:
make flash
This will create a file system and run the code.
If you would like to run the code only then use the following command:
make run
Support is provided via TAP network interface (a virtual network layer operating at the ethernet frame level). A TAP interface must be created first, and requires root privilege. You can use the Sming/Arch/Host/Tools/setup-network-linux.sh
. Here is the manual approach:
sudo ip tuntap add dev tap0 mode tap user `whoami`
sudo ip a a dev tap0 192.168.13.1/24
sudo ifconfig tap0 up
# The following lines are needed if you plan to access Internet
sudo sysctl net.ipv4.ip_forward=1
sudo sysctl net.ipv6.conf.default.forwarding=1
sudo sysctl net.ipv6.conf.all.forwarding=1
export INTERNET_IF=wlan0 # <!--- Make sure to replace wlan0 with the network interface connected to Internet
sudo iptables -t nat -A POSTROUTING -o $INTERNET_IF -j MASQUERADE
sudo iptables -A FORWARD -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
sudo iptables -A FORWARD -i tap0 -o $INTERNET_IF -j ACCEPT
This creates the tap0
interface. The emulator will automatically select the first tap
interface found. To override this, use the --ifname
option.
Make sure to install the 32bit version of the GNU C and C++ compiler, development package and libraries.
Make sure to install the 32bit version of the GNU C and C++ compiler, development package and libraries.
Make sure to read the Host architecture README file.