X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Finput%2Fchronovu_la8.c;h=e7b7f082015ebe3c99d9dca209ac74c3fd9b7a40;hb=daa895cba3836f3bd5e02b845f85e23854dff820;hp=e83d58229118c5503a16d07bd3afa4d91cb7fd13;hpb=f54a55da2dc6b60b0ba153bc61e44415f5ed2004;p=libsigrok.git diff --git a/src/input/chronovu_la8.c b/src/input/chronovu_la8.c index e83d5822..e7b7f082 100644 --- a/src/input/chronovu_la8.c +++ b/src/input/chronovu_la8.c @@ -30,11 +30,57 @@ #define DEFAULT_NUM_CHANNELS 8 #define DEFAULT_SAMPLERATE SR_MHZ(100) #define CHUNK_SIZE (4 * 1024 * 1024) -#define CHRONOVU_LA8_FILESIZE ((8 * 1024 * 1024) + 5) + +/* + * File layout: + * - Fixed size 8MiB data part at offset 0. + * - Either one byte per sample for LA8. + * - Or two bytes per sample for LA16, in little endian format. + * - Five byte "header" at offset 8MiB. + * - One "clock divider" byte. The byte value is the divider factor + * minus 1. Value 0xff is invalid. Base clock is 100MHz for LA8, or + * 200MHz for LA16. + * - Four bytes for the trigger position. This 32bit value is the + * sample number in little endian format, or 0 when unused. + */ +#define CHRONOVU_LA8_DATASIZE (8 * 1024 * 1024) +#define CHRONOVU_LA8_HDRSIZE (sizeof(uint8_t) + sizeof(uint32_t)) +#define CHRONOVU_LA8_FILESIZE (CHRONOVU_LA8_DATASIZE + CHRONOVU_LA8_HDRSIZE) + +/* + * Implementation note: + * + * The .format_match() routine only checks the file size, but none of + * the header fields. Only little would be gained (only clock divider + * 0xff could get tested), but complexity would increase dramatically. + * Also the .format_match() routine is unlikely to receive large enough + * a buffer to include the header. Neither is the filename available to + * the .format_match() routine. + * + * There is no way to programmatically tell whether the file was created + * by LA8 or LA16 software, i.e. with 8 or 16 logic channels. If the + * filename was available, one might guess based on the file extension, + * but still would require user specs if neither of the known extensions + * were used or the input is fed from a pipe. + * + * The current input module implementation assumes that users specify + * the (channel count and) sample rate. Input data gets processed and + * passed along to the session bus, before the file "header" is seen. + * A future implementation could move channel creation from init() to + * receive() or end() (actually: a common routine called from those two + * routines), and could defer sample processing and feeding the session + * until the header was seen, including deferred samplerate calculation + * after having seen the header. But again this improvement depends on + * the availability of either the filename or the device type. Also note + * that applications then had to keep sending data to the input module's + * receive() routine until sufficient amounts of input data were seen + * including the header (see bug #1017). + */ struct context { gboolean started; uint64_t samplerate; + uint64_t samples_remain; }; static int format_match(GHashTable *metadata, unsigned int *confidence) @@ -89,9 +135,12 @@ static int process_buffer(struct sr_input *in) struct sr_config *src; struct context *inc; gsize chunk_size, i; - int chunk; + gsize chunk; + uint16_t unitsize; inc = in->priv; + unitsize = (g_slist_length(in->sdi->channels) + 7) / 8; + if (!inc->started) { std_session_send_df_header(in->sdi); @@ -105,21 +154,28 @@ static int process_buffer(struct sr_input *in) sr_config_free(src); } + inc->samples_remain = CHRONOVU_LA8_DATASIZE; + inc->samples_remain /= unitsize; + inc->started = TRUE; } packet.type = SR_DF_LOGIC; packet.payload = &logic; - logic.unitsize = (g_slist_length(in->sdi->channels) + 7) / 8; + logic.unitsize = unitsize; - /* Cut off at multiple of unitsize. */ + /* Cut off at multiple of unitsize. Avoid sending the "header". */ chunk_size = in->buf->len / logic.unitsize * logic.unitsize; + chunk_size = MIN(chunk_size, inc->samples_remain * unitsize); for (i = 0; i < chunk_size; i += chunk) { logic.data = in->buf->str + i; chunk = MIN(CHUNK_SIZE, chunk_size - i); - logic.length = chunk; - sr_session_send(in->sdi, &packet); + if (chunk) { + logic.length = chunk; + sr_session_send(in->sdi, &packet); + inc->samples_remain -= chunk / unitsize; + } } g_string_erase(in->buf, 0, chunk_size); @@ -188,9 +244,9 @@ static const struct sr_option *get_options(void) SR_PRIV struct sr_input_module input_chronovu_la8 = { .id = "chronovu-la8", - .name = "ChronoVu LA8", - .desc = "ChronoVu LA8 native file format data", - .exts = (const char*[]){"kdt", NULL}, + .name = "ChronoVu LA8/LA16", + .desc = "ChronoVu LA8/LA16 native file format data", + .exts = (const char*[]){"kdt", "kd1", NULL}, .metadata = { SR_INPUT_META_FILESIZE | SR_INPUT_META_REQUIRED }, .options = get_options, .format_match = format_match,