From 84042a67c3fae052af43be2106855667a0337195 Mon Sep 17 00:00:00 2001 From: Alexander Shtuchkin Date: Sun, 21 May 2017 03:24:07 -0700 Subject: [PATCH] Update installation instructions --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index c954ca3..8747ec1 100644 --- a/readme.md +++ b/readme.md @@ -152,9 +152,9 @@ $ git submodule update --init Compilation/upload command line (example, using CMake out-of-source build in build/ directory): ```bash $ cd build -$ cmake .. +$ cmake .. -DPLATFORM=Teensy $ make # Build firmware -$ make vive-diy-position-sensor_Upload # Upload to Teensy +$ make vive-diy-position-sensor-upload # Upload to Teensy $ tyc monitor # Serial console to Teensy ``` @@ -172,6 +172,6 @@ Getting the code is the same as above. GitHub client for Windows will make it ev Building firmware: ``` cd build -cmake -G Ninja .. +cmake -G Ninja .. -DPLATFORM=Teensy ninja # Build firmware. Will generate "vive-diy-position-sensor.hex" in current directory. ```