Block: uSaveSignal



PIC




Inports


In

Input signal to be saved




Description:

Makes the incoming signal accessible for reading with parameter numbers.

Implementations:
FiP8 8 Bit Fixed Point Implementation
FiP16 16 Bit Fixed Point Implementation
FiP32 32 Bit Fixed Point Implementation
Float32 32 Bit Floating Point Implementation
Float64 64 Bit Floating Point Implementation

Implementation: FiP8


Name FiP8
ID 336
Revision 0.1
C filename uSaveSignal_FiP8.c
H filename uSaveSignal_FiP8.h

8 Bit Fixed Point Implementation

Data Structure:

typedef struct { 
     uint16        ID; 
     uint8         *In; 
} USAVESIGNAL_FIP8;

Implementation: FiP16


Name FiP16
ID 337
Revision 0.1
C filename uSaveSignal_FiP16.c
H filename uSaveSignal_FiP16.h

16 Bit Fixed Point Implementation

Data Structure:

typedef struct { 
     uint16        ID; 
     uint16        *In; 
} USAVESIGNAL_FIP16;

Implementation: FiP32


Name FiP32
ID 338
Revision 0.1
C filename uSaveSignal_FiP32.c
H filename uSaveSignal_FiP32.h

32 Bit Fixed Point Implementation

Data Structure:

typedef struct { 
     uint16        ID; 
     uint32        *In; 
} USAVESIGNAL_FIP32;

Implementation: Float32


Name Float32
ID 339
Revision 0.1
C filename uSaveSignal_Float32.c
H filename uSaveSignal_Float32.h

32 Bit Floating Point Implementation

Data Structure:

typedef struct { 
     uint16        ID; 
     float32       *In; 
} USAVESIGNAL_FLOAT32;

Implementation: Float64


Name Float64
ID 340
Revision 0.1
C filename uSaveSignal_Float64.c
H filename uSaveSignal_Float64.h

64 Bit Floating Point Implementation

Data Structure:

typedef struct { 
     uint16        ID; 
     float64       *In; 
} USAVESIGNAL_FLOAT64;