Skip to content

Commit

Permalink
Fix gui issue with usb and uart the wrong way round
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesH65 committed Feb 1, 2021
1 parent 0be1161 commit 28e0a5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pico_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ def OK(self):
p = Parameters(self.sdkpath, Path(projectPath), self.projectName.get(), True, self.wantOverwrite.get(), self.wantBuild.get(),\
features, projects, self.configs, self.wantRunFromRAM.get(), \
self.wantExamples.get(),\
self.wantUSB.get(), self.wantUART.get())
self.wantUART.get(), self.wantUSB.get())

DoEverything(self, p)

Expand Down

0 comments on commit 28e0a5f

Please sign in to comment.