-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Siméon Marijon
committed
May 1, 2020
1 parent
f143099
commit b487ca3
Showing
4 changed files
with
49 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,7 @@ add_library(simu OBJECT | |
time.c | ||
uart.c | ||
main.c | ||
log_timings.c | ||
) | ||
|
||
if(NOT CMAKE_HOST_WIN32) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#include <stdint.h> | ||
#include <stdio.h> | ||
#include "log_timings.h" | ||
#include "common.h" | ||
#include <string.h> /* strlen */ | ||
|
||
|
||
|
||
//TO NOT IMPLEMENTED | ||
void log_time_initHw(){ | ||
} | ||
|
||
//TO NOT IMPLEMENTED | ||
void log_time_event(int id) | ||
{ | ||
} | ||
|
||
//TO NOT IMPLEMENTED | ||
void log_time_start() | ||
{ | ||
} | ||
|
||
//TO NOT IMPLEMENTED | ||
void log_time_dump() | ||
{ | ||
} | ||
|
||
//TO NOT IMPLEMENTED | ||
int log_time_full() | ||
{ | ||
} | ||
|
||
//TO NOT IMPLEMENTED | ||
void log_time_init_task(const char *name, int id) | ||
{ | ||
} | ||
|
||
//TO NOT IMPLEMENTED | ||
void log_time_event_task(TaskHandle_t t,int start) | ||
{ | ||
} |