Skip to content
Snippets Groups Projects
Commit a99943b2 authored by antnh6@gmail.com's avatar antnh6@gmail.com
Browse files

why Makefile not seen

parent cc624f9e
No related branches found
No related tags found
1 merge request!16Withtime
...@@ -66,4 +66,5 @@ install: bwio.a taskdescriptor.a scheduler.a ...@@ -66,4 +66,5 @@ install: bwio.a taskdescriptor.a scheduler.a
clean: clean:
-rm -f *.elf *.s *.o main.map *.a *~ ../../lib/*.a -rm -f *.elf *.s *.o main.map *.a *~ ../../lib/*.a
src/k1.c 0 → 100644
#include <bwio.h>
void someK1Fn() {
bwprintf(COM2, "My TaskID: <%d> and My ParentID: <%d>\n", MyTid(), MyParentTid());
Pass();
bwprintf(COM2, "My TaskID: <%d> and My ParentID: <%d>\n", MyTid(), MyParentTid());
Exit();
}
void firstUserTaskChildren() {
int TaskID;
TaskID = Create(Prio1, someK1Fn);
bwprintf(COM2, "Created: <%d>\n", TaskID);
TaskID = Create(Prio1, someK1Fn);
bwprintf(COM2, "Created: <%d>\n", TaskID);
TaskID = Create(Prio5, someK1Fn);
bwprintf(COM2, "Created: <%d>\n", TaskID);
TaskID = Create(Prio5, someK1Fn);
bwprintf(COM2, "Created: <%d>\n", TaskID);
bwprintf(COM2, "FirstUserTask: exiting");
Exit();
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment