works
This commit is contained in:
parent
6fdbf1d258
commit
04afd13532
6 changed files with 685 additions and 0 deletions
13
exercises/24_nvs/scripts/set_build_epoch.py
Normal file
13
exercises/24_nvs/scripts/set_build_epoch.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import time
|
||||
Import("env")
|
||||
|
||||
epoch = int(time.time())
|
||||
utc_tag = time.strftime("%Y%m%d_%H%M%S", time.gmtime(epoch))
|
||||
|
||||
env.Append(
|
||||
CPPDEFINES=[
|
||||
("BUILD_EPOCH", str(epoch)),
|
||||
("FW_BUILD_EPOCH", str(epoch)),
|
||||
("FW_BUILD_UTC", '\"%s\"' % utc_tag),
|
||||
]
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue