An emulator for the EVT-HUDL device. Very rudimentary and does not actually emulate the full device. Just enough functionality for the emulator to display data.
To install and run the emulator, you need a few libraries.
Installing GLFW3
On macOS you can use the brew package manager to install GLFW.
brew install glfw
On linux you can use apt-get to install GLFW
sudo apt-get install libglfw3
sudo apt-get install libglfw3-dev
-
Download the latest windows binary from https://www.glfw.org/download.html and unzip the package.
-
Follow the information in the README to install GLFW.
Installing GLEW
On macOS you can use the brew package manager to install GLEW.
brew install glew
On linux you can use apt-get to install GLEW
sudo apt -y install libglew-dev
To install GLEW on windows install the instructions on the GLEW Website
Installing GLM
On macOS you can use the brew package manager to install GLM.
brew install glm
On Linux you can use apt-get to install GLM.
sudo apt-get install libglm-dev
Download the latest release from the GLM github, https://github.com/g-truc/glm. Follow the manual.md
file to install GLM.
If you need help, you can check out: https://stackoverflow.com/a/17912620/14886210