Collaboration diagram for dcf_data_struct:
Data Fields | |
dcf_datetime | current_datetime [2] |
two full datasets | |
boolean | use_first_current_datetime |
flag if the first or the second dataset is used | |
dcf_sample | current_datetime_sample |
number of the current sample | |
dcf_receiving_data | receiving_data |
data being filled |
dcf_current_datetime() and dcf_sample() may be called from different contexts. To avoid changing the current_datetime while it is read: if use_first_current_datetime is true: dcf_current_datetime reads current_datetime[0] and dcf_sample changes current_datetime[1] if use_first_current_datetime is false: vice versa
Definition at line 62 of file dcftime.c.
two full datasets
Definition at line 63 of file dcftime.c.
Referenced by dcf_current_datetime(), and dcf_init().
flag if the first or the second dataset is used
Definition at line 64 of file dcftime.c.
Referenced by dcf_current_datetime(), and dcf_init().
number of the current sample
Definition at line 65 of file dcftime.c.
Referenced by dcf_init(), and dcf_signal().
data being filled
Definition at line 66 of file dcftime.c.
Referenced by dcf_current_datetime(), dcf_init(), and dcf_signal().