mirror of
https://github.com/google/pebble.git
synced 2025-07-08 07:40:37 -04:00
Import of the watch repository from Pebble
This commit is contained in:
commit
3b92768480
10334 changed files with 2564465 additions and 0 deletions
15
src/fw/startup/wscript_build
Normal file
15
src/fw/startup/wscript_build
Normal file
|
@ -0,0 +1,15 @@
|
|||
sources = [bld.path.make_node("startup_stm32.c")]
|
||||
if bld.is_tintin():
|
||||
sources.append(bld.path.make_node("system_stm32f2xx.c"))
|
||||
elif bld.is_snowy_compatible() or bld.is_silk():
|
||||
sources.append(bld.path.make_node("system_stm32f4xx.c"))
|
||||
elif bld.is_cutts() or bld.is_robert():
|
||||
sources.append(bld.path.make_node("system_stm32f7xx.c"))
|
||||
else:
|
||||
bld.fatal("No clock configuration file specified for this platform")
|
||||
|
||||
bld.objects(
|
||||
name='startup',
|
||||
source=sources,
|
||||
use=['fw_includes']
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue