Block: SaveSignal



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

Implementation: FiP8


Name FiP8
ID 320
Revision 0.1
C filename SaveSignal_FiP8.c
H filename SaveSignal_FiP8.h

8 Bit Fixed Point Implementation

Data Structure:

typedef struct { 
     uint16        ID; 
     int8          *In; 
} SAVESIGNAL_FIP8;

Implementation: FiP16


Name FiP16
ID 321
Revision 0.1
C filename SaveSignal_FiP16.c
H filename SaveSignal_FiP16.h

16 Bit Fixed Point Implementation

Data Structure:

typedef struct { 
     uint16        ID; 
     int16         *In; 
} SAVESIGNAL_FIP16;

Implementation: FiP32


Name FiP32
ID 322
Revision 0.1
C filename SaveSignal_FiP32.c
H filename SaveSignal_FiP32.h

32 Bit Fixed Point Implementation

Data Structure:

typedef struct { 
     uint16        ID; 
     int32         *In; 
} SAVESIGNAL_FIP32;