diff options
author | Vegard Storheil Eriksen <zyp@jvnv.net> | 2012-09-11 18:18:03 +0200 |
---|---|---|
committer | Vegard Storheil Eriksen <zyp@jvnv.net> | 2012-09-20 21:52:37 +0200 |
commit | 842821a118feeabd201ebcda46154cdb9b305187 (patch) | |
tree | 74ff91c47b8ca9eb93144496188f543d7079c0e7 /SConstruct |
ACM echo demo.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct new file mode 100644 index 0000000..574f656 --- /dev/null +++ b/SConstruct @@ -0,0 +1,12 @@ +import os
+
+env = Environment(
+ ENV = os.environ,
+)
+
+SConscript('laks/build_rules')
+
+#env.SelectMCU('stm32f103cb')
+env.SelectMCU('stm32f407zg')
+
+env.Firmware('demo.elf', Glob('*.cpp'))
|