Go to the source code of this file.
|
#define | BUS_TIMING_CEND(name, bin, thresholdMs) BUS_TIMING_CEND_COMMENT(name, bin, #name, thresholdMs) |
|
#define | BUS_TIMING_CEND_COMMENT(name, bin, comment, thresholdMs) |
|
#define | BUS_TIMING_END(name, bin) BUS_TIMING_END_COMMENT(name, bin, #name) |
|
#define | BUS_TIMING_END_COMMENT(name, bin, comment) |
|
#define | BUS_TIMING_START(name) |
|
#define | GENERAL_TIMING_CEND(name, thresholdMs) GENERAL_TIMING_CEND_COMMENT(name, #name, thresholdMs) |
|
#define | GENERAL_TIMING_CEND_COMMENT(name, comment, thresholdMs) |
|
#define | GENERAL_TIMING_END(name) GENERAL_TIMING_END_COMMENT(name, #name) |
|
#define | GENERAL_TIMING_END_COMMENT(name, comment) |
|
#define | GENERAL_TIMING_START(name) |
|
#define | SLAVE_TIMING_CEND(sid, name, thresholdMs) SLAVE_TIMING_CEND_COMMENT(sid, name, #name, thresholdMs) |
|
#define | SLAVE_TIMING_CEND_COMMENT(sid, name, comment, thresholdMs) |
|
#define | SLAVE_TIMING_END(sid, name) SLAVE_TIMING_END_COMMENT(sid, name, #name) |
|
#define | SLAVE_TIMING_END_COMMENT(sid, name, comment) |
|
#define | SLAVE_TIMING_START(name) |
|
◆ BUS_TIMING_CEND
◆ BUS_TIMING_CEND_COMMENT
#define BUS_TIMING_CEND_COMMENT |
( |
|
name, |
|
|
|
bin, |
|
|
|
comment, |
|
|
|
thresholdMs |
|
) |
| |
Value:
{ \
name.end(bin, comment, thresholdMs); \
}
Definition at line 176 of file Timing.h.
◆ BUS_TIMING_END
◆ BUS_TIMING_END_COMMENT
#define BUS_TIMING_END_COMMENT |
( |
|
name, |
|
|
|
bin, |
|
|
|
comment |
|
) |
| |
Value:
{ \
name.end(bin, comment); \
}
Definition at line 170 of file Timing.h.
◆ BUS_TIMING_START
#define BUS_TIMING_START |
( |
|
name | ) |
|
◆ GENERAL_TIMING_CEND
◆ GENERAL_TIMING_CEND_COMMENT
#define GENERAL_TIMING_CEND_COMMENT |
( |
|
name, |
|
|
|
comment, |
|
|
|
thresholdMs |
|
) |
| |
Value:
{ \
name.end(comment, thresholdMs); \
}
Definition at line 154 of file Timing.h.
◆ GENERAL_TIMING_END
◆ GENERAL_TIMING_END_COMMENT
#define GENERAL_TIMING_END_COMMENT |
( |
|
name, |
|
|
|
comment |
|
) |
| |
Value:
{ \
name.end(comment); \
}
Definition at line 148 of file Timing.h.
◆ GENERAL_TIMING_START
#define GENERAL_TIMING_START |
( |
|
name | ) |
|
◆ SLAVE_TIMING_CEND
◆ SLAVE_TIMING_CEND_COMMENT
#define SLAVE_TIMING_CEND_COMMENT |
( |
|
sid, |
|
|
|
name, |
|
|
|
comment, |
|
|
|
thresholdMs |
|
) |
| |
Value:
{ \
name.end(sid, comment, thresholdMs); \
}
Definition at line 198 of file Timing.h.
◆ SLAVE_TIMING_END
◆ SLAVE_TIMING_END_COMMENT
#define SLAVE_TIMING_END_COMMENT |
( |
|
sid, |
|
|
|
name, |
|
|
|
comment |
|
) |
| |
Value:
{ \
name.end(sid, comment); \
}
Definition at line 192 of file Timing.h.
◆ SLAVE_TIMING_START
#define SLAVE_TIMING_START |
( |
|
name | ) |
|