From 884ecb19e4d5142403abed3b9aac6c07af161204 Mon Sep 17 00:00:00 2001 From: Shiv Haris Date: Wed, 4 May 2022 11:29:49 -0700 Subject: [PATCH] Update build.mdx Minor changes that matter to the newly initiated. --- docs/developers/Firmware/build.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/developers/Firmware/build.mdx b/docs/developers/Firmware/build.mdx index 9270dea7..677e3f41 100644 --- a/docs/developers/Firmware/build.mdx +++ b/docs/developers/Firmware/build.mdx @@ -23,7 +23,7 @@ Meshtastic uses the [PlatformIO](https://platformio.org) development environment ## Building 1. Open the newly cloned folder in [Visual Studio Code](https://code.visualstudio.com). -1. To select the device you you wish to build for, first open your [command palette](https://code.visualstudio.com/docs/getstarted/userinterface#_command-palette) (`Ctrl + Shift + P`) and enter: `platformio: Switch Project Environment` and select your target. +1. To select the device you you wish to build for, first open your [command palette](https://code.visualstudio.com/docs/getstarted/userinterface#_command-palette) (windows: `Ctrl + Shift + P` or mac: `command + Shift + P` ) and enter: `platformio: Switch Project Environment` and select your target. 1. To build the firmware, simply run `PlatformIO: Build` from your command palette. 1. Finally flashing the firmware to your device is as easy as running `PlatformIO: Upload` @@ -37,7 +37,7 @@ The build system is modular. Adding a new board variant for an already supported ```shell cd variants; mkdir m5stack_core - cp ../heltec_v1/* m5stack_core + cp heltec_v1/* m5stack_core cd m5stack_core ```