From 3c96f420ea202440747ceed45920633636110daa Mon Sep 17 00:00:00 2001 From: Eugene Kulak Date: Mon, 6 Jan 2025 22:05:59 +0200 Subject: [PATCH] Update Building-in-Mac-OSX.md (#506) * Update Building-in-Mac-OSX.md * Update docs/development/building/Building-in-Mac-OSX.md * Update docs/development/building/Building-in-Mac-OSX.md * Update docs/development/building/Building-in-Mac-OSX.md --------- Co-authored-by: Mark Haslinghuis --- docs/development/building/Building-in-Mac-OSX.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/development/building/Building-in-Mac-OSX.md b/docs/development/building/Building-in-Mac-OSX.md index 35553d0651..95ad3b06d3 100644 --- a/docs/development/building/Building-in-Mac-OSX.md +++ b/docs/development/building/Building-in-Mac-OSX.md @@ -54,9 +54,9 @@ To install the needed compiler you just need to enter the betaflight directory a ## Build the code -Enter the betaflight directory and run `make configs` to retrieve board targets then `make TARGET=MATEKH743` to -build firmware for the BETAFLIGHTF4. When the build completes, the .hex firmware should be available as -`obj/betaflight_4.4.2_MATEKH743.hex` for you to flash using the Betaflight Configurator. +Enter the betaflight directory and run `make configs` to retrieve board targets then `make MATEKH743` to +build firmware for the MATEKH743. When the build completes, the .hex firmware should be available as +`obj/betaflight_4.6.0_MATEKH743.hex` for you to flash using the Betaflight Configurator. ## Updating to the latest source @@ -68,6 +68,6 @@ changes from the repository, then rebuild the firmware: git reset --hard git pull -make clean TARGET=MATEKH743 -make TARGET=MATEKH743 +make clean CONFIG=MATEKH743 +make MATEKH743 ```