forked from omriiluz/WS2812B-LED-Driver-ChibiOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c.orig
1009 lines (864 loc) · 29.2 KB
/
main.c.orig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
ChibiOS/RT - Copyright (C) 2006-2013 Giovanni Di Sirio
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include <stdio.h>
#include <string.h>
#include "ch.h"
#include "hal.h"
#include "chsys.h"
#include "test.h"
#include "math.h"
#include "arm_math.h"
#include "shell.h"
#include "chprintf.h"
#include "led_driver.h"
#include "MPU9150.h"
<<<<<<< HEAD
#define N_LEDS 240
/*===========================================================================*/
/* Timer related stuff. */
/*===========================================================================*/
GPTConfig i2c_timer = {
1000000,
NULL,
0 /* DIER */
};
/*===========================================================================*/
/* I2C related stuff. */
/*===========================================================================*/
// Hardware-specific support functions that MUST be customized:
#define I2CSPEED 100
void I2C_delay(void)
{
gptPolledDelay(&GPTD1, 10); //wait 10 us
}
bool read_SCL(void) // Set SCL as input and return current level of line, 0 or 1
{
palWritePad(GPIOB, GPIOB_IMU_SCL, 1);
return palReadPad(GPIOB, GPIOB_IMU_SCL);
}
bool read_SDA(void) // Set SDA as input and return current level of line, 0 or 1
{
palWritePad(GPIOB, GPIOB_IMU_SDA, 1);
return palReadPad(GPIOB, GPIOB_IMU_SDA);
}
void clear_SCL(void) // Actively drive SCL signal low
{
palWritePad(GPIOB, GPIOB_IMU_SCL, 0);
}
void clear_SDA(void) // Actively drive SDA signal low
{
palWritePad(GPIOB, GPIOB_IMU_SDA, 0);
}
bool started = false; // global data
int i2c_start_cond(void) {
if (started) { // if started, do a restart cond
// set SDA to 1
read_SDA();
I2C_delay();
while (read_SCL() == 0) { // Clock stretching
// You should add timeout to this loop
}
// Repeated start setup time, minimum 4.7us
I2C_delay();
}
if (read_SDA() == 0) {
return 1;
}
// SCL is high, set SDA from 1 to 0.
clear_SDA();
I2C_delay();
clear_SCL();
started = true;
return 0;
}
int i2c_stop_cond(void){
// set SDA to 0
clear_SDA();
I2C_delay();
// Clock stretching
while (read_SCL() == 0) {
// add timeout to this loop.
}
// Stop bit setup time, minimum 4us
I2C_delay();
// SCL is high, set SDA from 0 to 1
if (read_SDA() == 0) {
return -1;
}
I2C_delay();
started = false;
return 0;
}
// Write a bit to I2C bus
int i2c_write_bit(bool bit) {
if (bit) {
read_SDA();
} else {
clear_SDA();
}
I2C_delay();
while (read_SCL() == 0) { // Clock stretching
// You should add timeout to this loop
}
// SCL is high, now data is valid
// If SDA is high, check that nobody else is driving SDA
if (bit && read_SDA() == 0) {
return 1;
}
I2C_delay();
clear_SCL();
return 0;
}
// Read a bit from I2C bus
bool i2c_read_bit(void) {
bool bit;
// Let the slave drive data
read_SDA();
I2C_delay();
while (read_SCL() == 0) { // Clock stretching
// You should add timeout to this loop
}
// SCL is high, now data is valid
bit = read_SDA();
I2C_delay();
clear_SCL();
return bit;
}
// Write a byte to I2C bus. Return 0 if ack by the slave.
bool i2c_write_byte(bool send_start,
bool send_stop,
unsigned char byte) {
unsigned bit;
bool nack;
if (send_start) {
i2c_start_cond();
}
for (bit = 0; bit < 8; bit++) {
i2c_write_bit((byte & 0x80) != 0);
byte <<= 1;
}
nack = i2c_read_bit();
if (send_stop) {
i2c_stop_cond();
}
return nack;
}
// Read a byte from I2C bus
unsigned char i2c_read_byte(bool nack, bool send_stop) {
unsigned char byte = 0;
unsigned bit;
for (bit = 0; bit < 8; bit++) {
byte = (byte << 1) | i2c_read_bit();
}
i2c_write_bit(nack);
if (send_stop) {
i2c_stop_cond();
}
return byte;
}
// writes d to register ra. returns 1 if successful, 0 otherwise
bool mpu9150_write_register(uint8_t ra, uint8_t data[], size_t n)
{
if (i2c_write_byte(1, 0, (0x68 << 1))) return 1; // send address byte. send start, no stop
if (i2c_write_byte(0, 0, ra)) return 1; // send register address
=======
#define N_LEDS 20
#define N_AVG 50
#define FFT_LENGTH 1024
#define TWO_PI (M_PI * 2.0f)
#define SAMPLING_RATE (72000000/8/(601.5 + 12.5))
#define RESOLUTION (SAMPLING_RATE/FFT_LENGTH)
>>>>>>> a5c8548d557bd4b8c81408fc0f7fc9f0e1099137
size_t i;
for (i = 0; i < n; i++) if (i2c_write_byte(0, i == (n - 1), data[i])) return 1; // send data
return 0; // success
}
bool mpu9150_read_register(uint8_t ra, uint8_t data[], size_t n)
{
if (i2c_write_byte(1, 0, (0x68 << 1))) return 1; // send address byte. send start, no stop
if (i2c_write_byte(0, 0, ra)) return 1; // send register address
if (i2c_write_byte(1, 0, (0x68 << 1) | 0x01)) return 1; // send address byte. send start, no stop
size_t i;
for (i = 0; i < n; i++) data[i] = i2c_read_byte(i == (n - 1), i == (n - 1));
return 0; // success
}
BinarySemaphore adc_complete;
/*===========================================================================*/
/* USB related stuff. */
/*===========================================================================*/
/*
* Endpoints to be used for USBD1.
*/
#define USBD1_DATA_REQUEST_EP 1
#define USBD1_DATA_AVAILABLE_EP 1
#define USBD1_INTERRUPT_REQUEST_EP 2
/*
* DP resistor control is not possible on the STM32F3-Discovery, using stubs
* for the connection macros.
*/
#define usb_lld_connect_bus(usbp)
#define usb_lld_disconnect_bus(usbp)
/*
* Serial over USB Driver structure.
*/
static SerialUSBDriver SDU1;
/*
* USB Device Descriptor.
*/
static const uint8_t vcom_device_descriptor_data[18] = {
USB_DESC_DEVICE (0x0110, /* bcdUSB (1.1). */
0x02, /* bDeviceClass (CDC). */
0x00, /* bDeviceSubClass. */
0x00, /* bDeviceProtocol. */
0x40, /* bMaxPacketSize. */
0x0483, /* idVendor (ST). */
0x5740, /* idProduct. */
0x0200, /* bcdDevice. */
1, /* iManufacturer. */
2, /* iProduct. */
3, /* iSerialNumber. */
1) /* bNumConfigurations. */
};
/*
* Device Descriptor wrapper.
*/
static const USBDescriptor vcom_device_descriptor = {
sizeof vcom_device_descriptor_data,
vcom_device_descriptor_data
};
/* Configuration Descriptor tree for a CDC.*/
static const uint8_t vcom_configuration_descriptor_data[67] = {
/* Configuration Descriptor.*/
USB_DESC_CONFIGURATION(67, /* wTotalLength. */
0x02, /* bNumInterfaces. */
0x01, /* bConfigurationValue. */
0, /* iConfiguration. */
0xC0, /* bmAttributes (self powered). */
50), /* bMaxPower (100mA). */
/* Interface Descriptor.*/
USB_DESC_INTERFACE (0x00, /* bInterfaceNumber. */
0x00, /* bAlternateSetting. */
0x01, /* bNumEndpoints. */
0x02, /* bInterfaceClass (Communications
Interface Class, CDC section
4.2). */
0x02, /* bInterfaceSubClass (Abstract
Control Model, CDC section 4.3). */
0x01, /* bInterfaceProtocol (AT commands,
CDC section 4.4). */
0), /* iInterface. */
/* Header Functional Descriptor (CDC section 5.2.3).*/
USB_DESC_BYTE (5), /* bLength. */
USB_DESC_BYTE (0x24), /* bDescriptorType (CS_INTERFACE). */
USB_DESC_BYTE (0x00), /* bDescriptorSubtype (Header
Functional Descriptor. */
USB_DESC_BCD (0x0110), /* bcdCDC. */
/* Call Management Functional Descriptor. */
USB_DESC_BYTE (5), /* bFunctionLength. */
USB_DESC_BYTE (0x24), /* bDescriptorType (CS_INTERFACE). */
USB_DESC_BYTE (0x01), /* bDescriptorSubtype (Call Management
Functional Descriptor). */
USB_DESC_BYTE (0x00), /* bmCapabilities (D0+D1). */
USB_DESC_BYTE (0x01), /* bDataInterface. */
/* ACM Functional Descriptor.*/
USB_DESC_BYTE (4), /* bFunctionLength. */
USB_DESC_BYTE (0x24), /* bDescriptorType (CS_INTERFACE). */
USB_DESC_BYTE (0x02), /* bDescriptorSubtype (Abstract
Control Management Descriptor). */
USB_DESC_BYTE (0x02), /* bmCapabilities. */
/* Union Functional Descriptor.*/
USB_DESC_BYTE (5), /* bFunctionLength. */
USB_DESC_BYTE (0x24), /* bDescriptorType (CS_INTERFACE). */
USB_DESC_BYTE (0x06), /* bDescriptorSubtype (Union
Functional Descriptor). */
USB_DESC_BYTE (0x00), /* bMasterInterface (Communication
Class Interface). */
USB_DESC_BYTE (0x01), /* bSlaveInterface0 (Data Class
Interface). */
/* Endpoint 2 Descriptor.*/
USB_DESC_ENDPOINT (USBD1_INTERRUPT_REQUEST_EP|0x80,
0x03, /* bmAttributes (Interrupt). */
0x0008, /* wMaxPacketSize. */
0xFF), /* bInterval. */
/* Interface Descriptor.*/
USB_DESC_INTERFACE (0x01, /* bInterfaceNumber. */
0x00, /* bAlternateSetting. */
0x02, /* bNumEndpoints. */
0x0A, /* bInterfaceClass (Data Class
Interface, CDC section 4.5). */
0x00, /* bInterfaceSubClass (CDC section
4.6). */
0x00, /* bInterfaceProtocol (CDC section
4.7). */
0x00), /* iInterface. */
/* Endpoint 3 Descriptor.*/
USB_DESC_ENDPOINT (USBD1_DATA_AVAILABLE_EP, /* bEndpointAddress.*/
0x02, /* bmAttributes (Bulk). */
0x0040, /* wMaxPacketSize. */
0x00), /* bInterval. */
/* Endpoint 1 Descriptor.*/
USB_DESC_ENDPOINT (USBD1_DATA_REQUEST_EP|0x80, /* bEndpointAddress.*/
0x02, /* bmAttributes (Bulk). */
0x0040, /* wMaxPacketSize. */
0x00) /* bInterval. */
};
/*
* Configuration Descriptor wrapper.
*/
static const USBDescriptor vcom_configuration_descriptor = {
sizeof vcom_configuration_descriptor_data,
vcom_configuration_descriptor_data
};
/*
* U.S. English language identifier.
*/
static const uint8_t vcom_string0[] = {
USB_DESC_BYTE(4), /* bLength. */
USB_DESC_BYTE(USB_DESCRIPTOR_STRING), /* bDescriptorType. */
USB_DESC_WORD(0x0409) /* wLANGID (U.S. English). */
};
/*
* Vendor string.
*/
static const uint8_t vcom_string1[] = {
USB_DESC_BYTE(38), /* bLength. */
USB_DESC_BYTE(USB_DESCRIPTOR_STRING), /* bDescriptorType. */
'S', 0, 'T', 0, 'M', 0, 'i', 0, 'c', 0, 'r', 0, 'o', 0, 'e', 0,
'l', 0, 'e', 0, 'c', 0, 't', 0, 'r', 0, 'o', 0, 'n', 0, 'i', 0,
'c', 0, 's', 0
};
/*
* Device Description string.
*/
static const uint8_t vcom_string2[] = {
USB_DESC_BYTE(56), /* bLength. */
USB_DESC_BYTE(USB_DESCRIPTOR_STRING), /* bDescriptorType. */
'C', 0, 'h', 0, 'i', 0, 'b', 0, 'i', 0, 'O', 0, 'S', 0, '/', 0,
'R', 0, 'T', 0, ' ', 0, 'V', 0, 'i', 0, 'r', 0, 't', 0, 'u', 0,
'a', 0, 'l', 0, ' ', 0, 'C', 0, 'O', 0, 'M', 0, ' ', 0, 'P', 0,
'o', 0, 'r', 0, 't', 0
};
/*
* Serial Number string.
*/
static const uint8_t vcom_string3[] = {
USB_DESC_BYTE(8), /* bLength. */
USB_DESC_BYTE(USB_DESCRIPTOR_STRING), /* bDescriptorType. */
'0' + CH_KERNEL_MAJOR, 0,
'0' + CH_KERNEL_MINOR, 0,
'0' + CH_KERNEL_PATCH, 0
};
/*
* Strings wrappers array.
*/
static const USBDescriptor vcom_strings[] = {
{sizeof vcom_string0, vcom_string0},
{sizeof vcom_string1, vcom_string1},
{sizeof vcom_string2, vcom_string2},
{sizeof vcom_string3, vcom_string3}
};
/*
* Handles the GET_DESCRIPTOR callback. All required descriptors must be
* handled here.
*/
static const USBDescriptor *get_descriptor(USBDriver *usbp,
uint8_t dtype,
uint8_t dindex,
uint16_t lang) {
(void)usbp;
(void)lang;
switch (dtype) {
case USB_DESCRIPTOR_DEVICE:
return &vcom_device_descriptor;
case USB_DESCRIPTOR_CONFIGURATION:
return &vcom_configuration_descriptor;
case USB_DESCRIPTOR_STRING:
if (dindex < 4)
return &vcom_strings[dindex];
}
return NULL;
}
/**
* @brief IN EP1 state.
*/
static USBInEndpointState ep1instate;
/**
* @brief OUT EP1 state.
*/
static USBOutEndpointState ep1outstate;
/**
* @brief EP1 initialization structure (both IN and OUT).
*/
static const USBEndpointConfig ep1config = {
USB_EP_MODE_TYPE_BULK,
NULL,
sduDataTransmitted,
sduDataReceived,
0x0040,
0x0040,
&ep1instate,
&ep1outstate,
1,
NULL
};
/**
* @brief IN EP2 state.
*/
static USBInEndpointState ep2instate;
/**
* @brief EP2 initialization structure (IN only).
*/
static const USBEndpointConfig ep2config = {
USB_EP_MODE_TYPE_INTR,
NULL,
sduInterruptTransmitted,
NULL,
0x0010,
0x0000,
&ep2instate,
NULL,
1,
NULL
};
/*
* Handles the USB driver global events.
*/
static void usb_event(USBDriver *usbp, usbevent_t event) {
switch (event) {
case USB_EVENT_RESET:
return;
case USB_EVENT_ADDRESS:
return;
case USB_EVENT_CONFIGURED:
chSysLockFromIsr();
/* Enables the endpoints specified into the configuration.
Note, this callback is invoked from an ISR so I-Class functions
must be used.*/
usbInitEndpointI(usbp, USBD1_DATA_REQUEST_EP, &ep1config);
usbInitEndpointI(usbp, USBD1_INTERRUPT_REQUEST_EP, &ep2config);
/* Resetting the state of the CDC subsystem.*/
sduConfigureHookI(&SDU1);
chSysUnlockFromIsr();
return;
case USB_EVENT_SUSPEND:
return;
case USB_EVENT_WAKEUP:
return;
case USB_EVENT_STALLED:
return;
}
return;
}
/*
* USB driver configuration.
*/
static const USBConfig usbcfg = {
usb_event,
get_descriptor,
sduRequestsHook,
NULL
};
/*
* Serial over USB driver configuration.
*/
static const SerialUSBConfig serusbcfg = {
&USBD1,
USBD1_DATA_REQUEST_EP,
USBD1_DATA_AVAILABLE_EP,
USBD1_INTERRUPT_REQUEST_EP
};
BaseSequentialStream *USBout = (BaseSequentialStream *)&SDU1;
BaseChannel *USBin = (BaseChannel *)&SDU1;
<<<<<<< HEAD
//const I2CConfig mpu9150_config = {
// STM32_TIMINGR_PRESC(15U) |
// STM32_TIMINGR_SCLDEL(4U) | STM32_TIMINGR_SDADEL(2U) |
// STM32_TIMINGR_SCLH(15U) | STM32_TIMINGR_SCLL(21U),
// 0,
// 0
//};
const I2CConfig mpu9150_config = {
STM32_TIMINGR_PRESC(14U) |
STM32_TIMINGR_SCLDEL(5U) | STM32_TIMINGR_SDADEL(3U) |
STM32_TIMINGR_SCLH(18U) | STM32_TIMINGR_SCLL(23U),
0,
0
=======
static adcsample_t adc_samples[ADC_GRP1_NUM_CHANNELS * ADC_GRP1_BUF_DEPTH];
static adcsample_t buf_samples[FFT_LENGTH*2];
float32_t avg;
size_t num_samples = 0;
static void adccallback(ADCDriver * adcp, adcsample_t * buffer, size_t n)
{
(void)adcp;
(void)n;
if (adc_samples == buffer) {
palTogglePad(GPIOA, GPIOA_TX1);
chBSemSignal(&adc_complete);
memcpy(buf_samples, adc_samples, FFT_LENGTH*2);
}
//if (adc_samples == buffer) {
// palTogglePad(GPIOA, GPIOA_TX1);
// memcpy(buf_samples, adc_samples, sizeof(adcsample_t)*ADC_GRP1_NUM_CHANNELS * ADC_GRP1_BUF_DEPTH);
// chBSemSignal(&adc_complete);
//}
}
static void adcerrorcallback(ADCDriver * adcp, adcerror_t err)
{
(void) adcp;
(void) err;
}
static const ADCConversionGroup adcgrpcfg1 = {
TRUE, /* Circular */
ADC_GRP1_NUM_CHANNELS, /* Num Channels */
adccallback, /* End callback */
adcerrorcallback, /* Error callback */
0, /* CFGR */
ADC_TR(0, 4095), /* TR1 */
0, /* CR */
{ /* SMPR[2] */
0,
ADC_SMPR2_SMP_AN12(ADC_SMPR_SMP_601P5)
},
{ /* SQR[4] */
ADC_SQR1_NUM_CH(ADC_GRP1_NUM_CHANNELS) | ADC_SQR1_SQ1_N(ADC_CHANNEL_IN12),
0,
0,
0
}
>>>>>>> a5c8548d557bd4b8c81408fc0f7fc9f0e1099137
};
/*===========================================================================*/
/* Timer related stuff. */
/*===========================================================================*/
//static void gpt_adc_trigger(GPTDriver *gpt_ptr)
//{
// (void) gpt_ptr;
//
// adcStartConversion(&ADCD3, &adcgrpcfg1, adc_samples, ADC_GRP1_BUF_DEPTH);
// //palTogglePad(GPIOA, GPIOA_TX1);
//}
//
///*
// * Configure a GPT object
// */
//static GPTConfig gpt_adc_config =
//{
// 1000000, // timer clock: 1Mhz
// gpt_adc_trigger, // Timer callback function
// 0
//};
<<<<<<< HEAD
static uint8_t *o_fb;
color_rgb_t led[N_LEDS];
static uint16_t gpio_pin1_mask = 0b0000000000000010;
static const color_rgb_t red = {100, 0, 0};
static const color_rgb_t green = {0, 100, 0};
static const color_rgb_t blue = {0, 0, 100};
static const color_rgb_t black = {0, 0, 0};
/*
static WORKING_AREA(wathread_leds, 512);
__attribute__ ((__noreturn__))
static msg_t thread_leds(void *arg)
{
(void) arg;
while (TRUE) {
//chprintf(USBout, "red\r\n");
set_color_rgb(red, o_fb, gpio_pin1_mask);
chThdSleepMilliseconds(1000);
//chprintf(USBout, "green\r\n");
set_color_rgb(green, o_fb, gpio_pin1_mask);
chThdSleepMilliseconds(1000);
//chprintf(USBout, "blue\r\n");
set_color_rgb(blue, o_fb, gpio_pin1_mask);
chThdSleepMilliseconds(1000);
=======
float32_t average_array(adcsample_t * buffer, size_t len)
{
float32_t sum = 0;
uint32_t i;
for (i = 0; i < len; i++) sum += buffer[i];
return sum/((float32_t) len);
}
const color_rgb_t red = {24, 0, 0};
const color_rgb_t green = { 0, 24, 0};
const color_rgb_t blue = { 0, 0, 24};
const color_rgb_t white = {24, 24, 24};
const color_rgb_t black = { 0, 0, 0};
float32_t samples[FFT_LENGTH*2];
float32_t fft_mag[FFT_LENGTH/2];
color_hsv_t color_array[10][N_AVG];
static WORKING_AREA(wathread_leds, 512);
__attribute__ ((__noreturn__))
static msg_t thread_leds(void *arg) {
(void) arg;
chRegSetThreadName("leds");
/*
* Use TX1 as a timing output
*/
palSetPadMode(GPIOA, GPIOA_TX1, PAL_MODE_OUTPUT_PUSHPULL);
palSetPadMode(GPIOA, GPIOA_RX1, PAL_MODE_OUTPUT_PUSHPULL);
palSetPad(GPIOA, GPIOA_TX1);
palSetPad(GPIOA, GPIOA_RX1);
/*
* FPU INIT
*/
const uint32_t ifftFlag = 0;
const uint32_t doBitReverse = 1;
arm_cfft_radix2_instance_f32 S;
float32_t max_value = 0;
uint32_t max_index = 0;
arm_cfft_radix2_init_f32(&S, FFT_LENGTH, ifftFlag, doBitReverse);
memset(color_array, 0, sizeof(color_array));
/*
* Main loop
*/
while (TRUE) {
//palSetPad(GPIOA, GPIOA_TX1); //indicate loop beginning
chBSemWait(&adc_complete);
// read in sample values
int i, j;
for (i = 0; i < FFT_LENGTH; i++) {
samples[i*2] = ((((float32_t) buf_samples[i]) - 2700.0)); //real
samples[i*2 + 1] = 0.0; //complex
}
// perform fft
arm_cfft_radix2_f32(&S, samples);
//palClearPad(GPIOA, GPIOA_TX1); //indicate end of fft stage
arm_cmplx_mag_f32(samples, fft_mag, FFT_LENGTH/2); //calculate overall magnitude
//float freqs[4];
//uint32_t bins[4];
// find max value and location between ~226 and ~2000 hz
arm_max_f32(fft_mag + 5, 35, &max_value, &max_index);
//freqs[0] = (max_index + 5)*RESOLUTION;
//bins[0] = max_index + 5;
// figure out floating magnitude
float32_t magnitude = (max_value/1024.0);
//chprintf(USBout, "%D\r\n", (int64_t) (magnitude*100.0));
//color_hsv_t max_color = {(((float32_t) max_index)/49.0), 1.0, magnitude/42.0};
color_hsv_t max_color = {(((float32_t) max_index)/32.0), 1.0, magnitude/30.0};
/*
float last = max_value;
for (i = max_index; last >= fft_mag[i]; i++) {
last = fft_mag[i];
fft_mag[i] = 0.0;
}
last = max_value;
for (i = max_index - 1; last >= fft_mag[i]; i--) {
last = fft_mag[i];
fft_mag[i] = 0.0;
}
*/
fft_mag[max_index + 5] = 0.0;
color_hsv_t sub_color[3];
for (i = 0; i < 3; i++) {
// find max value and location between ~226 and ~2000 hz
arm_max_f32(fft_mag + 5, 35, &max_value, &max_index);
//freqs[i+1] = (max_index + 5)*RESOLUTION;
//bins[i+1] = max_index + 5;
// figure out float32_ting magnitude
magnitude = (max_value/1024.0);
sub_color[i].hue = (((float32_t) max_index)/32.0);
sub_color[i].sat = 1.0;
sub_color[i].val = magnitude/30.0;
//sub_color[i].val = magnitude/42.0;
/*
last = max_value;
for (i = max_index; last >= fft_mag[i]; i++) {
last = fft_mag[i];
fft_mag[i] = 0.0;
}
last = max_value;
for (i = max_index - 1; last >= fft_mag[i]; i--) {
last = fft_mag[i];
fft_mag[i] = 0.0;
}
*/
fft_mag[max_index + 5] = 0.0;
}
color_hsv_t interp_color[3][2];
interp_color[0][0].hue = (sub_color[0].hue * 2.0 + sub_color[1].hue + max_color.hue * 2.0)/5.0;
interp_color[0][1].hue = (sub_color[0].hue * 2.0 + sub_color[2].hue + max_color.hue * 2.0)/5.0;
interp_color[1][0].hue = (sub_color[1].hue * 2.0 + sub_color[2].hue + max_color.hue * 2.0)/5.0;
interp_color[1][1].hue = (sub_color[1].hue * 2.0 + sub_color[0].hue + max_color.hue * 2.0)/5.0;
interp_color[2][0].hue = (sub_color[2].hue * 2.0 + sub_color[0].hue + max_color.hue * 2.0)/5.0;
interp_color[2][1].hue = (sub_color[2].hue * 2.0 + sub_color[1].hue + max_color.hue * 2.0)/5.0;
interp_color[0][0].sat = (sub_color[0].sat * 2.0 + sub_color[1].sat + max_color.sat * 2.0)/5.0;
interp_color[0][1].sat = (sub_color[0].sat * 2.0 + sub_color[2].sat + max_color.sat * 2.0)/5.0;
interp_color[1][0].sat = (sub_color[1].sat * 2.0 + sub_color[2].sat + max_color.sat * 2.0)/5.0;
interp_color[1][1].sat = (sub_color[1].sat * 2.0 + sub_color[0].sat + max_color.sat * 2.0)/5.0;
interp_color[2][0].sat = (sub_color[2].sat * 2.0 + sub_color[0].sat + max_color.sat * 2.0)/5.0;
interp_color[2][1].sat = (sub_color[2].sat * 2.0 + sub_color[1].sat + max_color.sat * 2.0)/5.0;
interp_color[0][0].val = (sub_color[0].val * 2.0 + sub_color[1].val + max_color.val * 2.0)/5.0;
interp_color[0][1].val = (sub_color[0].val * 2.0 + sub_color[2].val + max_color.val * 2.0)/5.0;
interp_color[1][0].val = (sub_color[1].val * 2.0 + sub_color[2].val + max_color.val * 2.0)/5.0;
interp_color[1][1].val = (sub_color[1].val * 2.0 + sub_color[0].val + max_color.val * 2.0)/5.0;
interp_color[2][0].val = (sub_color[2].val * 2.0 + sub_color[0].val + max_color.val * 2.0)/5.0;
interp_color[2][1].val = (sub_color[2].val * 2.0 + sub_color[1].val + max_color.val * 2.0)/5.0;
//uint32_t n_avg = (uint32_t) 35.0 + (magnitude - 10.0)/25.0;
//uint32_t n_avg = 50;
//if (n_avg > 100) n_avg = 100;
for (i = 0; i < 10; i++) {
for (j = N_AVG - 1; j > 0; j--) {
color_array[i][j] = color_array[i][j-1];
}
}
color_array[0][0] = max_color;
color_hsv_t c_avg = average_color_hsv(color_array[0], N_AVG);
set_color_hsv_location(c_avg, 0, 3, 0);
set_color_hsv_location(c_avg, 1, 3, 0);
for (i = 0; i < 3; i++) {
color_array[i + 1][0] = sub_color[i];
c_avg = average_color_hsv(color_array[i + 1], N_AVG);
set_color_hsv_location(c_avg, 0, i, 2);
set_color_hsv_location(c_avg, 1, i, 2);
for (j = 0; j < 2; j++) {
color_array[2*i + j + 4][0] = interp_color[i][j];
c_avg = average_color_hsv(color_array[2*i + j + 4], N_AVG);
set_color_hsv_location(c_avg, 0, i, j);
set_color_hsv_location(c_avg, 1, i, j);
//set_color_hsv_location(interp_color[i][j], 0, i, j);
//set_color_hsv_location(interp_color[i][j], 1, i, j);
}
}
push_buffer_leds();
palTogglePad(GPIOA, GPIOA_RX1);
/*
for (i = 0; i < 4; i++) chprintf(USBout, "%D ", (uint64_t) bins[i]);
chprintf(USBout, "\r\n");
*/
}
>>>>>>> a5c8548d557bd4b8c81408fc0f7fc9f0e1099137
}
}
*/
/*
* Application entry point.
*/
int main(void) {
/*
* System initializations.
* - HAL initialization, this also initializes the configured device drivers
* and performs the board-specific initializations.
* - Kernel initialization, the main() function becomes a thread and the
* RTOS is active.
*/
halInit();
chSysInit();
/*
* Initializes a serial-over-USB CDC driver.
*/
sduObjectInit(&SDU1);
sduStart(&SDU1, &serusbcfg);
/*
* Activates the USB driver and then the USB bus pull-up on D+.
* Note, a delay is inserted in order to not have to disconnect the cable
* after a reset.
*/
usbDisconnectBus(serusbcfg.usbp);
chThdSleepMilliseconds(1500);
usbStart(serusbcfg.usbp, &usbcfg);
usbConnectBus(serusbcfg.usbp);
/*
* Initialize semaphore to indicate completed ADC conversion
*/
chBSemInit(&adc_complete, TRUE);
/*
<<<<<<< HEAD
* Initialize timer for i2c
=======
* Initialize led thread
>>>>>>> a5c8548d557bd4b8c81408fc0f7fc9f0e1099137
*/
gptStart(&GPTD1, &i2c_timer);
/*
* Starting the I2C driver 1.
*/
i2cStart(&I2CD1, &mpu9150_config);
/*
* Initialize LedDriver - 20 leds in chain, GPIOA pin 1
*/
led_driver_init(N_LEDS, GPIOA, gpio_pin1_mask, &o_fb);
<<<<<<< HEAD
uint8_t data[6];
color_rgb_t c;
bool success;
=======
//gptStart(&GPTD1, &gpt_adc_config);
//gptStartContinuous(&GPTD1, 25);
/*
* ADC Initialization
*/
adcStart(&ADCD3, NULL);
>>>>>>> a5c8548d557bd4b8c81408fc0f7fc9f0e1099137
/*
* Wake up mpu9150
*/
data[0] = 0x02;
<<<<<<< HEAD
success = mpu9150_write_register(0x6B, data, 1);
int i;
for (i = 0; i < N_LEDS; i++) {
led[i] = black;
set_color_rgb(black, o_fb + 24*i, gpio_pin1_mask);
}
while (TRUE) {
success = mpu9150_read_register(0x3B, data, 6);
if (!success) {
//int32_t r = (int32_t) data[0] << 8 | data[1];
//int32_t g = (int32_t) data[2] << 8 | data[3];
//int32_t b = (int32_t) data[4] << 8 | data[5];
int8_t r = (int8_t) data[0];
int8_t g = (int8_t) data[2];
int8_t b = (int8_t) data[4];
//if (r < 0) r *= -1;
//if (g < 0) g *= -1;
//if (b < 0) b *= -1;
if (r < 0) r = 0;
if (g < 0) g *= -1;
else g = 0;
if (b < 0) b = 0;
//c.red = r*255/32768;
//c.green = g*255/32768;
//c.blue = b*255/32768;
c.red = r/4;
c.green = g/4;
c.blue = b/4;
for (i = N_LEDS - 1; i > 0; i--) led[i] = led[i - 1];
led[0] = c;
}
for (i = 0; i < N_LEDS; i++) set_color_rgb_array(led[i], i);
push_buffer_leds();
//success = mpu9150_read_register(0x3B, data, 6);
//if (success) chprintf(USBout, "FAILED\t\t");
//else chprintf(USBout, "SUCCESS\t\t");
//chprintf(USBout, "x: %d\t", (int32_t) data[0] << 8 | data[1]);
//chprintf(USBout, "y: %d\t", (int32_t) data[2] << 8 | data[3]);
//chprintf(USBout, "z: %d\t", (int32_t) data[4] << 8 | data[5]);
//chprintf(USBout, "\r\n");
//chThdSleepMilliseconds(100);
}
=======
/*
* Activates the serial driver 1 using the driver default configuration.
* PA9(TX) and PA10(RX) are routed to USART1.
*/
//sdStart(&SD1, NULL);
//palSetPadMode(GPIOA, 9, PAL_MODE_ALTERNATE(7));
//palSetPadMode(GPIOA, 10, PAL_MODE_ALTERNATE(7));