Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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