-
Notifications
You must be signed in to change notification settings - Fork 8
/
.gitmodules
1503 lines (1501 loc) · 67.5 KB
/
.gitmodules
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
[submodule "stm32/AMP_PCB_Project"]
path = stm32/AMP_PCB_Project
url = https://github.com/HaoliangLi/AMP_PCB_Project.git
[submodule "stm32/pcb-covox-amp-v2"]
path = stm32/pcb-covox-amp-v2
url = https://github.com/yeokm1/pcb-covox-amp-v2.git
[submodule "stm32/PulseSensorAmped_Hardware"]
path = stm32/PulseSensorAmped_Hardware
url = https://github.com/WorldFamousElectronics/PulseSensorAmped_Hardware.git
[submodule "stm32/stm32"]
path = stm32/stm32
url = https://github.com/istarc/stm32.git
[submodule "stm32/AltiumDesigner_PcbLibrary"]
path = stm32/AltiumDesigner_PcbLibrary
url = https://github.com/KitSprout/AltiumDesigner_PcbLibrary.git
[submodule "stm32/Tailsitter_Brain"]
path = stm32/Tailsitter_Brain
url = https://github.com/AlexiLlaiho/Tailsitter_Brain.git
[submodule "stm32/SmartEnergyMeterv2"]
path = stm32/SmartEnergyMeterv2
url = https://github.com/logitek00/SmartEnergyMeterv2.git
[submodule "stm32/SEM_BMS"]
path = stm32/SEM_BMS
url = https://github.com/LoganHorowitz/SEM_BMS.git
[submodule "stm32/R3_Robot"]
path = stm32/R3_Robot
url = https://github.com/xmmemory/R3_Robot.git
[submodule "stm32/ODriveHardware"]
path = stm32/ODriveHardware
url = https://github.com/madcowswe/ODriveHardware.git
[submodule "stm32/My_PCB_Project_Github"]
path = stm32/My_PCB_Project_Github
url = https://github.com/Samwuzhitao/My_PCB_Project_Github.git
[submodule "stm32/Multi-interface-Sensor"]
path = stm32/Multi-interface-Sensor
url = https://github.com/hsonbk/Multi-interface-Sensor.git
[submodule "stm32/Laser-LED-STM-Board-Project"]
path = stm32/Laser-LED-STM-Board-Project
url = https://github.com/fxslava/Laser-LED-STM-Board-Project.git
[submodule "ESP32-Sense-Kit-Altium-Files"]
path = ESP32-Sense-Kit-Altium-Files
url = https://github.com/DigiMaxIO/ESP32-Sense-Kit-Altium-Files.git
[submodule "stm32/ESP32-Sense-Kit-Altium-Files"]
path = stm32/ESP32-Sense-Kit-Altium-Files
url = https://github.com/DigiMaxIO/ESP32-Sense-Kit-Altium-Files.git
[submodule "stm32/nixie-clock-esp32"]
path = stm32/nixie-clock-esp32
url = https://github.com/glynnmccabe/nixie-clock-esp32.git
[submodule "stm32/nixie-clock-IN14-adaptor"]
path = stm32/nixie-clock-IN14-adaptor
url = https://github.com/glynnmccabe/nixie-clock-IN14-adaptor.git
[submodule "stm32/Amper_PCB"]
path = stm32/Amper_PCB
url = https://github.com/eakhmadishin/Amper_PCB.git
[submodule "stm32/AnanasStepper2.0-hardware"]
path = stm32/AnanasStepper2.0-hardware
url = https://github.com/Dark-Guan/AnanasStepper2.0-hardware.git
[submodule "stm32/AnimalMonitoring"]
path = stm32/AnimalMonitoring
url = https://github.com/HaoliangLi/AnimalMonitoring.git
[submodule "stm32/Bee_Shaker"]
path = stm32/Bee_Shaker
url = https://github.com/LoganHorowitz/Bee_Shaker.git
[submodule "stm32/BIGTIFFANYRS"]
path = stm32/BIGTIFFANYRS
url = https://github.com/waviot/BIGTIFFANYRS.git
[submodule "stm32/BLDC_PCB"]
path = stm32/BLDC_PCB
url = https://github.com/bauman-robotics/BLDC_PCB.git
[submodule "stm32/BLDC-control_SM7"]
path = stm32/BLDC-control_SM7
url = https://github.com/bauman-robotics/BLDC-control_SM7.git
[submodule "stm32/Delta-Robot"]
path = stm32/Delta-Robot
url = https://github.com/Dark-Guan/Delta-Robot.git
[submodule "stm32/DFMiniMp3"]
path = stm32/DFMiniMp3
url = https://github.com/LoganHorowitz/DFMiniMp3.git
[submodule "stm32/DT_Altium"]
path = stm32/DT_Altium
url = https://github.com/dinhthong/DT_Altium.git
[submodule "stm32/DT_Arduino"]
path = stm32/DT_Arduino
url = https://github.com/dinhthong/DT_Arduino.git
[submodule "stm32/ece3400-2017"]
path = stm32/ece3400-2017
url = https://github.com/CEI-lab/ece3400-2017.git
[submodule "stm32/ECE3400-2017-teamAlpha"]
path = stm32/ECE3400-2017-teamAlpha
url = https://github.com/CEI-lab/ECE3400-2017-teamAlpha.git
[submodule "stm32/ece3400-2018"]
path = stm32/ece3400-2018
url = https://github.com/CEI-lab/ece3400-2018.git
[submodule "stm32/Flyback_LowPower"]
path = stm32/Flyback_LowPower
url = https://github.com/LoganHorowitz/Flyback_LowPower.git
[submodule "stm32/Inchworm_v0"]
path = stm32/Inchworm_v0
url = https://github.com/LoganHorowitz/Inchworm_v0.git
[submodule "stm32/Buck_Horn"]
path = stm32/Buck_Horn
url = https://github.com/LoganHorowitz/Buck_Horn.git
[submodule "stm32/SEM_DAQ_2018"]
path = stm32/SEM_DAQ_2018
url = https://github.com/LoganHorowitz/SEM_DAQ_2018.git
[submodule "stm32/MultiBot-MultipurposeRobot"]
path = stm32/MultiBot-MultipurposeRobot
url = https://github.com/OskOnu/MultiBot-MultipurposeRobot.git
[submodule "stm32/NBFi_AX5043"]
path = stm32/NBFi_AX5043
url = https://github.com/waviot/NBFi_AX5043.git
[submodule "stm32/qbcan-resources"]
path = stm32/qbcan-resources
url = https://github.com/opencosmos/qbcan-resources.git
[submodule "stm32/SEM_DAQ_2019"]
path = stm32/SEM_DAQ_2019
url = https://github.com/LoganHorowitz/SEM_DAQ_2019.git
[submodule "stm32/STM32_Platform"]
path = stm32/STM32_Platform
url = https://github.com/JUMA-IO/STM32_Platform.git
[submodule "stm32/Stress-Monitor-Based-on-NB-IoT"]
path = stm32/Stress-Monitor-Based-on-NB-IoT
url = https://github.com/Neyzoter/Stress-Monitor-Based-on-NB-IoT.git
[submodule "stm32/WPT_RX"]
path = stm32/WPT_RX
url = https://github.com/LoganHorowitz/WPT_RX.git
[submodule "PCB-multi-layer/AX5243_module"]
path = PCB-multi-layer/AX5243_module
url = https://github.com/2ftg/AX5243_module
[submodule "PCB-multi-layer/micromicroUSBuart"]
path = PCB-multi-layer/micromicroUSBuart
url = https://github.com/2ftg/micromicroUSBuart
[submodule "PCB-multi-layer/2GHz_TDD_Driver"]
path = PCB-multi-layer/2GHz_TDD_Driver
url = https://github.com/2ftg/2GHz_TDD_Driver
[submodule "PCB-multi-layer/solenshardware"]
path = PCB-multi-layer/solenshardware
url = https://github.com/fluffylogiccu/solenshardware
[submodule "PCB-multi-layer/Light-Sensor-Node-Hardware"]
path = PCB-multi-layer/Light-Sensor-Node-Hardware
url = https://github.com/MegaFatGray/Light-Sensor-Node-Hardware
[submodule "PCB-multi-layer/103091_B0"]
path = PCB-multi-layer/103091_B0
url = https://github.com/dhahaj/103091_B0
[submodule "PCB-multi-layer/DIN-Rails-Mounts"]
path = PCB-multi-layer/DIN-Rails-Mounts
url = https://github.com/dhahaj/DIN-Rails-Mounts
[submodule "PCB-multi-layer/pywtl"]
path = PCB-multi-layer/pywtl
url = https://github.com/adamjohngilbert/pywtl
[submodule "PCB-multi-layer/Telit-GPS-SL871-Module"]
path = PCB-multi-layer/Telit-GPS-SL871-Module
url = https://github.com/ugurozkan52/Telit-GPS-SL871-Module
[submodule "PCB-multi-layer/Raspberry-Pi-3-Altium-Template"]
path = PCB-multi-layer/Raspberry-Pi-3-Altium-Template
url = https://github.com/NilsMinor/Raspberry-Pi-3-Altium-Template
[submodule "PCB-multi-layer/Raspberry-Pi-3-Arduino-Altium-Shield"]
path = PCB-multi-layer/Raspberry-Pi-3-Arduino-Altium-Shield
url = https://github.com/NilsMinor/Raspberry-Pi-3-Arduino-Altium-Shield
[submodule "PCB-multi-layer/main_pcb"]
path = PCB-multi-layer/main_pcb
url = https://github.com/kocsislaci/main_pcb
[submodule "PCB-multi-layer/signal_gen"]
path = PCB-multi-layer/signal_gen
url = https://github.com/Pinwino/signal_gen
[submodule "PCB-multi-layer/Altium-Github-Repo-beaud082"]
path = PCB-multi-layer/Altium-Github-Repo-beaud082
url = https://github.com/beaud082/Altium-Github-Repo-beaud082
[submodule "PCB-multi-layer/Altium-Project"]
path = PCB-multi-layer/Altium-Project
url = https://github.com/LuongTanDat/Altium-Project
[submodule "PCB-multi-layer/MMP8266"]
path = PCB-multi-layer/MMP8266
url = https://github.com/lanzhou2333/MMP8266
[submodule "PCB-multi-layer/ebug2014-pcb"]
path = PCB-multi-layer/ebug2014-pcb
url = https://github.com/monash-wsrn/ebug2014-pcb
[submodule "PCB-multi-layer/ebug2014-parallella-carrier-v-pcb"]
path = PCB-multi-layer/ebug2014-parallella-carrier-v-pcb
url = https://github.com/monash-wsrn/ebug2014-parallella-carrier-v-pcb
[submodule "PCB-multi-layer/ebug2014-parallella-carrier-h-pcb"]
path = PCB-multi-layer/ebug2014-parallella-carrier-h-pcb
url = https://github.com/monash-wsrn/ebug2014-parallella-carrier-h-pcb
[submodule "PCB-multi-layer/ebug2014-camera-array-pcb"]
path = PCB-multi-layer/ebug2014-camera-array-pcb
url = https://github.com/monash-wsrn/ebug2014-camera-array-pcb
[submodule "PCB-multi-layer/TTAmp"]
path = PCB-multi-layer/TTAmp
url = https://github.com/CannaCardo/TTAmp
[submodule "PCB-multi-layer/JBC-Soldering-Controller"]
path = PCB-multi-layer/JBC-Soldering-Controller
url = https://github.com/timothyjager/JBC-Soldering-Controller
[submodule "PCB-multi-layer/CubeSatPCB"]
path = PCB-multi-layer/CubeSatPCB
url = https://github.com/bluesat/CubeSatPCB
[submodule "PCB-multi-layer/ConnectMedical"]
path = PCB-multi-layer/ConnectMedical
url = https://github.com/Engineer1234/ConnectMedical
[submodule "PCB-multi-layer/mitosis_with_case"]
path = PCB-multi-layer/mitosis_with_case
url = https://github.com/nhou7/mitosis_with_case
[submodule "PCB-multi-layer/OALCT-LX100"]
path = PCB-multi-layer/OALCT-LX100
url = https://github.com/andrewpeck/OALCT-LX100
[submodule "PCB-multi-layer/rf-19-can-module"]
path = PCB-multi-layer/rf-19-can-module
url = https://github.com/tzai/rf-19-can-module
[submodule "PCB-multi-layer/electronics-thymio2-rf"]
path = PCB-multi-layer/electronics-thymio2-rf
url = https://github.com/Mobsya/electronics-thymio2-rf
[submodule "PCB-multi-layer/Altium-Projects"]
path = PCB-multi-layer/Altium-Projects
url = https://github.com/robbiesm/Altium-Projects
[submodule "PCB-multi-layer/Altuim-Projecs"]
path = PCB-multi-layer/Altuim-Projecs
url = https://github.com/robbiesm/Altuim-Projecs
[submodule "PCB-multi-layer/BTS"]
path = PCB-multi-layer/BTS
url = https://github.com/ngoquytuan/BTS
[submodule "PCB-multi-layer/thesis"]
path = PCB-multi-layer/thesis
url = https://github.com/TuanHungVU1202/thesis
[submodule "PCB-multi-layer/DenDaChien"]
path = PCB-multi-layer/DenDaChien
url = https://github.com/ngoquytuan/DenDaChien
[submodule "PCB-multi-layer/Electronic_project"]
path = PCB-multi-layer/Electronic_project
url = https://github.com/fherbine/Electronic_project
[submodule "PCB-multi-layer/AIO-Shield"]
path = PCB-multi-layer/AIO-Shield
url = https://github.com/AIO-Javeriana/AIO-Shield
[submodule "PCB-multi-layer/Altium-Workspace"]
path = PCB-multi-layer/Altium-Workspace
url = https://github.com/samuelwilliams413/Altium-Workspace
[submodule "PCB-multi-layer/tvws_pcb_projects"]
path = PCB-multi-layer/tvws_pcb_projects
url = https://github.com/RyanEGuerra/tvws_pcb_projects
[submodule "stm32/Rodent_v1.0"]
path = stm32/Rodent_v1.0
url = https://github.com/OskOnu/Rodent_v1.0.git
[submodule "stm32/Kiwino"]
path = stm32/Kiwino
url = https://github.com/LoganHorowitz/Kiwino.git
[submodule "PCB-multi-layer/GNC_Project"]
path = PCB-multi-layer/GNC_Project
url = https://github.com/ugurozkan52/GNC_Project.git
[submodule "PCB-multi-layer/Metlino"]
path = PCB-multi-layer/Metlino
url = https://github.com/sinara-hw/Metlino.git
[submodule "PCB-multi-layer/Thermostat"]
path = PCB-multi-layer/Thermostat
url = https://github.com/sinara-hw/Thermostat.git
[submodule "PCB-multi-layer/thermostat_thorlabs"]
path = PCB-multi-layer/thermostat_thorlabs
url = https://github.com/sinara-hw/thermostat_thorlabs.git
[submodule "PCB-multi-layer/Banker_EDGE_2_BNC"]
path = PCB-multi-layer/Banker_EDGE_2_BNC
url = https://github.com/sinara-hw/Banker_EDGE_2_BNC.git
[submodule "PCB-multi-layer/Banker_EDGE_2_SMA"]
path = PCB-multi-layer/Banker_EDGE_2_SMA
url = https://github.com/sinara-hw/Banker_EDGE_2_SMA.git
[submodule "PCB-multi-layer/Banker_VHDCI_2_EDGE"]
path = PCB-multi-layer/Banker_VHDCI_2_EDGE
url = https://github.com/sinara-hw/Banker_VHDCI_2_EDGE.git
[submodule "PCB-multi-layer/Banker_VHDCI_2_EDGE_Buffered"]
path = PCB-multi-layer/Banker_VHDCI_2_EDGE_Buffered
url = https://github.com/sinara-hw/Banker_VHDCI_2_EDGE_Buffered.git
[submodule "PCB-multi-layer/DIO_BNC"]
path = PCB-multi-layer/DIO_BNC
url = https://github.com/sinara-hw/DIO_BNC.git
[submodule "PCB-multi-layer/Grabber"]
path = PCB-multi-layer/Grabber
url = https://github.com/sinara-hw/Grabber.git
[submodule "PCB-multi-layer/BNC_IDC"]
path = PCB-multi-layer/BNC_IDC
url = https://github.com/sinara-hw/BNC_IDC.git
[submodule "PCB-multi-layer/DIO_SMA"]
path = PCB-multi-layer/DIO_SMA
url = https://github.com/sinara-hw/DIO_SMA.git
[submodule "PCB-multi-layer/DIO_RJ45"]
path = PCB-multi-layer/DIO_RJ45
url = https://github.com/sinara-hw/DIO_RJ45.git
[submodule "PCB-multi-layer/Clocker"]
path = PCB-multi-layer/Clocker
url = https://github.com/sinara-hw/Clocker.git
[submodule "PCB-multi-layer/AFCZ"]
path = PCB-multi-layer/AFCZ
url = https://github.com/elhep/AFCZ.git
[submodule "PCB-multi-layer/SpaceVPX_FMC_Carrier_3U"]
path = PCB-multi-layer/SpaceVPX_FMC_Carrier_3U
url = https://github.com/elhep/SpaceVPX_FMC_Carrier_3U.git
[submodule "PCB-multi-layer/SpaceVPX_FMC_Carrier_6U"]
path = PCB-multi-layer/SpaceVPX_FMC_Carrier_6U
url = https://github.com/elhep/SpaceVPX_FMC_Carrier_6U.git
[submodule "PCB-multi-layer/SiPM_AFE"]
path = PCB-multi-layer/SiPM_AFE
url = https://github.com/elhep/SiPM_AFE.git
[submodule "PCB-multi-layer/XMC_ZynQ"]
path = PCB-multi-layer/XMC_ZynQ
url = https://github.com/elhep/XMC_ZynQ.git
[submodule "PCB-multi-layer/FMC_ADC100M_10B_TDC_16cha"]
path = PCB-multi-layer/FMC_ADC100M_10B_TDC_16cha
url = https://github.com/elhep/FMC_ADC100M_10B_TDC_16cha.git
[submodule "PCB-multi-layer/MCORD_HUB"]
path = PCB-multi-layer/MCORD_HUB
url = https://github.com/elhep/MCORD_HUB
[submodule "PCB-multi-layer/RTM_4SFP_3QSFP"]
path = PCB-multi-layer/RTM_4SFP_3QSFP
url = https://github.com/elhep/RTM_4SFP_3QSFP
[submodule "PCB-multi-layer/FMC_SDR"]
path = PCB-multi-layer/FMC_SDR
url = https://github.com/elhep/FMC_SDR
[submodule "PCB-multi-layer/FMC_ADC_4CHA_1G_12B"]
path = PCB-multi-layer/FMC_ADC_4CHA_1G_12B
url = https://github.com/elhep/FMC_ADC_4CHA_1G_12B
[submodule "PCB-multi-layer/MicroTCA-chassis"]
path = PCB-multi-layer/MicroTCA-chassis
url = https://github.com/elhep/MicroTCA-chassis
[submodule "PCB-multi-layer/RFID_reader"]
path = PCB-multi-layer/RFID_reader
url = https://github.com/elhep/RFID_reader
[submodule "PCB-multi-layer/CMOS_Camera"]
path = PCB-multi-layer/CMOS_Camera
url = https://github.com/elhep/CMOS_Camera
[submodule "PCB-multi-layer/Crativity-House"]
path = PCB-multi-layer/Crativity-House
url = https://github.com/Ehsan2754/Crativity-House
[submodule "PCB-multi-layer/rendszerterv"]
path = PCB-multi-layer/rendszerterv
url = https://github.com/kocsislaci/rendszerterv
[submodule "PCB-multi-layer/BREAD-MACHINE-II"]
path = PCB-multi-layer/BREAD-MACHINE-II
url = https://github.com/RAKKOUCHE/BREAD-MACHINE-II
[submodule "PCB-multi-layer/ATMB"]
path = PCB-multi-layer/ATMB
url = https://github.com/RAKKOUCHE/ATMB
[submodule "PCB-multi-layer/Altium-Designs"]
path = PCB-multi-layer/Altium-Designs
url = https://github.com/CalPolyFSAE/Altium-Designs
[submodule "PCB-multi-layer/altlib19"]
path = PCB-multi-layer/altlib19
url = https://github.com/CalPolyFSAE/altlib19
[submodule "PCB-multi-layer/CalPolyFSAE-Altium-Library"]
path = PCB-multi-layer/CalPolyFSAE-Altium-Library
url = https://github.com/CalPolyFSAE/Altium-Library
[submodule "PCB-multi-layer/SmartLED"]
path = PCB-multi-layer/SmartLED
url = https://github.com/RLews/SmartLED
[submodule "PCB-multi-layer/SMP"]
path = PCB-multi-layer/SMP
url = https://github.com/nhamtung/SMP
[submodule "PCB-multi-layer/Sayma_AMC"]
path = PCB-multi-layer/Sayma_AMC
url = https://github.com/sinara-hw/Sayma_AMC
[submodule "PCB-multi-layer/Shuttler"]
path = PCB-multi-layer/Shuttler
url = https://github.com/sinara-hw/Shuttler
[submodule "PCB-multi-layer/Humpback"]
path = PCB-multi-layer/Humpback
url = https://github.com/sinara-hw/Humpback
[submodule "PCB-multi-layer/SMA_IDC_Adapter"]
path = PCB-multi-layer/SMA_IDC_Adapter
url = https://github.com/sinara-hw/SMA_IDC_Adapter
[submodule "PCB-multi-layer/Banker_EDGE_2_DSUB"]
path = PCB-multi-layer/Banker_EDGE_2_DSUB
url = https://github.com/sinara-hw/Banker_EDGE_2_DSUB
[submodule "PCB-multi-layer/SafeTech"]
path = PCB-multi-layer/SafeTech
url = https://github.com/UrbanSmartGrid/SafeTech
[submodule "PCB-multi-layer/3u-module"]
path = PCB-multi-layer/3u-module
url = https://github.com/ashandore/3u-module
[submodule "PCB-multi-layer/AD_LIB"]
path = PCB-multi-layer/AD_LIB
url = https://github.com/UrbanSmartGrid/AD_LIB
[submodule "PCB-multi-layer/hwlibs-svn-test"]
path = PCB-multi-layer/hwlibs-svn-test
url = https://github.com/ashandore/hwlibs-svn-test
[submodule "PCB-multi-layer/eva01"]
path = PCB-multi-layer/eva01
url = https://github.com/DevelBoard/eva01
[submodule "PCB-multi-layer/ADS129x"]
path = PCB-multi-layer/ADS129x
url = https://github.com/boichonoc/ADS129x
[submodule "PCB-multi-layer/Industerial-Design"]
path = PCB-multi-layer/Industerial-Design
url = https://github.com/Ehsan2754/Industerial-Design
[submodule "PCB-multi-layer/Stabilizer"]
path = PCB-multi-layer/Stabilizer
url = https://github.com/sinara-hw/Stabilizer
[submodule "PCB-multi-layer/PDU-UV19"]
path = PCB-multi-layer/PDU-UV19
url = https://github.com/eldinmiller/PDU-UV19
[submodule "PCB-multi-layer/old-uscauv-pcb"]
path = PCB-multi-layer/old-uscauv-pcb
url = https://github.com/uscauv-legacy/old-uscauv-pcb
[submodule "PCB-multi-layer/hardware"]
path = PCB-multi-layer/hardware
url = https://github.com/uw-midsun/hardware
[submodule "PCB-multi-layer/si446x"]
path = PCB-multi-layer/si446x
url = https://github.com/sixtemesseven/si446x
[submodule "PCB-multi-layer/VIO_Camera_module"]
path = PCB-multi-layer/VIO_Camera_module
url = https://github.com/aras-cdrpm-projects/VIO_Camera_module
[submodule "PCB-multi-layer/orient"]
path = PCB-multi-layer/orient
url = https://github.com/dmwo/orient
[submodule "PCB-multi-layer/stm32f103x"]
path = PCB-multi-layer/stm32f103x
url = https://github.com/Hongranl/stm32f103x
[submodule "PCB-multi-layer/BLDCBot"]
path = PCB-multi-layer/BLDCBot
url = https://github.com/VasiliyPodlesniy/BLDCBot
[submodule "PCB-multi-layer/CutMonitor"]
path = PCB-multi-layer/CutMonitor
url = https://github.com/VasiliyPodlesniy/CutMonitor
[submodule "PCB-multi-layer/BLDCi2cBot"]
path = PCB-multi-layer/BLDCi2cBot
url = https://github.com/VasiliyPodlesniy/BLDCi2cBot
[submodule "PCB-multi-layer/AmplifierDclass"]
path = PCB-multi-layer/AmplifierDclass
url = https://github.com/VasiliyPodlesniy/AmplifierDclass
[submodule "PCB-multi-layer/ServoBoard"]
path = PCB-multi-layer/ServoBoard
url = https://github.com/VasiliyPodlesniy/ServoBoard
[submodule "PCB-multi-layer/PowerBoard"]
path = PCB-multi-layer/PowerBoard
url = https://github.com/VasiliyPodlesniy/PowerBoard
[submodule "PCB-multi-layer/InterfaceBoard"]
path = PCB-multi-layer/InterfaceBoard
url = https://github.com/VasiliyPodlesniy/InterfaceBoard
[submodule "PCB-multi-layer/BLDCSuperBot"]
path = PCB-multi-layer/BLDCSuperBot
url = https://github.com/VasiliyPodlesniy/BLDCSuperBot
[submodule "PCB-multi-layer/WirelessHeadphone"]
path = PCB-multi-layer/WirelessHeadphone
url = https://github.com/VasiliyPodlesniy/WirelessHeadphone
[submodule "PCB-multi-layer/HallCommutator"]
path = PCB-multi-layer/HallCommutator
url = https://github.com/VasiliyPodlesniy/HallCommutator
[submodule "PCB-multi-layer/ADCduinoModule"]
path = PCB-multi-layer/ADCduinoModule
url = https://github.com/VasiliyPodlesniy/ADCduinoModule
[submodule "PCB-multi-layer/GeneRduinoModule"]
path = PCB-multi-layer/GeneRduinoModule
url = https://github.com/VasiliyPodlesniy/GeneRduinoModule
[submodule "PCB-multi-layer/HallduinoModule"]
path = PCB-multi-layer/HallduinoModule
url = https://github.com/VasiliyPodlesniy/HallduinoModule
[submodule "PCB-multi-layer/RemoteControllerSchool"]
path = PCB-multi-layer/RemoteControllerSchool
url = https://github.com/VasiliyPodlesniy/RemoteControllerSchool
[submodule "PCB-multi-layer/USBINFRTransiever"]
path = PCB-multi-layer/USBINFRTransiever
url = https://github.com/VasiliyPodlesniy/USBINFRTransiever
[submodule "PCB-multi-layer/EduBot"]
path = PCB-multi-layer/EduBot
url = https://github.com/VasiliyPodlesniy/EduBot
[submodule "PCB-multi-layer/CupRTCGift"]
path = PCB-multi-layer/CupRTCGift
url = https://github.com/VasiliyPodlesniy/CupRTCGift
[submodule "PCB-multi-layer/DevBoardStmF105"]
path = PCB-multi-layer/DevBoardStmF105
url = https://github.com/VasiliyPodlesniy/DevBoardStmF105
[submodule "PCB-multi-layer/PoligonController"]
path = PCB-multi-layer/PoligonController
url = https://github.com/VasiliyPodlesniy/PoligonController
[submodule "PCB-multi-layer/AgroBot"]
path = PCB-multi-layer/AgroBot
url = https://github.com/VasiliyPodlesniy/AgroBot
[submodule "PCB-multi-layer/AgroBot_Manufacture"]
path = PCB-multi-layer/AgroBot_Manufacture
url = https://github.com/VasiliyPodlesniy/AgroBot_Manufacture
[submodule "PCB-multi-layer/DSPlabwork"]
path = PCB-multi-layer/DSPlabwork
url = https://github.com/VasiliyPodlesniy/DSPlabwork
[submodule "PCB-multi-layer/JohnyMotorDriver"]
path = PCB-multi-layer/JohnyMotorDriver
url = https://github.com/VasiliyPodlesniy/JohnyMotorDriver
[submodule "PCB-multi-layer/ServoBot"]
path = PCB-multi-layer/ServoBot
url = https://github.com/VasiliyPodlesniy/ServoBot
[submodule "PCB-multi-layer/DisplayReceiver"]
path = PCB-multi-layer/DisplayReceiver
url = https://github.com/VasiliyPodlesniy/DisplayReceiver
[submodule "PCB-multi-layer/RemoteControllerRTC"]
path = PCB-multi-layer/RemoteControllerRTC
url = https://github.com/VasiliyPodlesniy/RemoteControllerRTC
[submodule "PCB-multi-layer/PainRegister"]
path = PCB-multi-layer/PainRegister
url = https://github.com/VasiliyPodlesniy/PainRegister
[submodule "PCB-multi-layer/Motor-driver-high-power"]
path = PCB-multi-layer/Motor-driver-high-power
url = https://github.com/zhangxin0518/Motor-driver-high-power
[submodule "PCB-multi-layer/DSO"]
path = PCB-multi-layer/DSO
url = https://github.com/BillYJT/DSO
[submodule "PCB-multi-layer/micro_card"]
path = PCB-multi-layer/micro_card
url = https://github.com/MUEEC/micro_card
[submodule "PCB-multi-layer/Motor-driver-low-power"]
path = PCB-multi-layer/Motor-driver-low-power
url = https://github.com/zhangxin0518/Motor-driver-low-power
[submodule "PCB-multi-layer/AD_library"]
path = PCB-multi-layer/AD_library
url = https://github.com/SerhiiBond/AD_library
[submodule "PCB-multi-layer/R100_BOARDS"]
path = PCB-multi-layer/R100_BOARDS
url = https://github.com/SerhiiBond/R100_BOARDS
[submodule "PCB-multi-layer/OpenSourcePowerElectronics-HW-Thyristor-2019"]
path = PCB-multi-layer/OpenSourcePowerElectronics-HW-Thyristor-2019
url = https://github.com/LEP-PEA-EPUSP/OpenSourcePowerElectronics-HW-Thyristor-2019
[submodule "PCB-multi-layer/OpenSourcePowerElectronics-HW-Inverter-2016"]
path = PCB-multi-layer/OpenSourcePowerElectronics-HW-Inverter-2016
url = https://github.com/LEP-PEA-EPUSP/OpenSourcePowerElectronics-HW-Inverter-2016
[submodule "PCB-multi-layer/OpenSourcePowerElectronics-SW-CurrentControlLoop-2018"]
path = PCB-multi-layer/OpenSourcePowerElectronics-SW-CurrentControlLoop-2018
url = https://github.com/LEP-PEA-EPUSP/OpenSourcePowerElectronics-SW-CurrentControlLoop-2018
[submodule "PCB-multi-layer/OpenSourcePowerElectronics-HW-OpticalInterface-2018"]
path = PCB-multi-layer/OpenSourcePowerElectronics-HW-OpticalInterface-2018
url = https://github.com/LEP-PEA-EPUSP/OpenSourcePowerElectronics-HW-OpticalInterface-2018
[submodule "PCB-multi-layer/OpenSourcePowerElectronics-HW-VoltageSensor-2018"]
path = PCB-multi-layer/OpenSourcePowerElectronics-HW-VoltageSensor-2018
url = https://github.com/LEP-PEA-EPUSP/OpenSourcePowerElectronics-HW-VoltageSensor-2018
[submodule "PCB-multi-layer/OpenSourcePowerElectronics-SW-Inverter-UserInterface-2017"]
path = PCB-multi-layer/OpenSourcePowerElectronics-SW-Inverter-UserInterface-2017
url = https://github.com/LEP-PEA-EPUSP/OpenSourcePowerElectronics-SW-Inverter-UserInterface-2017
[submodule "PCB-multi-layer/OpenSourcePowerElectronics-SW-Tests-2018"]
path = PCB-multi-layer/OpenSourcePowerElectronics-SW-Tests-2018
url = https://github.com/LEP-PEA-EPUSP/OpenSourcePowerElectronics-SW-Tests-2018
[submodule "PCB-multi-layer/OpenSourcePowerElectronics-HW-Filter-2018"]
path = PCB-multi-layer/OpenSourcePowerElectronics-HW-Filter-2018
url = https://github.com/LEP-PEA-EPUSP/OpenSourcePowerElectronics-HW-Filter-2018
[submodule "PCB-multi-layer/Tegra_TX1_Dual_Camera"]
path = PCB-multi-layer/Tegra_TX1_Dual_Camera
url = https://github.com/MRazgunas/Tegra_TX1_Dual_Camera
[submodule "PCB-multi-layer/Expansion-Board-WaRP7"]
path = PCB-multi-layer/Expansion-Board-WaRP7
url = https://github.com/jorisoffouga/Expansion-Board-WaRP7
[submodule "PCB-multi-layer/QT_STM32_Oscilloscope"]
path = PCB-multi-layer/QT_STM32_Oscilloscope
url = https://github.com/aloismiclo/QT_STM32_Oscilloscope
[submodule "PCB-multi-layer/HRI-hand-firmware"]
path = PCB-multi-layer/HRI-hand-firmware
url = https://github.com/MrLacquer/HRI-hand-firmware
[submodule "PCB-multi-layer/IMX7S_Design"]
path = PCB-multi-layer/IMX7S_Design
url = https://github.com/aloismiclo/IMX7S_Design
[submodule "PCB-multi-layer/3D-printer-board"]
path = PCB-multi-layer/3D-printer-board
url = https://github.com/louiscklaw/3D-printer-board
[submodule "PCB-multi-layer/Schematic"]
path = PCB-multi-layer/Schematic
url = https://github.com/zhangcaocao/Schematic
[submodule "PCB-multi-layer/SmartBlood_PCB"]
path = PCB-multi-layer/SmartBlood_PCB
url = https://github.com/danielmonleonguerrero/SmartBlood_PCB
[submodule "PCB-multi-layer/2017-designs"]
path = PCB-multi-layer/2017-designs
url = https://github.com/glocklueng/2017-designs
[submodule "PCB-multi-layer/ME218Projects"]
path = PCB-multi-layer/ME218Projects
url = https://github.com/navjot95/ME218Projects
[submodule "PCB-multi-layer/Matrix"]
path = PCB-multi-layer/Matrix
url = https://github.com/Che1012/Matrix
[submodule "PCB-multi-layer/Electrical"]
path = PCB-multi-layer/Electrical
url = https://github.com/UBC-Thunderbots/Electrical
[submodule "PCB-multi-layer/EnvControl-Hardware"]
path = PCB-multi-layer/EnvControl-Hardware
url = https://github.com/ly0koS/EnvControl-Hardware
[submodule "PCB-multi-layer/EnvControl-Software"]
path = PCB-multi-layer/EnvControl-Software
url = https://github.com/ly0koS/EnvControl-Software
[submodule "PCB-multi-layer/Esperto-Labs"]
path = PCB-multi-layer/Esperto-Labs
url = https://github.com/danieldeesousa/Esperto-Labs
[submodule "PCB-multi-layer/MINI_SCADA_PCB"]
path = PCB-multi-layer/MINI_SCADA_PCB
url = https://github.com/ARoozitalab/MINI_SCADA_PCB
[submodule "PCB-multi-layer/STM32F4-Eval-board"]
path = PCB-multi-layer/STM32F4-Eval-board
url = https://github.com/ARoozitalab/STM32F4-Eval-board
[submodule "PCB-multi-layer/STPM01-STPM10_PCB"]
path = PCB-multi-layer/STPM01-STPM10_PCB
url = https://github.com/ARoozitalab/STPM01-STPM10_PCB
[submodule "PCB-multi-layer/Desktop-H743-Feedback"]
path = PCB-multi-layer/Desktop-H743-Feedback
url = https://github.com/jackw2050/Desktop-H743-Feedback
[submodule "PCB-multi-layer/DSO2019"]
path = PCB-multi-layer/DSO2019
url = https://github.com/relientm96/DSO2019
[submodule "PCB-multi-layer/QUTMS_ShutdownBoard_V2"]
path = PCB-multi-layer/QUTMS_ShutdownBoard_V2
url = https://github.com/QUT-Motorsport/QUTMS_ShutdownBoard_V2
[submodule "PCB-multi-layer/QUTMS_HVBoard"]
path = PCB-multi-layer/QUTMS_HVBoard
url = https://github.com/QUT-Motorsport/QUTMS_HVBoard
[submodule "PCB-multi-layer/QUTMS_RadioPod"]
path = PCB-multi-layer/QUTMS_RadioPod
url = https://github.com/QUT-Motorsport/QUTMS_RadioPod
[submodule "PCB-multi-layer/QUTMS_SteeringWheel"]
path = PCB-multi-layer/QUTMS_SteeringWheel
url = https://github.com/QUT-Motorsport/QUTMS_SteeringWheel
[submodule "PCB-multi-layer/QUTMS_AMU_V2"]
path = PCB-multi-layer/QUTMS_AMU_V2
url = https://github.com/QUT-Motorsport/QUTMS_AMU_V2
[submodule "PCB-multi-layer/QUTMS_BatteryCharger"]
path = PCB-multi-layer/QUTMS_BatteryCharger
url = https://github.com/QUT-Motorsport/QUTMS_BatteryCharger
[submodule "PCB-multi-layer/QUTMS_BMS"]
path = PCB-multi-layer/QUTMS_BMS
url = https://github.com/QUT-Motorsport/QUTMS_BMS
[submodule "PCB-multi-layer/QUTMS_RadioPod_V2"]
path = PCB-multi-layer/QUTMS_RadioPod_V2
url = https://github.com/QUT-Motorsport/QUTMS_RadioPod_V2
[submodule "PCB-multi-layer/QUTMS_BrakeLight"]
path = PCB-multi-layer/QUTMS_BrakeLight
url = https://github.com/QUT-Motorsport/QUTMS_BrakeLight
[submodule "PCB-multi-layer/QUTMS_TSAL_V2"]
path = PCB-multi-layer/QUTMS_TSAL_V2
url = https://github.com/QUT-Motorsport/QUTMS_TSAL_V2
[submodule "PCB-multi-layer/QUTMS_ChassisController"]
path = PCB-multi-layer/QUTMS_ChassisController
url = https://github.com/QUT-Motorsport/QUTMS_ChassisController
[submodule "PCB-multi-layer/QUTMS_PDM"]
path = PCB-multi-layer/QUTMS_PDM
url = https://github.com/QUT-Motorsport/QUTMS_PDM
[submodule "PCB-multi-layer/QUTMS_CANLogger"]
path = PCB-multi-layer/QUTMS_CANLogger
url = https://github.com/QUT-Motorsport/QUTMS_CANLogger
[submodule "PCB-multi-layer/QUTMS_OzanneDataCollection"]
path = PCB-multi-layer/QUTMS_OzanneDataCollection
url = https://github.com/QUT-Motorsport/QUTMS_OzanneDataCollection
[submodule "PCB-multi-layer/QUTMS_Master"]
path = PCB-multi-layer/QUTMS_Master
url = https://github.com/QUT-Motorsport/QUTMS_Master
[submodule "PCB-multi-layer/QUTMS_Windows_V1"]
path = PCB-multi-layer/QUTMS_Windows_V1
url = https://github.com/QUT-Motorsport/QUTMS_Windows_V1
[submodule "PCB-multi-layer/egh456_3-phase-motor"]
path = PCB-multi-layer/egh456_3-phase-motor
url = https://github.com/azoz158/egh456_3-phase-motor
[submodule "PCB-multi-layer/QUT_EGB220"]
path = PCB-multi-layer/QUT_EGB220
url = https://github.com/crazy-calypso/QUT_EGB220
[submodule "PCB-multi-layer/QUT_EGH456"]
path = PCB-multi-layer/QUT_EGH456
url = https://github.com/crazy-calypso/QUT_EGH456
[submodule "PCB-multi-layer/phywhispererusb"]
path = PCB-multi-layer/phywhispererusb
url = https://github.com/newaetech/phywhispererusb
[submodule "PCB-multi-layer/QUTMS_ChassisController_V2"]
path = PCB-multi-layer/QUTMS_ChassisController_V2
url = https://github.com/QUT-Motorsport/QUTMS_ChassisController_V2
[submodule "PCB-multi-layer/QUTMS_PCB_Ruler"]
path = PCB-multi-layer/QUTMS_PCB_Ruler
url = https://github.com/QUT-Motorsport/QUTMS_PCB_Ruler
[submodule "PCB-multi-layer/audio_interface"]
path = PCB-multi-layer/audio_interface
url = https://github.com/pablo0722/audio_interface
[submodule "PCB-multi-layer/QUTMS_Altium_Resources"]
path = PCB-multi-layer/QUTMS_Altium_Resources
url = https://github.com/QUT-Motorsport/QUTMS_Altium_Resources
[submodule "PCB-multi-layer/QUTMS_PDM_V2"]
path = PCB-multi-layer/QUTMS_PDM_V2
url = https://github.com/QUT-Motorsport/QUTMS_PDM_V2
[submodule "PCB-multi-layer/Digital-Storage-Oscilloscope-2018"]
path = PCB-multi-layer/Digital-Storage-Oscilloscope-2018
url = https://github.com/abc123yuanrui/Digital-Storage-Oscilloscope-2018
[submodule "PCB-multi-layer/SHKB"]
path = PCB-multi-layer/SHKB
url = https://github.com/4pplet/SHKB
[submodule "PCB-multi-layer/Desk-Digital-Clock"]
path = PCB-multi-layer/Desk-Digital-Clock
url = https://github.com/teregulov/Desk-Digital-Clock
[submodule "PCB-multi-layer/OpenSpeechPlatform-UCSD"]
path = PCB-multi-layer/OpenSpeechPlatform-UCSD
url = https://github.com/nihospr01/OpenSpeechPlatform-UCSD
[submodule "PCB-multi-layer/Tesis-SDR-LAPAC-Open-Source"]
path = PCB-multi-layer/Tesis-SDR-LAPAC-Open-Source
url = https://github.com/OmarLopezCabrera/Tesis-SDR-LAPAC-Open-Source
[submodule "PCB-multi-layer/DoorLock_ESP8266"]
path = PCB-multi-layer/DoorLock_ESP8266
url = https://github.com/dungmv6/DoorLock_ESP8266
[submodule "PCB-multi-layer/PRM_RA_PCB"]
path = PCB-multi-layer/PRM_RA_PCB
url = https://github.com/whutddk/PRM_RA_PCB
[submodule "PCB-multi-layer/QUTMS_Inverter_V2"]
path = PCB-multi-layer/QUTMS_Inverter_V2
url = https://github.com/QUT-Motorsport/QUTMS_Inverter_V2
[submodule "PCB-multi-layer/HW_Design_SUP"]
path = PCB-multi-layer/HW_Design_SUP
url = https://github.com/RockONthefeel/HW_Design_SUP
[submodule "PCB-multi-layer/SDRdrum"]
path = PCB-multi-layer/SDRdrum
url = https://github.com/darrylring/SDRdrum
[submodule "PCB-multi-layer/CANwheel"]
path = PCB-multi-layer/CANwheel
url = https://github.com/UVicFormulaMotorsport/CANwheel
[submodule "PCB-multi-layer/Remote-control-block"]
path = PCB-multi-layer/Remote-control-block
url = https://github.com/ruslan-robotics/Remote-control-block
[submodule "PCB-multi-layer/My-Little-Friend"]
path = PCB-multi-layer/My-Little-Friend
url = https://github.com/myjtag/My-Little-Friend
[submodule "PCB-multi-layer/PacBot"]
path = PCB-multi-layer/PacBot
url = https://github.com/TheGuardianWolf/PacBot
[submodule "PCB-multi-layer/RFCU-GTU-Rocket-Team"]
path = PCB-multi-layer/RFCU-GTU-Rocket-Team
url = https://github.com/megazi/RFCU-GTU-Rocket-Team
[submodule "PCB-multi-layer/MS_1_MainBoard"]
path = PCB-multi-layer/MS_1_MainBoard
url = https://github.com/jmnich/MS_1_MainBoard
[submodule "PCB-multi-layer/Embedded-Controller-ESE2"]
path = PCB-multi-layer/Embedded-Controller-ESE2
url = https://github.com/Hengy/Embedded-Controller-ESE2
[submodule "PCB-multi-layer/sensornet"]
path = PCB-multi-layer/sensornet
url = https://github.com/Hengy/sensornet
[submodule "PCB-multi-layer/Overhead-60W-LED-Wireless"]
path = PCB-multi-layer/Overhead-60W-LED-Wireless
url = https://github.com/Hengy/Overhead-60W-LED-Wireless
[submodule "PCB-multi-layer/PCB-Designs"]
path = PCB-multi-layer/PCB-Designs
url = https://github.com/Hengy/PCB-Designs
[submodule "PCB-multi-layer/SensorNet2"]
path = PCB-multi-layer/SensorNet2
url = https://github.com/Hengy/SensorNet2
[submodule "PCB-multi-layer/Mircod_TEST"]
path = PCB-multi-layer/Mircod_TEST
url = https://github.com/FailMukhametzyanov/Mircod_TEST
[submodule "PCB-multi-layer/bldcmoter"]
path = PCB-multi-layer/bldcmoter
url = https://github.com/niravdesai712/bldcmoter
ignore = dirty
[submodule "QUTMS_BrakeLight"]
path = QUTMS_BrakeLight
url = https://github.com/QUT-Motorsport/QUTMS_BrakeLight
[submodule "QUTMS_TSAL_V2"]
path = QUTMS_TSAL_V2
url = https://github.com/QUT-Motorsport/QUTMS_TSAL_V2
[submodule "QUTMS_ChassisController"]
path = QUTMS_ChassisController
url = https://github.com/QUT-Motorsport/QUTMS_ChassisController
[submodule "QUTMS_PDM"]
path = QUTMS_PDM
url = https://github.com/QUT-Motorsport/QUTMS_PDM
[submodule "QUTMS_CANLogger"]
path = QUTMS_CANLogger
url = https://github.com/QUT-Motorsport/QUTMS_CANLogger
[submodule "QUTMS_ChassisController_V2"]
path = QUTMS_ChassisController_V2
url = https://github.com/QUT-Motorsport/QUTMS_ChassisController_V2
[submodule "QUTMS_PCB_Ruler"]
path = QUTMS_PCB_Ruler
url = https://github.com/QUT-Motorsport/QUTMS_PCB_Ruler
[submodule "QUTMS_Altium_Resources"]
path = QUTMS_Altium_Resources
url = https://github.com/QUT-Motorsport/QUTMS_Altium_Resources
[submodule "QUTMS_PDM_V2"]
path = QUTMS_PDM_V2
url = https://github.com/QUT-Motorsport/QUTMS_PDM_V2
[submodule "PCB-multi-layer/syncbox"]
path = PCB-multi-layer/syncbox
url = https://github.com/altaybrusan/syncbox
[submodule "POWER_BALANCE"]
path = POWER_BALANCE
url = https://github.com/aramy139com/POWER_BALANCE
[submodule "Project-Alpha"]
path = Project-Alpha
url = https://github.com/kdumontnu/Project-Alpha
[submodule "PCB-multi-layer/POWER_BALANCE"]
path = PCB-multi-layer/POWER_BALANCE
url = https://github.com/aramy139com/POWER_BALANCE
[submodule "PCB-multi-layer/Project-Alpha"]
path = PCB-multi-layer/Project-Alpha
url = https://github.com/kdumontnu/Project-Alpha
[submodule "PCB-multi-layer/iot-soil-sensor"]
path = PCB-multi-layer/iot-soil-sensor
url = https://github.com/Hgerner/iot-soil-sensor
[submodule "PCB-multi-layer/MotorControlBoard"]
path = PCB-multi-layer/MotorControlBoard
url = https://github.com/Nordic-Energy/MotorControlBoard
[submodule "PCB-multi-layer/bootleg-stewart-platform"]
path = PCB-multi-layer/bootleg-stewart-platform
url = https://github.com/ntaocui/bootleg-stewart-platform
[submodule "PCB-multi-layer/PersonalProjects"]
path = PCB-multi-layer/PersonalProjects
url = https://github.com/Jbruslind/PersonalProjects
[submodule "PCB-multi-layer/PE-1100_Elreg_Sender"]
path = PCB-multi-layer/PE-1100_Elreg_Sender
url = https://github.com/ElregS/PE-1100_Elreg_Sender
[submodule "PCB-multi-layer/ZYNQ-IPMC-HW"]
path = PCB-multi-layer/ZYNQ-IPMC-HW
url = https://github.com/uwcms/ZYNQ-IPMC-HW
[submodule "PCB-multi-layer/Zillion"]
path = PCB-multi-layer/Zillion
url = https://github.com/francescosacco/Zillion
[submodule "PCB-multi-layer/pong-board"]
path = PCB-multi-layer/pong-board
url = https://github.com/imricardoramos/pong-board
[submodule "PCB-multi-layer/Bluetooth_Sentinel"]
path = PCB-multi-layer/Bluetooth_Sentinel
url = https://github.com/altium-apac/Bluetooth_Sentinel
[submodule "PCB-multi-layer/Video-commutation-block"]
path = PCB-multi-layer/Video-commutation-block
url = https://github.com/ruslan-robotics/Video-commutation-block
[submodule "PCB-multi-layer/Modem"]
path = PCB-multi-layer/Modem
url = https://github.com/ruslan-robotics/Modem
[submodule "PCB-multi-layer/ESP8266_WebRadio"]
path = PCB-multi-layer/ESP8266_WebRadio
url = https://github.com/icebabycool/ESP8266_WebRadio
[submodule "PCB-multi-layer/handpose-detect"]
path = PCB-multi-layer/handpose-detect
url = https://github.com/handdectet-hitsz/handpose-detect
[submodule "PCB-multi-layer/FreeRTOS_STM_HAL_UART_example"]
path = PCB-multi-layer/FreeRTOS_STM_HAL_UART_example
url = https://github.com/jubeormk1/FreeRTOS_STM_HAL_UART_example
[submodule "PCB-multi-layer/quasar_arm_pcb"]
path = PCB-multi-layer/quasar_arm_pcb
url = https://github.com/mrKuzmich/quasar_arm_pcb
[submodule "PCB-multi-layer/harmonic-analyzer-pcb-r002"]
path = PCB-multi-layer/harmonic-analyzer-pcb-r002
url = https://github.com/andrii-bublyk/harmonic-analyzer-pcb-r002
[submodule "PCB-multi-layer/CeeibisMCU"]
path = PCB-multi-layer/CeeibisMCU
url = https://github.com/jcmaeso/CeeibisMCU
[submodule "PCB-multi-layer/Owl-Round-Delay"]
path = PCB-multi-layer/Owl-Round-Delay
url = https://github.com/D1sconnected/Owl-Round-Delay
[submodule "PCB-multi-layer/STMCUBE"]
path = PCB-multi-layer/STMCUBE
url = https://github.com/Laiwxn/STMCUBE
[submodule "PCB-multi-layer/STM32F302VC-EVM"]
path = PCB-multi-layer/STM32F302VC-EVM
url = https://github.com/OKMCU/STM32F302VC-EVM
[submodule "PCB-multi-layer/Lights-Controller-Hardware"]
path = PCB-multi-layer/Lights-Controller-Hardware
url = https://github.com/UCSolarCarTeam/Lights-Controller-Hardware
[submodule "PCB-multi-layer/ARAGOSAT1-OBC"]
path = PCB-multi-layer/ARAGOSAT1-OBC
url = https://github.com/ipsaone/ARAGOSAT1-OBC
[submodule "PCB-multi-layer/RNG_RPI"]
path = PCB-multi-layer/RNG_RPI
url = https://github.com/gkasprow/RNG_RPI
[submodule "PCB-multi-layer/RxTx-block"]
path = PCB-multi-layer/RxTx-block
url = https://github.com/ruslan-robotics/RxTx-block
[submodule "PCB-multi-layer/esp32485"]
path = PCB-multi-layer/esp32485
url = https://github.com/hzhsohn/esp32485
[submodule "PCB-multi-layer/changingMelodies"]
path = PCB-multi-layer/changingMelodies
url = https://github.com/protospacenl/changingMelodies
[submodule "PCB-multi-layer/suda-morris-FreeECAT"]
path = PCB-multi-layer/suda-morris-FreeECAT
url = https://github.com/cxj16888/suda-morris-FreeECAT
[submodule "PCB-multi-layer/ChargeControllerWithMPPT"]
path = PCB-multi-layer/ChargeControllerWithMPPT
url = https://github.com/Nordic-Energy/ChargeControllerWithMPPT
[submodule "PCB-multi-layer/mouse"]
path = PCB-multi-layer/mouse
url = https://github.com/ploopyco/mouse
[submodule "PCB-multi-layer/Steezy60-ALPS"]
path = PCB-multi-layer/Steezy60-ALPS
url = https://github.com/4pplet/Steezy60-ALPS
[submodule "PCB-multi-layer/gpa-mgs-485"]
path = PCB-multi-layer/gpa-mgs-485
url = https://github.com/Atmelfan/gpa-mgs-485
[submodule "PCB-multi-layer/PowerSwitch-block"]
path = PCB-multi-layer/PowerSwitch-block
url = https://github.com/ruslan-robotics/PowerSwitch-block
[submodule "PCB-multi-layer/Probe-Scope-PCB"]
path = PCB-multi-layer/Probe-Scope-PCB
url = https://github.com/probe-scope/Probe-Scope-PCB
[submodule "PCB-multi-layer/MCU_DebugLink"]
path = PCB-multi-layer/MCU_DebugLink
url = https://github.com/shuimogezi/MCU_DebugLink
[submodule "PCB-multi-layer/IE309X"]
path = PCB-multi-layer/IE309X
url = https://github.com/jpaulovf/IE309X
[submodule "PCB-multi-layer/ANTON-TRSV-PWR"]
path = PCB-multi-layer/ANTON-TRSV-PWR
url = https://github.com/curtisgnesbitt/ANTON-TRSV-PWR
[submodule "PCB-multi-layer/CAD-EDA"]
path = PCB-multi-layer/CAD-EDA
url = https://github.com/MMelka/CAD-EDA
[submodule "PCB-multi-layer/GW_LoRAWAN_PCIe"]
path = PCB-multi-layer/GW_LoRAWAN_PCIe
url = https://github.com/dungmv6/GW_LoRAWAN_PCIe
[submodule "PCB-multi-layer/HV_module"]
path = PCB-multi-layer/HV_module
url = https://github.com/michalgaska/HV_module
[submodule "PCB-multi-layer/shine-nano"]
path = PCB-multi-layer/shine-nano
url = https://github.com/bjornbrodtkorb/shine-nano
[submodule "PCB-multi-layer/Steezy60-SMK"]
path = PCB-multi-layer/Steezy60-SMK
url = https://github.com/4pplet/Steezy60-SMK
[submodule "PCB-multi-layer/smartparks-elephant-lora-hardware"]
path = PCB-multi-layer/smartparks-elephant-lora-hardware
url = https://github.com/IRNAS/smartparks-elephant-lora-hardware
[submodule "PCB-multi-layer/smartparks-rhino-tracker-hardware"]
path = PCB-multi-layer/smartparks-rhino-tracker-hardware
url = https://github.com/IRNAS/smartparks-rhino-tracker-hardware
[submodule "PCB-multi-layer/PE-1000_NMEA_Tester"]
path = PCB-multi-layer/PE-1000_NMEA_Tester
url = https://github.com/ElregS/PE-1000_NMEA_Tester
[submodule "PCB-multi-layer/Project-Cansat-2.0"]
path = PCB-multi-layer/Project-Cansat-2.0
url = https://github.com/adragott/Project-Cansat-2.0
[submodule "PCB-multi-layer/Airzai-Hardware"]
path = PCB-multi-layer/Airzai-Hardware
url = https://github.com/kashifaftab/Airzai-Hardware
[submodule "PCB-multi-layer/Senior_PCBDesigns"]
path = PCB-multi-layer/Senior_PCBDesigns
url = https://github.com/uncommoncrazy/Senior_PCBDesigns
[submodule "PCB-multi-layer/TFG"]
path = PCB-multi-layer/TFG
url = https://github.com/nuriaparra/TFG
[submodule "PCB-multi-layer/esp-grow"]
path = PCB-multi-layer/esp-grow
url = https://github.com/Elipsit/esp-grow
[submodule "PCB-multi-layer/scaffold"]
path = PCB-multi-layer/scaffold
url = https://github.com/LedgerHQ/scaffold
[submodule "PCB-multi-layer/Hobby"]
path = PCB-multi-layer/Hobby
url = https://github.com/mz8023flyme/Hobby
[submodule "PCB-multi-layer/Urukul"]
path = PCB-multi-layer/Urukul
url = https://github.com/sinara-hw/Urukul
[submodule "PCB-multi-layer/BPD"]
path = PCB-multi-layer/BPD
url = https://github.com/emorell96/BPD
[submodule "PCB-multi-layer/Oscilloscope"]
path = PCB-multi-layer/Oscilloscope
url = https://github.com/19greg96/Oscilloscope
[submodule "PCB-multi-layer/vhs-door-nfc"]
path = PCB-multi-layer/vhs-door-nfc
url = https://github.com/vhs/vhs-door-nfc
[submodule "PCB-multi-layer/MarsRover2020-PCB"]
path = PCB-multi-layer/MarsRover2020-PCB
url = https://github.com/uwrobotics/MarsRover2020-PCB
[submodule "PCB-multi-layer/Holtek-Cup-for-MCU-Competition"]
path = PCB-multi-layer/Holtek-Cup-for-MCU-Competition
url = https://github.com/zengwangfa/Holtek-Cup-for-MCU-Competition
[submodule "PCB-multi-layer/SencoreLC102"]
path = PCB-multi-layer/SencoreLC102
url = https://github.com/pigrew/SencoreLC102
[submodule "PCB-multi-layer/GND_Studio_Project"]
path = PCB-multi-layer/GND_Studio_Project
url = https://github.com/RiceChen/GND_Studio_Project
[submodule "PCB-multi-layer/PCB_SOIL_MOISTURE_3IN"]
path = PCB-multi-layer/PCB_SOIL_MOISTURE_3IN
url = https://github.com/OngToan/PCB_SOIL_MOISTURE_3IN
[submodule "PCB-multi-layer/MAX2870-PLL-board"]
path = PCB-multi-layer/MAX2870-PLL-board
url = https://github.com/nuclearrambo/MAX2870-PLL-board
[submodule "PCB-multi-layer/Art"]
path = PCB-multi-layer/Art
url = https://github.com/su782710477/Art
[submodule "PCB-multi-layer/BLKQCL-AltiumLibraries"]
path = PCB-multi-layer/BLKQCL-AltiumLibraries
url = https://github.com/BlockEngineering/BLKQCL-AltiumLibraries
[submodule "PCB-multi-layer/IDCI"]
path = PCB-multi-layer/IDCI
url = https://github.com/CastroGerman/IDCI
[submodule "PCB-multi-layer/BLP"]
path = PCB-multi-layer/BLP
url = https://github.com/BaiLiping/BLP
[submodule "PCB-multi-layer/denchop"]
path = PCB-multi-layer/denchop
url = https://github.com/ngoquytuan/denchop
[submodule "PCB-multi-layer/esp8266_relay_controller_pcb"]
path = PCB-multi-layer/esp8266_relay_controller_pcb
url = https://github.com/alisoam/esp8266_relay_controller_pcb
[submodule "PCB-multi-layer/MicroInverter"]
path = PCB-multi-layer/MicroInverter
url = https://github.com/tivanis/MicroInverter
[submodule "PCB-multi-layer/OverTheTOP"]
path = PCB-multi-layer/OverTheTOP
url = https://github.com/bbloss/OverTheTOP
[submodule "PCB-multi-layer/rfDOMOTIC"]
path = PCB-multi-layer/rfDOMOTIC
url = https://github.com/M3ne/rfDOMOTIC
[submodule "PCB-multi-layer/podiv-altium"]
path = PCB-multi-layer/podiv-altium
url = https://github.com/badgerloop-software/podiv-altium
[submodule "PCB-multi-layer/SteezyBLE"]
path = PCB-multi-layer/SteezyBLE
url = https://github.com/4pplet/SteezyBLE
[submodule "PCB-multi-layer/MegaD-328"]