forked from JohnBel/EfsTools
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Добавлены классы дя NV Items и файлов
- Loading branch information
Showing
10,618 changed files
with
285,226 additions
and
31 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
using System; | ||
using System.ComponentModel; | ||
using EfsTools.Attributes; | ||
using EfsTools.Utils; | ||
using Newtonsoft.Json; | ||
|
||
namespace EfsTools.Items.Data | ||
{ | ||
[Serializable] | ||
public class EptDpdStruct | ||
{ | ||
[ElementsCount(4)] | ||
[ElementType("int32")] | ||
[Description("")] | ||
public int[] Am { get; set; } | ||
|
||
[ElementsCount(3)] | ||
[ElementType("int32")] | ||
[Description("")] | ||
public int[] Pm { get; set; } | ||
|
||
[ElementsCount(3)] | ||
[ElementType("uint8")] | ||
[Description("")] | ||
public byte[] PmShift { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("int8")] | ||
[Description("")] | ||
public sbyte Status { get; set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using System; | ||
using System.ComponentModel; | ||
using EfsTools.Attributes; | ||
using EfsTools.Utils; | ||
using Newtonsoft.Json; | ||
|
||
namespace EfsTools.Items.Data | ||
{ | ||
[Serializable] | ||
public class GsmEnhtempcompPclType | ||
{ | ||
[ElementsCount(16)] | ||
[ElementType("int16")] | ||
[Description("")] | ||
public short[] PwrIndex { get; set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using System; | ||
using System.ComponentModel; | ||
using EfsTools.Attributes; | ||
using EfsTools.Utils; | ||
using Newtonsoft.Json; | ||
|
||
namespace EfsTools.Items.Data | ||
{ | ||
[Serializable] | ||
public class GsmEnhtempcompTempType | ||
{ | ||
[ElementsCount(16)] | ||
//[ElementType("GSM_EnhTempComp_pcl_type")] | ||
[Description("")] | ||
public GsmEnhtempcompPclType[] TempBin { get; set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using System; | ||
using System.ComponentModel; | ||
using EfsTools.Attributes; | ||
using EfsTools.Utils; | ||
using Newtonsoft.Json; | ||
|
||
namespace EfsTools.Items.Data | ||
{ | ||
[Serializable] | ||
public class GsmRxFreqCompDataType | ||
{ | ||
[ElementsCount(16)] | ||
[ElementType("int16")] | ||
[Description("")] | ||
public short[] FreqCompData { get; set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
using System; | ||
using System.ComponentModel; | ||
using EfsTools.Attributes; | ||
using EfsTools.Utils; | ||
using Newtonsoft.Json; | ||
|
||
namespace EfsTools.Items.Data | ||
{ | ||
[Serializable] | ||
public class GsmRxLnaSwptType | ||
{ | ||
[ElementsCount(1)] | ||
[ElementType("int8")] | ||
[Description("")] | ||
public sbyte MaxGainrange1 { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("int8")] | ||
[Description("")] | ||
public sbyte MinGainrange2 { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("int8")] | ||
[Description("")] | ||
public sbyte MaxGainrange2 { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("int8")] | ||
[Description("")] | ||
public sbyte MinGainrange3 { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("int8")] | ||
[Description("")] | ||
public sbyte MaxGainrange3 { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("int8")] | ||
[Description("")] | ||
public sbyte MinGainrange4 { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("int8")] | ||
[Description("")] | ||
public sbyte MaxGainrange4 { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("int8")] | ||
[Description("")] | ||
public sbyte MinGainrange5 { get; set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System; | ||
using System.ComponentModel; | ||
using EfsTools.Attributes; | ||
using EfsTools.Utils; | ||
using Newtonsoft.Json; | ||
|
||
namespace EfsTools.Items.Data | ||
{ | ||
[Serializable] | ||
public class GsmTxEnhAptDataType | ||
{ | ||
[ElementsCount(1)] | ||
[ElementType("uint8")] | ||
[Description("")] | ||
public byte PclThresholdVal { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("uint16")] | ||
[Description("")] | ||
public ushort VbattThresholdLowPwr { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("uint16")] | ||
[Description("")] | ||
public ushort VbattThresholdHighPwr { get; set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
using System; | ||
using System.ComponentModel; | ||
using EfsTools.Attributes; | ||
using EfsTools.Utils; | ||
using Newtonsoft.Json; | ||
|
||
namespace EfsTools.Items.Data | ||
{ | ||
[Serializable] | ||
public class GsmTxGtrThreshDataType | ||
{ | ||
[ElementsCount(1)] | ||
[ElementType("int8")] | ||
[Description("")] | ||
public sbyte Enable { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("int16")] | ||
[Description("")] | ||
public short RiseThresh { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("int16")] | ||
[Description("")] | ||
public short FallThresh { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("int16")] | ||
[Description("")] | ||
public short AdvTime { get; set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System; | ||
using System.ComponentModel; | ||
using EfsTools.Attributes; | ||
using EfsTools.Utils; | ||
using Newtonsoft.Json; | ||
|
||
namespace EfsTools.Items.Data | ||
{ | ||
[Serializable] | ||
public class GsmTxLinearTxGainParamDataType | ||
{ | ||
[ElementsCount(1)] | ||
[ElementType("uint16")] | ||
[Description("")] | ||
public ushort GsmLinearTxGainVal { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("uint16")] | ||
[Description("")] | ||
public ushort EdgeLinearTxGainVal { get; set; } | ||
|
||
[ElementsCount(16)] | ||
[ElementType("uint8")] | ||
[Description("")] | ||
public byte[] CharpredistEnvGain { get; set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
using System; | ||
using System.ComponentModel; | ||
using EfsTools.Attributes; | ||
using EfsTools.Utils; | ||
using Newtonsoft.Json; | ||
|
||
namespace EfsTools.Items.Data | ||
{ | ||
[Serializable] | ||
public class GsmTxPaSwptDataType | ||
{ | ||
[ElementsCount(1)] | ||
[ElementType("uint16")] | ||
[Description("")] | ||
public ushort PaR1ToR2 { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("uint16")] | ||
[Description("")] | ||
public ushort PaR2ToR3 { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("uint16")] | ||
[Description("")] | ||
public ushort PaR3ToR4 { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("uint16")] | ||
[Description("")] | ||
public ushort PaR2ToR4 { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("uint16")] | ||
[Description("")] | ||
public ushort EdgePaLoToMid { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("uint16")] | ||
[Description("")] | ||
public ushort EdgePaMidToHi { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("uint16")] | ||
[Description("")] | ||
public ushort PaPredistSwpt1 { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("uint16")] | ||
[Description("")] | ||
public ushort PaPredistSwpt2 { get; set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using System; | ||
using System.ComponentModel; | ||
using EfsTools.Attributes; | ||
using EfsTools.Utils; | ||
using Newtonsoft.Json; | ||
|
||
namespace EfsTools.Items.Data | ||
{ | ||
[Serializable] | ||
public class GsmTxPolarRampProfileDataType | ||
{ | ||
[ElementsCount(30)] | ||
[ElementType("uint16")] | ||
[Description("")] | ||
public ushort[] RampUp { get; set; } | ||
|
||
[ElementsCount(30)] | ||
[ElementType("uint16")] | ||
[Description("")] | ||
public ushort[] RampDown { get; set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using System; | ||
using System.ComponentModel; | ||
using EfsTools.Attributes; | ||
using EfsTools.Utils; | ||
using Newtonsoft.Json; | ||
|
||
namespace EfsTools.Items.Data | ||
{ | ||
[Serializable] | ||
public class GsmTxSarBackoffDataType | ||
{ | ||
[ElementsCount(1)] | ||
[ElementType("int16")] | ||
[Description("")] | ||
public short SarGmsk { get; set; } | ||
|
||
[ElementsCount(1)] | ||
[ElementType("int16")] | ||
[Description("")] | ||
public short Sar8psk { get; set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System; | ||
using System.ComponentModel; | ||
using EfsTools.Attributes; | ||
using EfsTools.Utils; | ||
using Newtonsoft.Json; | ||
|
||
namespace EfsTools.Items.Data | ||
{ | ||
[Serializable] | ||
public class GsmTxSmpsPdmDataType | ||
{ | ||
[ElementsCount(6)] | ||
[ElementType("uint16")] | ||
[Description("")] | ||
public ushort[] CalSmpsPdmTbl { get; set; } | ||
|
||
[ElementsCount(16)] | ||
[ElementType("uint16")] | ||
[Description("")] | ||
public ushort[] GsmSmpsPdmTbl { get; set; } | ||
|
||
[ElementsCount(16)] | ||
[ElementType("uint16")] | ||
[Description("")] | ||
public ushort[] EdgeSmpsPdmTbl { get; set; } | ||
|
||
} | ||
} |
Oops, something went wrong.