Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
lwc
/
compare
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Pipelines
Members
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
6480dcae
authored
Jun 12, 2020
by
Enrico Pozzobon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
some renaming
parent
2d4e4148
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
5 additions
and
4 deletions
+5
-4
compile_all.py
+3
-2
templates/bluepill/test.py
+0
-0
templates/esp32/test.py
+0
-0
templates/f1-libopencm3/Makefile
+1
-1
templates/f1-libopencm3/test.py
+0
-0
templates/f7/test.py
+0
-0
templates/maixduino/test.py
+0
-0
templates/uno/test.py
+0
-0
test-scheduler.py
+1
-1
No files found.
compile_all.py
View file @
6480dcae
...
...
@@ -104,10 +104,11 @@ def main(argv):
argparser
.
add_argument
(
'-v'
,
'--verbose'
,
action
=
'count'
)
argparser
.
add_argument
(
'-i'
,
'--include'
,
action
=
'append'
)
argparser
.
add_argument
(
'-t'
,
'--template'
,
default
=
'templates/linux'
)
argparser
.
add_argument
(
'-t'
,
'--template'
,
required
=
True
)
argparser
.
add_argument
(
'-b'
,
'--build-dir'
,
default
=
'build'
)
argparser
.
add_argument
(
'-s'
,
'--submissions-dir'
,
default
=
'all-lwc-submission-files'
)
default
=
'all-lwc-submission-files'
,
required
=
True
)
args
=
argparser
.
parse_args
(
argv
[
1
:])
template_dir
=
args
.
template
...
...
templates/bluepill/test
→
templates/bluepill/test
.py
View file @
6480dcae
File moved
templates/esp32/test
→
templates/esp32/test
.py
View file @
6480dcae
File moved
templates/f1-libopencm3/Makefile
View file @
6480dcae
...
...
@@ -75,7 +75,7 @@ STYLECHECKFLAGS := --no-tree -f --terse --mailback
STYLECHECKFILES
:=
$(
shell
find
.
-name
'*.[ch]'
)
OPT
:=
-O2
#DEBUG := -ggdb3
CSTD
?=
-std
=
c
99
CSTD
?=
-std
=
gnu
99
###############################################################################
...
...
templates/f1-libopencm3/test
→
templates/f1-libopencm3/test
.py
View file @
6480dcae
File moved
templates/f7/test
→
templates/f7/test
.py
View file @
6480dcae
File moved
templates/maixduino/test
→
templates/maixduino/test
.py
View file @
6480dcae
File moved
templates/uno/test
→
templates/uno/test
.py
View file @
6480dcae
File moved
test-
dude
.py
→
test-
scheduler
.py
View file @
6480dcae
...
...
@@ -74,7 +74,7 @@ class Runner(threading.Thread):
def
__init__
(
self
,
template
,
platform
,
program
=
None
):
if
program
is
None
:
program
=
[
'python3'
,
'./templates/
%
s/test'
%
template
]
program
=
[
'python3'
,
'./templates/
%
s/test
.py
'
%
template
]
self
.
id
=
str
(
Runner
.
_next_id
)
Runner
.
_next_id
+=
1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment