-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
in der platformio.ini gibts nun die folgenden Varianten: Maple_sduino_USB Maple_sduino_serial Maple_sduino_LAN Maple_cul_USB Maple_cul_serial ESP32_sduino_devkitV1
- Loading branch information
Showing
5 changed files
with
72 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Import("env") | ||
|
||
# to build date str | ||
import datetime | ||
date = datetime.datetime.now() | ||
date = date.strftime("%y") + date.strftime("%m") + date.strftime("%d") | ||
|
||
# name from env:project | ||
build_name = env['PIOENV'] | ||
build_version = "421dev" + date | ||
|
||
env.Replace(PROGNAME="%s" % build_name + "_" + "%s" % build_version) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters