summaryrefslogtreecommitdiff
path: root/bluefnorf/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'bluefnorf/main.c')
-rw-r--r--bluefnorf/main.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/bluefnorf/main.c b/bluefnorf/main.c
new file mode 100644
index 0000000..be45068
--- /dev/null
+++ b/bluefnorf/main.c
@@ -0,0 +1,39 @@
+/*
+ * ADC test: Try to get as many samples as possible
+ * using fast interleave mode and DMA
+ */
+
+#include <stdlib.h>
+#include <string.h>
+#include <stdio.h>
+
+#include <libopencm3/cm3/nvic.h>
+#include <libopencm3/stm32/rcc.h>
+#include <libopencm3/stm32/gpio.h>
+#include <libopencm3/stm32/adc.h>
+#include <libopencm3/stm32/dma.h>
+
+#include "usb.h"
+
+int main(void)
+{
+ int i = 0;
+ // const char* line;
+
+ // Clock Setup
+ rcc_clock_setup_in_hse_8mhz_out_72mhz();
+
+ // Initialize USB
+ usb_serial_init();
+
+ while (1) {
+ /*
+ if( i % 100000 == 0 ) {
+ // Read ADC
+ printf("Fnord 42 :: %d %d\r\n", _adc_samples[0], _adc_samples[1]);
+ }
+ */
+
+ i++;
+ }
+}