123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace FxpConvert.Common
- {
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public struct NiFpga_FxpTypeInfo
- {
- public string Name;
- /// NiFpga_Bool->uint8_t->unsigned char
- public bool isSigned;
- /// uint8_t->unsigned char
- public byte wordLength;
- /// int16_t->short
- public short integerWordLength;
- public double Delta;
- public Double Max;
- public Double Min;
- }
- }
|