From 1695282ea236e5c0ea0f6eb955f812f2b50bd947 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sat, 17 Oct 2015 13:35:04 +0200 Subject: [PATCH] Documenting Two_Bit_Packed_File_Signal_Source --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7138da45b..3530b6a58 100644 --- a/README.md +++ b/README.md @@ -649,7 +649,7 @@ The ```Two_Bit_Packed_File_Signal_Source``` allows reading two-bit length sampl | 1 | 1 | -1 | -Within a byte the samples may be packed in big endian ```big_endian_bytes=true``` (if the most significant byte value is stored at the memory location with the lowest address, the next byte value in significance is stored at the following memory location, and so on) or little endian ```big_endian_bytes=false``` (if the least significant byte value is at the lowest address, and the other bytes follow in increasing order of significance) order. If the order is big endian then the most significant two bits will form the first sample output, otherwise the least significant two bits will be used. +Within a byte the samples may be packed in big endian ```big_endian_bytes=true``` (if the most significant byte value is stored at the memory location with the lowest address, the next byte value in significance is stored at the following memory location, and so on) or little endian ```big_endian_bytes=false``` (if the least significant byte value is at the lowest address, and the other bytes follow in increasing order of significance). If the order is big endian then the most significant two bits will form the first sample output, otherwise the least significant two bits will be used. Additionally the samples may be either real ```sample_type=real```, or complex. If the sample type is complex, then the samples are either stored in the order: real, imag, real, imag, ... ```sample_type=iq``` or in the order: imag, real, imag, real, ... ```sample_type=qi```.