6b6ea44802
* fbt: added separate script for Windows env setup; moved flash targets from firmware.scons to SConstruct; added Blackmagic support with automatic probe port resolution; added apps.c rebuild on any manifest.fam changes; fixed simultaneous flash & debug ops * fbt: added networked BlackmagicResolver mode; added `get_blackmagic` target for IDE integration * fbt: cleanup * fbt: docs update; fixed blackmagic lookup on certain usb hubs * fbt: removed explicit python serial port import * fbt: cleanup * fbt: raising exception on multiple serial blackmagic probes
11 lines
204 B
Batchfile
11 lines
204 B
Batchfile
@echo off
|
|
|
|
set SCONS_EP=%~dp0\lib\scons\scripts\scons.py
|
|
|
|
if exist ".git" (
|
|
git submodule update --init
|
|
)
|
|
|
|
set "SCONS_DEFAULT_FLAGS=-Q --warn=target-not-built"
|
|
python %SCONS_EP% %SCONS_DEFAULT_FLAGS% %*
|