summaryrefslogtreecommitdiff
path: root/software
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2014-06-02 15:06:47 (GMT)
committerChristian Pointner <equinox@helsinki.at>2014-06-02 15:06:47 (GMT)
commit8cba9d9165c6645a94c8ea97bd15f43674984997 (patch)
treea1ca603f38a0d2e1a3a31a1d3a24fa465a6e9d41 /software
parentf4a7c85c1ab8e8489610c3ffc31cc2db1ed709c3 (diff)
added initial analog support
Diffstat (limited to 'software')
-rw-r--r--software/rhmixxx/Makefile2
-rw-r--r--software/rhmixxx/analog.c36
-rw-r--r--software/rhmixxx/analog.h31
-rw-r--r--software/rhmixxx/rhmixxx.c2
4 files changed, 70 insertions, 1 deletions
diff --git a/software/rhmixxx/Makefile b/software/rhmixxx/Makefile
index 7b31d1f..60531a5 100644
--- a/software/rhmixxx/Makefile
+++ b/software/rhmixxx/Makefile
@@ -21,7 +21,7 @@
NAME := rhmixxx
BOARD_TYPE := rhmixxx
-OBJ := $(NAME).o keypad.o eventqueue.o gpio.o
+OBJ := $(NAME).o keypad.o eventqueue.o gpio.o analog.o
LIBS := util led lufa-descriptor-midi
EXTERNAL_LIBS := lufa
diff --git a/software/rhmixxx/analog.c b/software/rhmixxx/analog.c
new file mode 100644
index 0000000..45c89b0
--- /dev/null
+++ b/software/rhmixxx/analog.c
@@ -0,0 +1,36 @@
+/*
+ * rhmidi
+ *
+ * Copyright (C) 2014 Christian Pointner <equinox@helsinki.at>
+ *
+ * This file is part of rhmidi.
+ *
+ * rhmidi is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
+ *
+ * rhmidi is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with rhmidi. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <avr/io.h>
+#include "analog.h"
+#include "eventqueue.h"
+
+#define ANALOG_PIN PINF
+#define ANALOG_PORT PORTF
+#define ANALOG_DDR DDRF
+
+void analog_init(void)
+{
+}
+
+void analog_task(void)
+{
+}
diff --git a/software/rhmixxx/analog.h b/software/rhmixxx/analog.h
new file mode 100644
index 0000000..925f5a6
--- /dev/null
+++ b/software/rhmixxx/analog.h
@@ -0,0 +1,31 @@
+/*
+ * rhmidi
+ *
+ * Copyright (C) 2014 Christian Pointner <equinox@helsinki.at>
+ *
+ * This file is part of rhmidi.
+ *
+ * rhmidi is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
+ *
+ * rhmidi is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with rhmidi. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef RHMIXXX_analog_h_INCLUDED
+#define RHMIXXX_analog_h_INCLUDED
+
+#define ANALOG_NUM_INPUTS 8
+#define ANALOG_MIDI_NOTE_OFFSET 64
+
+void analog_init(void);
+void analog_task(void);
+
+#endif
diff --git a/software/rhmixxx/rhmixxx.c b/software/rhmixxx/rhmixxx.c
index f94b67b..3e3d66f 100644
--- a/software/rhmixxx/rhmixxx.c
+++ b/software/rhmixxx/rhmixxx.c
@@ -75,6 +75,7 @@ void EVENT_USB_Device_ControlRequest(void)
#include "keypad.h"
#include "eventqueue.h"
#include "gpio.h"
+#include "analog.h"
static void process_incoming_midi(void)
{
@@ -146,6 +147,7 @@ int main(void)
eventqueue_init();
keypad_init();
gpio_init();
+ analog_init();
USB_Init();
sei();