Skip to content

Commit

Permalink
Signed-off-by: matt <[email protected]>
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantAsylum committed Jun 25, 2022
1 parent 08b91f3 commit ea193b9
Show file tree
Hide file tree
Showing 39 changed files with 1,119 additions and 895 deletions.
Binary file modified Tractor/Assets/Tractor3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
using System.Text;
using System.Threading;
using System.Web.Script.Serialization;
using Tractor.Com.QuantAsylum.Tractor.TestManagers;

namespace Tractor.Com.QuantAsylum.Tractor.TestManagers
namespace Tractor.Com.QuantAsylum.Hardware
{
class QA351 : IInstrument, IVoltMeter
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
using System.Runtime.Serialization.Formatters;
using System.Collections;

namespace Com.QuantAsylum.Tractor.TestManagers
namespace Com.QuantAsylum.Hardware
{
class QA401 : IInstrument, IAudioAnalyzer
{
Expand Down Expand Up @@ -293,7 +293,7 @@ public bool LRVerifyPhase(int bufferOffset)
return Qa401.LRVerifyPhase(bufferOffset);
}

private QuantAsylum.QA401.PointD[] MarshallToQAPointD(PointD[] dataIn)
private QuantAsylum.QA401.PointD[] MarshallToQAPointD(QuantAsylum.QA401.PointD[] dataIn)
{
QuantAsylum.QA401.PointD[] dataOut = new QuantAsylum.QA401.PointD[dataIn.Length];

Expand All @@ -305,13 +305,13 @@ private QuantAsylum.QA401.PointD[] MarshallToQAPointD(PointD[] dataIn)
return dataOut;
}

private PointD[] MarshallToPointD(QuantAsylum.QA401.PointD[] dataIn)
private QuantAsylum.QA401.PointD[] MarshallToPointD(QuantAsylum.QA401.PointD[] dataIn)
{
PointD[] dataOut = new PointD[dataIn.Length];
QuantAsylum.QA401.PointD[] dataOut = new QuantAsylum.QA401.PointD[dataIn.Length];

for (int i = 0; i < dataOut.Length; i++)
{
dataOut[i] = new PointD { X = dataIn[i].X, Y = dataIn[i].Y };
dataOut[i] = new QuantAsylum.QA401.PointD { X = dataIn[i].X, Y = dataIn[i].Y };
}

return dataOut;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using System.Threading.Tasks;
using System.Web.Script.Serialization;

namespace Com.QuantAsylum.Tractor.TestManagers
namespace Com.QuantAsylum.Hardware
{
class QA401H : IInstrument, IAudioAnalyzer
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
using System.Threading.Tasks;
using Com.QuantAsylum.Tractor.TestManagers;
using Tractor;
using Tractor.Com.QuantAsylum.Hardware;
using Tractor.Com.QuantAsylum.Tractor.TestManagers;

namespace Com.QuantAsylum.Tractor.TestManagers
namespace Com.QuantAsylum.Hardware
{
class QA401_QA351 : /* IComposite, */IInstrument, IAudioAnalyzer, IVoltMeter
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Com.QuantAsylum.Tractor.TestManagers;
using Tractor;

namespace Com.QuantAsylum.Tractor.TestManagers
namespace Com.QuantAsylum.Hardware
{
class QA401_QA450 : /* IComposite, */IInstrument, IAudioAnalyzer, IProgrammableLoad, ICurrentMeter, IPowerSupply
{
Expand Down
Loading

0 comments on commit ea193b9

Please sign in to comment.