-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompile_commands.json
More file actions
1460 lines (1460 loc) · 231 KB
/
compile_commands.json
File metadata and controls
1460 lines (1460 loc) · 231 KB
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
[
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/AudioStream.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/AudioStream.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/AudioStream.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/AudioStream.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/CrashReport.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/CrashReport.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/CrashReport.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/CrashReport.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/DMAChannel.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/DMAChannel.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/DMAChannel.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/DMAChannel.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/EventResponder.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/EventResponder.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/EventResponder.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/EventResponder.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/HardwareSerial.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/HardwareSerial.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/HardwareSerial.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/HardwareSerial.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/HardwareSerial1.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/HardwareSerial1.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/HardwareSerial1.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/HardwareSerial1.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/HardwareSerial2.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/HardwareSerial2.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/HardwareSerial2.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/HardwareSerial2.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/HardwareSerial3.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/HardwareSerial3.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/HardwareSerial3.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/HardwareSerial3.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/HardwareSerial4.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/HardwareSerial4.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/HardwareSerial4.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/HardwareSerial4.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/HardwareSerial5.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/HardwareSerial5.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/HardwareSerial5.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/HardwareSerial5.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/HardwareSerial6.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/HardwareSerial6.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/HardwareSerial6.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/HardwareSerial6.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/HardwareSerial7.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/HardwareSerial7.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/HardwareSerial7.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/HardwareSerial7.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/HardwareSerial8.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/HardwareSerial8.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/HardwareSerial8.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/HardwareSerial8.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/IPAddress.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/IPAddress.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/IPAddress.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/IPAddress.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/IntervalTimer.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/IntervalTimer.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/IntervalTimer.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/IntervalTimer.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/Print.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/Print.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/Print.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/Print.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/Stream.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/Stream.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/Stream.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/Stream.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/Time.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/Time.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/Time.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/Time.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/Tone.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/Tone.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/Tone.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/Tone.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/WMath.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/WMath.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/WMath.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/WMath.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/WString.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/WString.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/WString.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/WString.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/analog.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/analog.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/analog.c",
"output": ".pio/build/teensy40/FrameworkArduino/analog.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/bootdata.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/bootdata.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/bootdata.c",
"output": ".pio/build/teensy40/FrameworkArduino/bootdata.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/clockspeed.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/clockspeed.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/clockspeed.c",
"output": ".pio/build/teensy40/FrameworkArduino/clockspeed.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/debugprintf.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/debugprintf.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/debugprintf.c",
"output": ".pio/build/teensy40/FrameworkArduino/debugprintf.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/delay.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/delay.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/delay.c",
"output": ".pio/build/teensy40/FrameworkArduino/delay.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/digital.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/digital.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/digital.c",
"output": ".pio/build/teensy40/FrameworkArduino/digital.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/eeprom.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/eeprom.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/eeprom.c",
"output": ".pio/build/teensy40/FrameworkArduino/eeprom.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/extmem.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/extmem.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/extmem.c",
"output": ".pio/build/teensy40/FrameworkArduino/extmem.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/fuse.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/fuse.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/fuse.c",
"output": ".pio/build/teensy40/FrameworkArduino/fuse.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/interrupt.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/interrupt.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/interrupt.c",
"output": ".pio/build/teensy40/FrameworkArduino/interrupt.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/keylayouts.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/keylayouts.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/keylayouts.c",
"output": ".pio/build/teensy40/FrameworkArduino/keylayouts.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/main.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/main.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/main.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/main.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -x assembler-with-cpp -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 -c -o .pio/build/teensy40/FrameworkArduino/memcpy-armv7m.S.o /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/memcpy-armv7m.S",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/memcpy-armv7m.S",
"output": ".pio/build/teensy40/FrameworkArduino/memcpy-armv7m.S.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -x assembler-with-cpp -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 -c -o .pio/build/teensy40/FrameworkArduino/memset.S.o /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/memset.S",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/memset.S",
"output": ".pio/build/teensy40/FrameworkArduino/memset.S.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/new.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/new.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/new.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/new.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/nonstd.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/nonstd.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/nonstd.c",
"output": ".pio/build/teensy40/FrameworkArduino/nonstd.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/pwm.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/pwm.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/pwm.c",
"output": ".pio/build/teensy40/FrameworkArduino/pwm.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/rtc.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/rtc.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/rtc.c",
"output": ".pio/build/teensy40/FrameworkArduino/rtc.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/serialEvent.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEvent.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEvent.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/serialEvent.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/serialEvent1.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEvent1.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEvent1.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/serialEvent1.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/serialEvent2.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEvent2.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEvent2.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/serialEvent2.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/serialEvent3.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEvent3.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEvent3.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/serialEvent3.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/serialEvent4.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEvent4.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEvent4.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/serialEvent4.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/serialEvent5.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEvent5.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEvent5.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/serialEvent5.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/serialEvent6.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEvent6.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEvent6.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/serialEvent6.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/serialEvent7.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEvent7.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEvent7.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/serialEvent7.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/serialEvent8.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEvent8.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEvent8.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/serialEvent8.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/serialEventUSB1.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEventUSB1.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEventUSB1.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/serialEventUSB1.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/serialEventUSB2.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEventUSB2.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/serialEventUSB2.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/serialEventUSB2.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/sm_alloc_valid.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_alloc_valid.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_alloc_valid.c",
"output": ".pio/build/teensy40/FrameworkArduino/sm_alloc_valid.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/sm_calloc.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_calloc.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_calloc.c",
"output": ".pio/build/teensy40/FrameworkArduino/sm_calloc.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/sm_free.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_free.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_free.c",
"output": ".pio/build/teensy40/FrameworkArduino/sm_free.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/sm_hash.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_hash.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_hash.c",
"output": ".pio/build/teensy40/FrameworkArduino/sm_hash.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/sm_malloc.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_malloc.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_malloc.c",
"output": ".pio/build/teensy40/FrameworkArduino/sm_malloc.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/sm_malloc_stats.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_malloc_stats.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_malloc_stats.c",
"output": ".pio/build/teensy40/FrameworkArduino/sm_malloc_stats.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/sm_pool.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_pool.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_pool.c",
"output": ".pio/build/teensy40/FrameworkArduino/sm_pool.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/sm_realloc.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_realloc.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_realloc.c",
"output": ".pio/build/teensy40/FrameworkArduino/sm_realloc.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/sm_realloc_i.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_realloc_i.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_realloc_i.c",
"output": ".pio/build/teensy40/FrameworkArduino/sm_realloc_i.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/sm_realloc_move.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_realloc_move.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_realloc_move.c",
"output": ".pio/build/teensy40/FrameworkArduino/sm_realloc_move.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/sm_szalloc.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_szalloc.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_szalloc.c",
"output": ".pio/build/teensy40/FrameworkArduino/sm_szalloc.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/sm_util.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_util.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_util.c",
"output": ".pio/build/teensy40/FrameworkArduino/sm_util.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/sm_zalloc.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_zalloc.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/sm_zalloc.c",
"output": ".pio/build/teensy40/FrameworkArduino/sm_zalloc.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/startup.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/startup.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/startup.c",
"output": ".pio/build/teensy40/FrameworkArduino/startup.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/tempmon.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/tempmon.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/tempmon.c",
"output": ".pio/build/teensy40/FrameworkArduino/tempmon.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/usb.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb.c",
"output": ".pio/build/teensy40/FrameworkArduino/usb.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/usb_audio.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_audio.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_audio.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/usb_audio.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/usb_desc.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_desc.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_desc.c",
"output": ".pio/build/teensy40/FrameworkArduino/usb_desc.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/usb_flightsim.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_flightsim.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_flightsim.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/usb_flightsim.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/usb_inst.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_inst.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_inst.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/usb_inst.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/usb_joystick.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_joystick.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_joystick.c",
"output": ".pio/build/teensy40/FrameworkArduino/usb_joystick.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/usb_keyboard.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_keyboard.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_keyboard.c",
"output": ".pio/build/teensy40/FrameworkArduino/usb_keyboard.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/usb_midi.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_midi.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_midi.c",
"output": ".pio/build/teensy40/FrameworkArduino/usb_midi.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/usb_mouse.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_mouse.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_mouse.c",
"output": ".pio/build/teensy40/FrameworkArduino/usb_mouse.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/usb_mtp.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_mtp.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_mtp.c",
"output": ".pio/build/teensy40/FrameworkArduino/usb_mtp.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/usb_rawhid.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_rawhid.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_rawhid.c",
"output": ".pio/build/teensy40/FrameworkArduino/usb_rawhid.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/usb_seremu.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_seremu.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_seremu.c",
"output": ".pio/build/teensy40/FrameworkArduino/usb_seremu.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/usb_serial.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_serial.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_serial.c",
"output": ".pio/build/teensy40/FrameworkArduino/usb_serial.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/usb_serial2.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_serial2.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_serial2.c",
"output": ".pio/build/teensy40/FrameworkArduino/usb_serial2.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/usb_serial3.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_serial3.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_serial3.c",
"output": ".pio/build/teensy40/FrameworkArduino/usb_serial3.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/FrameworkArduino/usb_touch.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_touch.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/usb_touch.c",
"output": ".pio/build/teensy40/FrameworkArduino/usb_touch.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/FrameworkArduino/yield.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/yield.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4/yield.cpp",
"output": ".pio/build/teensy40/FrameworkArduino/yield.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/lib125/Wire/Wire.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/utility -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/Wire.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/Wire.cpp",
"output": ".pio/build/teensy40/lib125/Wire/Wire.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/lib125/Wire/WireIMXRT.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/utility -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/WireIMXRT.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/WireIMXRT.cpp",
"output": ".pio/build/teensy40/lib125/Wire/WireIMXRT.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/lib125/Wire/WireKinetis.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/utility -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/WireKinetis.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/WireKinetis.cpp",
"output": ".pio/build/teensy40/lib125/Wire/WireKinetis.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/lib125/Wire/utility/twi.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/utility -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/utility/twi.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/utility/twi.c",
"output": ".pio/build/teensy40/lib125/Wire/utility/twi.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/lib291/SPI/SPI.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/SPI -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 /Users/jan/.platformio/packages/framework-arduinoteensy/libraries/SPI/SPI.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": "/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/SPI/SPI.cpp",
"output": ".pio/build/teensy40/lib291/SPI/SPI.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o \".pio/build/teensy40/lib11d/Adafruit BusIO/Adafruit_BusIO_Register.cpp.o\" -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH \"-I.pio/libdeps/teensy40/Adafruit BusIO\" -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/SPI -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/utility -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 \".pio/libdeps/teensy40/Adafruit BusIO/Adafruit_BusIO_Register.cpp\"",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/Adafruit BusIO/Adafruit_BusIO_Register.cpp",
"output": ".pio/build/teensy40/lib11d/Adafruit BusIO/Adafruit_BusIO_Register.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o \".pio/build/teensy40/lib11d/Adafruit BusIO/Adafruit_I2CDevice.cpp.o\" -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH \"-I.pio/libdeps/teensy40/Adafruit BusIO\" -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/SPI -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/utility -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 \".pio/libdeps/teensy40/Adafruit BusIO/Adafruit_I2CDevice.cpp\"",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/Adafruit BusIO/Adafruit_I2CDevice.cpp",
"output": ".pio/build/teensy40/lib11d/Adafruit BusIO/Adafruit_I2CDevice.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o \".pio/build/teensy40/lib11d/Adafruit BusIO/Adafruit_SPIDevice.cpp.o\" -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH \"-I.pio/libdeps/teensy40/Adafruit BusIO\" -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/SPI -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/utility -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 \".pio/libdeps/teensy40/Adafruit BusIO/Adafruit_SPIDevice.cpp\"",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/Adafruit BusIO/Adafruit_SPIDevice.cpp",
"output": ".pio/build/teensy40/lib11d/Adafruit BusIO/Adafruit_SPIDevice.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o \".pio/build/teensy40/lib600/Adafruit GFX Library/Adafruit_GFX.cpp.o\" -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH \"-I.pio/libdeps/teensy40/Adafruit GFX Library\" \"-I.pio/libdeps/teensy40/Adafruit BusIO\" -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/SPI -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/utility -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 \".pio/libdeps/teensy40/Adafruit GFX Library/Adafruit_GFX.cpp\"",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/Adafruit GFX Library/Adafruit_GFX.cpp",
"output": ".pio/build/teensy40/lib600/Adafruit GFX Library/Adafruit_GFX.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o \".pio/build/teensy40/lib600/Adafruit GFX Library/Adafruit_GrayOLED.cpp.o\" -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH \"-I.pio/libdeps/teensy40/Adafruit GFX Library\" \"-I.pio/libdeps/teensy40/Adafruit BusIO\" -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/SPI -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/utility -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 \".pio/libdeps/teensy40/Adafruit GFX Library/Adafruit_GrayOLED.cpp\"",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/Adafruit GFX Library/Adafruit_GrayOLED.cpp",
"output": ".pio/build/teensy40/lib600/Adafruit GFX Library/Adafruit_GrayOLED.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o \".pio/build/teensy40/lib600/Adafruit GFX Library/Adafruit_SPITFT.cpp.o\" -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH \"-I.pio/libdeps/teensy40/Adafruit GFX Library\" \"-I.pio/libdeps/teensy40/Adafruit BusIO\" -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/SPI -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/utility -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 \".pio/libdeps/teensy40/Adafruit GFX Library/Adafruit_SPITFT.cpp\"",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/Adafruit GFX Library/Adafruit_SPITFT.cpp",
"output": ".pio/build/teensy40/lib600/Adafruit GFX Library/Adafruit_SPITFT.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o \".pio/build/teensy40/lib600/Adafruit GFX Library/glcdfont.c.o\" -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH \"-I.pio/libdeps/teensy40/Adafruit GFX Library\" \"-I.pio/libdeps/teensy40/Adafruit BusIO\" -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/SPI -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/utility -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 \".pio/libdeps/teensy40/Adafruit GFX Library/glcdfont.c\"",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/Adafruit GFX Library/glcdfont.c",
"output": ".pio/build/teensy40/lib600/Adafruit GFX Library/glcdfont.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o \".pio/build/teensy40/libf62/Adafruit SSD1306/Adafruit_SSD1306.cpp.o\" -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH \"-I.pio/libdeps/teensy40/Adafruit SSD1306\" \"-I.pio/libdeps/teensy40/Adafruit GFX Library\" \"-I.pio/libdeps/teensy40/Adafruit BusIO\" -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/SPI -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire -I/Users/jan/.platformio/packages/framework-arduinoteensy/libraries/Wire/utility -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 \".pio/libdeps/teensy40/Adafruit SSD1306/Adafruit_SSD1306.cpp\"",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/Adafruit SSD1306/Adafruit_SSD1306.cpp",
"output": ".pio/build/teensy40/libf62/Adafruit SSD1306/Adafruit_SSD1306.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/lib174/TeensyTimerTool/API/Timer.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/TeensyTimerTool/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/TeensyTimerTool/src/API/Timer.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/TeensyTimerTool/src/API/Timer.cpp",
"output": ".pio/build/teensy40/lib174/TeensyTimerTool/API/Timer.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/lib174/TeensyTimerTool/API/baseTimer.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/TeensyTimerTool/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/TeensyTimerTool/src/API/baseTimer.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/TeensyTimerTool/src/API/baseTimer.cpp",
"output": ".pio/build/teensy40/lib174/TeensyTimerTool/API/baseTimer.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/lib174/TeensyTimerTool/ErrorHandling/error_handler.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/TeensyTimerTool/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/TeensyTimerTool/src/ErrorHandling/error_handler.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/TeensyTimerTool/src/ErrorHandling/error_handler.cpp",
"output": ".pio/build/teensy40/lib174/TeensyTimerTool/ErrorHandling/error_handler.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/lib174/TeensyTimerTool/TimerModules/GPT/GPTChannel.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/TeensyTimerTool/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/TeensyTimerTool/src/TimerModules/GPT/GPTChannel.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/TeensyTimerTool/src/TimerModules/GPT/GPTChannel.cpp",
"output": ".pio/build/teensy40/lib174/TeensyTimerTool/TimerModules/GPT/GPTChannel.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/lib174/TeensyTimerTool/TimerModules/PIT4/PIT.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/TeensyTimerTool/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/TeensyTimerTool/src/TimerModules/PIT4/PIT.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/TeensyTimerTool/src/TimerModules/PIT4/PIT.cpp",
"output": ".pio/build/teensy40/lib174/TeensyTimerTool/TimerModules/PIT4/PIT.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/lib174/TeensyTimerTool/TimerModules/TCK/TCK.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/TeensyTimerTool/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/TeensyTimerTool/src/TimerModules/TCK/TCK.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/TeensyTimerTool/src/TimerModules/TCK/TCK.cpp",
"output": ".pio/build/teensy40/lib174/TeensyTimerTool/TimerModules/TCK/TCK.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/lib174/TeensyTimerTool/TimerModules/TCK/TckChannelBase.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/TeensyTimerTool/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/TeensyTimerTool/src/TimerModules/TCK/TckChannelBase.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/TeensyTimerTool/src/TimerModules/TCK/TckChannelBase.cpp",
"output": ".pio/build/teensy40/lib174/TeensyTimerTool/TimerModules/TCK/TckChannelBase.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/lib174/TeensyTimerTool/TimerModules/TCK/tickCounters.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/TeensyTimerTool/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/TeensyTimerTool/src/TimerModules/TCK/tickCounters.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/TeensyTimerTool/src/TimerModules/TCK/tickCounters.cpp",
"output": ".pio/build/teensy40/lib174/TeensyTimerTool/TimerModules/TCK/tickCounters.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/lib174/TeensyTimerTool/config.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/TeensyTimerTool/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/TeensyTimerTool/src/config.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/TeensyTimerTool/src/config.cpp",
"output": ".pio/build/teensy40/lib174/TeensyTimerTool/config.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-g++ -o .pio/build/teensy40/libf57/U8glib/U8glib.cpp.o -c -fno-exceptions -felide-constructors -fno-rtti -std=gnu++14 -Wno-error=narrowing -fpermissive -fno-threadsafe-statics -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/U8glib.cpp",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/U8glib.cpp",
"output": ".pio/build/teensy40/libf57/U8glib/U8glib.cpp.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/chessengine.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/chessengine.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/chessengine.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/chessengine.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_bitmap.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_bitmap.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_bitmap.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_bitmap.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_circle.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_circle.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_circle.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_circle.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_clip.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_clip.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_clip.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_clip.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_api.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_api.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_api.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_api.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_api_16gr.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_api_16gr.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_api_16gr.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_api_16gr.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_attiny85_hw_spi.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_attiny85_hw_spi.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_attiny85_hw_spi.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_attiny85_hw_spi.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_common.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_common.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_common.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_common.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_fast_parallel.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_fast_parallel.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_fast_parallel.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_fast_parallel.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_hw_spi.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_hw_spi.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_hw_spi.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_hw_spi.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_hw_usart_spi.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_hw_usart_spi.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_hw_usart_spi.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_hw_usart_spi.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_no_en_parallel.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_no_en_parallel.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_no_en_parallel.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_no_en_parallel.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_parallel.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_parallel.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_parallel.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_parallel.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_port_d_wr.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_port_d_wr.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_port_d_wr.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_port_d_wr.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_ssd_i2c.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_ssd_i2c.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_ssd_i2c.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_ssd_i2c.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_st7920_custom.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_st7920_custom.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_st7920_custom.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_st7920_custom.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_st7920_hw_spi.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_st7920_hw_spi.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_st7920_hw_spi.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_st7920_hw_spi.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_st7920_spi.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_st7920_spi.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_st7920_spi.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_st7920_spi.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_std_sw_spi.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_std_sw_spi.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_std_sw_spi.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_std_sw_spi.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_sw_spi.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_sw_spi.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_sw_spi.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_sw_spi.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_t6963.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_t6963.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_t6963.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_t6963.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_uc_i2c.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_uc_i2c.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_arduino_uc_i2c.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_arduino_uc_i2c.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_atmega_hw_spi.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_atmega_hw_spi.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_atmega_hw_spi.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_atmega_hw_spi.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_atmega_parallel.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_atmega_parallel.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_atmega_parallel.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_atmega_parallel.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_atmega_st7920_hw_spi.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_atmega_st7920_hw_spi.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_atmega_st7920_hw_spi.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_atmega_st7920_hw_spi.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_atmega_st7920_spi.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_atmega_st7920_spi.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_atmega_st7920_spi.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_atmega_st7920_spi.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_atmega_sw_spi.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_atmega_sw_spi.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_atmega_sw_spi.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_atmega_sw_spi.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_atxmega_hw_spi.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_atxmega_hw_spi.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_atxmega_hw_spi.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_atxmega_hw_spi.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_atxmega_st7920_hw_spi.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_atxmega_st7920_hw_spi.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_atxmega_st7920_hw_spi.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_atxmega_st7920_hw_spi.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_i2c.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_i2c.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_i2c.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_i2c.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_io.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_io.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_io.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_io.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_linux_ssd_i2c.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_linux_ssd_i2c.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_linux_ssd_i2c.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_linux_ssd_i2c.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_msp430_hw_spi.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_msp430_hw_spi.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_msp430_hw_spi.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_msp430_hw_spi.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_null.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_null.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_null.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_null.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_psoc5_ssd_hw_parallel.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_psoc5_ssd_hw_parallel.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_psoc5_ssd_hw_parallel.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_psoc5_ssd_hw_parallel.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_raspberrypi_hw_spi.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_raspberrypi_hw_spi.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_raspberrypi_hw_spi.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_raspberrypi_hw_spi.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_raspberrypi_ssd_i2c.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_raspberrypi_ssd_i2c.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_raspberrypi_ssd_i2c.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_raspberrypi_ssd_i2c.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_com_std_sw_spi.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_com_std_sw_spi.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_com_std_sw_spi.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_com_std_sw_spi.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_cursor.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_cursor.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_cursor.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_cursor.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_delay.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_delay.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_delay.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_delay.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_a2_micro_printer.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_a2_micro_printer.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_a2_micro_printer.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_a2_micro_printer.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_flipdisc_2x7.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_flipdisc_2x7.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_flipdisc_2x7.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_flipdisc_2x7.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_gprof.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_gprof.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_gprof.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_gprof.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ht1632.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ht1632.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ht1632.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ht1632.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ili9325d_320x240.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ili9325d_320x240.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ili9325d_320x240.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ili9325d_320x240.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ks0108_128x64.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ks0108_128x64.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ks0108_128x64.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ks0108_128x64.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_lc7981_160x80.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_lc7981_160x80.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_lc7981_160x80.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_lc7981_160x80.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_lc7981_240x128.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_lc7981_240x128.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_lc7981_240x128.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_lc7981_240x128.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_lc7981_240x64.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_lc7981_240x64.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_lc7981_240x64.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_lc7981_240x64.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_lc7981_320x64.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_lc7981_320x64.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_lc7981_320x64.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_lc7981_320x64.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ld7032_60x32.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ld7032_60x32.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ld7032_60x32.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ld7032_60x32.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_null.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_null.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_null.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_null.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_pcd8544_84x48.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_pcd8544_84x48.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_pcd8544_84x48.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_pcd8544_84x48.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_pcf8812_96x65.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_pcf8812_96x65.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_pcf8812_96x65.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_pcf8812_96x65.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_sbn1661_122x32.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_sbn1661_122x32.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_sbn1661_122x32.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_sbn1661_122x32.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ssd1306_128x32.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ssd1306_128x32.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ssd1306_128x32.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ssd1306_128x32.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ssd1306_128x64.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ssd1306_128x64.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ssd1306_128x64.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ssd1306_128x64.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ssd1306_64x48.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ssd1306_64x48.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ssd1306_64x48.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ssd1306_64x48.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ssd1309_128x64.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ssd1309_128x64.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ssd1309_128x64.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ssd1309_128x64.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ssd1322_nhd31oled_bw.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ssd1322_nhd31oled_bw.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ssd1322_nhd31oled_bw.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ssd1322_nhd31oled_bw.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ssd1322_nhd31oled_gr.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ssd1322_nhd31oled_gr.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",
"file": ".pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ssd1322_nhd31oled_gr.c",
"output": ".pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ssd1322_nhd31oled_gr.c.o"
},
{
"command": "/Users/jan/.platformio/packages/toolchain-gccarmnoneeabi@1.50401.190816/bin/arm-none-eabi-gcc -o .pio/build/teensy40/libf57/U8glib/clib/u8g_dev_ssd1325_nhd27oled_bw.c.o -c -Wall -ffunction-sections -fdata-sections -mthumb -mcpu=cortex-m7 -nostdlib -fsingle-precision-constant -mfloat-abi=hard -mfpu=fpv5-d16 -O2 -DPLATFORMIO=60118 -D__IMXRT1062__ -DARDUINO_TEENSY40 -DUSB_SERIAL -DARDUINO=10805 -DTEENSYDUINO=157 -DCORE_TEENSY -DF_CPU=80000000 -DLAYOUT_US_ENGLISH -I.pio/libdeps/teensy40/U8glib/src -I/Users/jan/.platformio/packages/framework-arduinoteensy/cores/teensy4 .pio/libdeps/teensy40/U8glib/src/clib/u8g_dev_ssd1325_nhd27oled_bw.c",
"directory": "/Users/jan/Documents/Fiets/Quest/BurPuter/Arduino/VeloDashboard",