File tree Expand file tree Collapse file tree 4 files changed +40
-1
lines changed
examples/stm32h750vbt6_devebox/blink Expand file tree Collapse file tree 4 files changed +40
-1
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ jobs:
131
131
- name : Examples STM32H7 Series
132
132
if : always()
133
133
run : |
134
- (cd examples && ../tools/scripts/examples_compile.py nucleo_h743zi nucleo_h723zg)
134
+ (cd examples && ../tools/scripts/examples_compile.py nucleo_h743zi nucleo_h723zg stm32h750vbt6_devebox )
135
135
136
136
stm32f4-examples-1 :
137
137
runs-on : ubuntu-20.04
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2021, Henrik Hose
3
+ *
4
+ * This file is part of the modm project.
5
+ *
6
+ * This Source Code Form is subject to the terms of the Mozilla Public
7
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
8
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
+ */
10
+ // ----------------------------------------------------------------------------
11
+
12
+ #include < modm/board.hpp>
13
+
14
+ using namespace Board ;
15
+
16
+ int
17
+ main ()
18
+ {
19
+ Board::initialize ();
20
+
21
+ while (true )
22
+ {
23
+ LedGreen::toggle ();
24
+ modm::delay (100ms + ButtonK1::read ()*500ms + ButtonK2::read ()*1000ms);
25
+ }
26
+
27
+ return 0 ;
28
+ }
Original file line number Diff line number Diff line change
1
+ source [find interface/stlink.cfg]
Original file line number Diff line number Diff line change
1
+ <library >
2
+ <extends >modm:devebox-stm32h750vb</extends >
3
+ <options >
4
+ <option name =" modm:build:build.path" >../../../build/stm32h750vbt6_devebox/blink</option >
5
+ <option name =" modm:build:openocd.cfg" >openocd.cfg</option >
6
+ </options >
7
+ <modules >
8
+ <module >modm:build:scons</module >
9
+ </modules >
10
+ </library >
You can’t perform that action at this time.
0 commit comments