Skip to content

Commit ea193b9

Browse files
committed
Signed-off-by: matt <github@quantasylum.com>
1 parent 08b91f3 commit ea193b9

39 files changed

+1119
-895
lines changed

Tractor/Assets/Tractor3.png

2 KB
Loading

Tractor/Com.QuantAsylum.Tractor.TestManagers/QA351.cs renamed to Tractor/Com.QuantAsylum.Hardware/QA351.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
using System.Text;
77
using System.Threading;
88
using System.Web.Script.Serialization;
9+
using Tractor.Com.QuantAsylum.Tractor.TestManagers;
910

10-
namespace Tractor.Com.QuantAsylum.Tractor.TestManagers
11+
namespace Tractor.Com.QuantAsylum.Hardware
1112
{
1213
class QA351 : IInstrument, IVoltMeter
1314
{

Tractor/Com.QuantAsylum.Tractor.TestManagers/QA401.cs renamed to Tractor/Com.QuantAsylum.Hardware/QA401.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
using System.Runtime.Serialization.Formatters;
1717
using System.Collections;
1818

19-
namespace Com.QuantAsylum.Tractor.TestManagers
19+
namespace Com.QuantAsylum.Hardware
2020
{
2121
class QA401 : IInstrument, IAudioAnalyzer
2222
{
@@ -293,7 +293,7 @@ public bool LRVerifyPhase(int bufferOffset)
293293
return Qa401.LRVerifyPhase(bufferOffset);
294294
}
295295

296-
private QuantAsylum.QA401.PointD[] MarshallToQAPointD(PointD[] dataIn)
296+
private QuantAsylum.QA401.PointD[] MarshallToQAPointD(QuantAsylum.QA401.PointD[] dataIn)
297297
{
298298
QuantAsylum.QA401.PointD[] dataOut = new QuantAsylum.QA401.PointD[dataIn.Length];
299299

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

308-
private PointD[] MarshallToPointD(QuantAsylum.QA401.PointD[] dataIn)
308+
private QuantAsylum.QA401.PointD[] MarshallToPointD(QuantAsylum.QA401.PointD[] dataIn)
309309
{
310-
PointD[] dataOut = new PointD[dataIn.Length];
310+
QuantAsylum.QA401.PointD[] dataOut = new QuantAsylum.QA401.PointD[dataIn.Length];
311311

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

317317
return dataOut;

Tractor/Com.QuantAsylum.Tractor.TestManagers/QA401H.cs renamed to Tractor/Com.QuantAsylum.Hardware/QA401H.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
using System.Threading.Tasks;
1111
using System.Web.Script.Serialization;
1212

13-
namespace Com.QuantAsylum.Tractor.TestManagers
13+
namespace Com.QuantAsylum.Hardware
1414
{
1515
class QA401H : IInstrument, IAudioAnalyzer
1616
{

Tractor/Com.QuantAsylum.Tractor.TestManagers/QA401_QA351.cs renamed to Tractor/Com.QuantAsylum.Hardware/QA401_QA351.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@
77
using System.Threading.Tasks;
88
using Com.QuantAsylum.Tractor.TestManagers;
99
using Tractor;
10+
using Tractor.Com.QuantAsylum.Hardware;
1011
using Tractor.Com.QuantAsylum.Tractor.TestManagers;
1112

12-
namespace Com.QuantAsylum.Tractor.TestManagers
13+
namespace Com.QuantAsylum.Hardware
1314
{
1415
class QA401_QA351 : /* IComposite, */IInstrument, IAudioAnalyzer, IVoltMeter
1516
{

Tractor/Com.QuantAsylum.Tractor.TestManagers/QA401_QA450.cs renamed to Tractor/Com.QuantAsylum.Hardware/QA401_QA450.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using Com.QuantAsylum.Tractor.TestManagers;
99
using Tractor;
1010

11-
namespace Com.QuantAsylum.Tractor.TestManagers
11+
namespace Com.QuantAsylum.Hardware
1212
{
1313
class QA401_QA450 : /* IComposite, */IInstrument, IAudioAnalyzer, IProgrammableLoad, ICurrentMeter, IPowerSupply
1414
{

0 commit comments

Comments
 (0)