Yuu Kobayashi / Mbed 2 deprecated NuFM401

Dependencies:   AOTTrigon I2CEEPROM MCP4922 AQM0802A mbed

Fork of NuMidi401 by Yuu Kobayashi

Revision:
19:f0dcf591c5dd
Child:
21:e3014c1bdf9c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/FMOscillator/FMAlgorithm.h	Thu Jan 29 11:05:37 2015 +0000
@@ -0,0 +1,29 @@
+#pragma once
+#include "mbed.h"
+#include "FMOperator.h"
+
+class FMAlgorithmConnection
+{
+public:
+    FMAlgorithmConnection() {
+        target = 0;
+        source = 0;
+    }
+    int target;
+    int source;
+};
+
+class FMAlgorithm
+{
+public:
+    FMAlgorithm();
+    FMAlgorithm(int opc, int cnc);
+    ~FMAlgorithm();
+    void setOperator(int num, FMOperator *op);
+    void setConnection(int num, int t, int s);
+private:
+    int opcount;
+    int cncount;
+    FMOperator **operators;
+    FMAlgorithmConnection *connections;
+};