Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix IntelliSense conflicts #23058

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'bugfix-2.0.x' into pr/23058
thinkyhead committed Nov 4, 2021
commit 53124e39112f830b87b3566a99f520b2ef5d4ef0
18 changes: 0 additions & 18 deletions buildroot/share/PlatformIO/scripts/STM32F103RC_MEEB_3DP.py
Original file line number Diff line number Diff line change
@@ -11,37 +11,19 @@

import os
Import("env", "projenv")
# access to global build environment
#print(env)
# access to project build environment (is used source files in "src" folder)
#print(projenv)

config = configparser.ConfigParser()
config.read("platformio.ini")

#com_port = config.get("env:STM32F103RC_meeb", "upload_port")
#print('Use the {0:s} to reboot the board to dfu mode.'.format(com_port))

#
# Upload actions
#

def before_upload(source, target, env):
#print("before_upload")
# do some actions
# use com_port
#
env.Execute("pwd")

def after_upload(source, target, env):
#print("after_upload")
# do some actions
#
#
env.Execute("pwd")

#print("Current build targets", map(str, BUILD_TARGETS))

env.AddPreAction("upload", before_upload)
env.AddPostAction("upload", after_upload)

You are viewing a condensed version of this merge commit. You can view the full changes here.