Victor Oliveira
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
3 deletions
-
buildroot/share/PlatformIO/scripts/common-cxxflags.py
|
@ -22,10 +22,9 @@ def add_cpu_freq(): |
|
|
# |
|
|
# |
|
|
# It will separe release and debug build folders. |
|
|
# It will separe release and debug build folders. |
|
|
# It useful when we need keep two live versions: one debug, for debugging, |
|
|
# It useful when we need keep two live versions: one debug, for debugging, |
|
|
# other release, for flashing. |
|
|
# other release, for flashing (when upload is not done automatically by jlink/stlink). |
|
|
# Without this, PIO will recompile everything twice for any small change. |
|
|
# Without this, PIO will recompile everything twice for any small change. |
|
|
# |
|
|
if env.GetBuildType() == "debug" and env.get('UPLOAD_PROTOCOL') not in ['jlink', 'stlink']: |
|
|
if env.GetBuildType() == "debug": |
|
|
|
|
|
env['BUILD_DIR'] = '$PROJECT_BUILD_DIR/$PIOENV/debug' |
|
|
env['BUILD_DIR'] = '$PROJECT_BUILD_DIR/$PIOENV/debug' |
|
|
|
|
|
|
|
|
# On some platform, F_CPU is a runtime variable. Since it's used to convert from ns |
|
|
# On some platform, F_CPU is a runtime variable. Since it's used to convert from ns |
|
|