Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
707313c
finish part1 step1
liaoupup Feb 5, 2023
f1dfa3a
part1 step2
liaoupup Feb 5, 2023
09a4c07
part1 step3 phase1
liaoupup Feb 5, 2023
7172aa1
part1 s1 s2 s3 done
liaoupup Feb 5, 2023
4092335
2.8
liaoupup Feb 8, 2023
a47b9c2
debug
liaoupup Feb 8, 2023
902d5f2
part1 done
liaoupup Feb 18, 2023
e4527a6
start
liaoupup Feb 18, 2023
6f83294
except spec6
liaoupup Feb 18, 2023
40edce8
part2S2 done
liaoupup Feb 18, 2023
de57997
2.22
liaoupup Feb 22, 2023
a9c688e
part2s2 d
liaoupup Feb 22, 2023
13738db
s3 start
liaoupup Feb 25, 2023
ddbe9b9
start
liaoupup Feb 25, 2023
e091fe2
s3
liaoupup Feb 25, 2023
28fb4bf
makefile
liaoupup Feb 25, 2023
ddbe6c8
clean
liaoupup Feb 26, 2023
57bb330
button
liaoupup Feb 26, 2023
6c23dec
ok
liaoupup Feb 26, 2023
c4cc950
nice
liaoupup Feb 26, 2023
ca8595a
s4 temp + led
liaoupup Feb 26, 2023
8559126
3.1
liaoupup Mar 1, 2023
9d72eb6
debug
liaoupup Mar 2, 2023
a3bd816
well done
liaoupup Mar 8, 2023
758632a
init
liaoupup Apr 4, 2023
7a6329d
with 2 nodes, it can work
liaoupup Apr 7, 2023
ed6e160
part1 discuss with ivan
liaoupup Apr 12, 2023
edc868c
meta group
liaoupup Apr 17, 2023
93aaf20
add button function for conductor and musician
liaoupup Apr 18, 2023
0bee15c
p2 almost done
liaoupup Apr 21, 2023
a76fe13
p2 done
liaoupup Apr 24, 2023
75a34e5
p34 half
liaoupup Apr 27, 2023
9caa107
haft way
liaoupup Apr 27, 2023
2d3fe6b
work a bit
liaoupup Apr 27, 2023
9c82e43
after detection, play1note
liaoupup Apr 28, 2023
03c6462
p3 p4
liaoupup Apr 28, 2023
886933b
p3 p4
liaoupup Apr 28, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .application.c.swp
Binary file not shown.
Binary file modified Debug/RTS-Lab.elf
Binary file not shown.
604 changes: 494 additions & 110 deletions Debug/RTS-Lab.map

Large diffs are not rendered by default.

622 changes: 450 additions & 172 deletions Debug/RTS-Lab.s19

Large diffs are not rendered by default.

Binary file modified Debug/application.o
Binary file not shown.
Binary file added Debug/semaphore.o
Binary file not shown.
10 changes: 8 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ OBJECTS= $(DEBUGDIR)dispatch.o \
$(DEBUGDIR)stm32f4xx_tim.o \
$(DEBUGDIR)stm32f4xx_usart.o \
$(DEBUGDIR)startup.o \
$(DEBUGDIR)application.o
$(DEBUGDIR)application.o \
$(DEBUGDIR)semaphore.o \
$(DEBUGDIR)sioTinyTimber.o \

###
### Main target
Expand Down Expand Up @@ -100,9 +102,13 @@ $(DEBUGDIR)canTinyTimber.o: canTinyTimber.c canTinyTimber.h
$(CC) -c $< -o $@ $(CCFLAGS)
$(DEBUGDIR)sciTinyTimber.o: sciTinyTimber.c sciTinyTimber.h
$(CC) -c $< -o $@ $(CCFLAGS)
$(DEBUGDIR)semaphore.o: semaphore.c semaphore.h
$(CC) -c $< -o $@ $(CCFLAGS)
$(DEBUGDIR)sioTinyTimber.o: sioTinyTimber.c sioTinyTimber.h
$(CC) -c $< -o $@ $(CCFLAGS)

# User-defined targets
$(DEBUGDIR)application.o: application.c TinyTimber.h sciTinyTimber.h canTinyTimber.h
$(DEBUGDIR)application.o: application.c TinyTimber.h sciTinyTimber.h canTinyTimber.h semaphore.h sioTinyTimber.h
$(CC) -c $< -o $@ $(CCFLAGS)

###
Expand Down
16 changes: 16 additions & 0 deletions RTS-Lab.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"folders": [
{
"path": "."
}
],
"settings": {
"makefile.launchConfigurations": [
{
"cwd": "c:\\Users\\DELL\\Desktop\\RTS-Lab\\Debug",
"binaryPath": "c:\\Users\\DELL\\Desktop\\RTS-Lab\\Debug\\RTS-Lab.elf",
"binaryArgs": []
}
]
}
}
Loading