-
Notifications
You must be signed in to change notification settings - Fork 3
/
e
1627 lines (1093 loc) · 46.3 KB
/
e
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
[33mcommit 24de5ae340bea7a62c18351d2f6018594501d9fd[m[33m ([m[1;36mHEAD -> [m[1;32mstable[m[33m, [m[1;31morigin/stable[m[33m, [m[1;31morigin/HEAD[m[33m)[m
Merge: 36a96d0 8251711
Author: Andrewzhuyx <[email protected]>
Date: Mon Jun 6 11:29:14 2022 -0700
Merge pull request #3 from ankit16-py/stable
Added Documentation for Learn Page
[33mcommit 8251711ffed955ce7d9b2512baf12e6f3f0367e9[m
Author: Ankit Prabhu <[email protected]>
Date: Mon Jun 6 14:01:06 2022 -0400
Added Documentation for Learn Page
[33mcommit 36a96d09df9c4c755ad501428433827ba599ba38[m
Author: Andrewzhuyx <[email protected]>
Date: Sun Jun 5 22:13:19 2022 -0700
Update README.md
[33mcommit 5327b36fe717f386790c73b28c8ef3f8ce738e4c[m
Merge: a4fcbdb c26539e
Author: Andrewzhuyx <[email protected]>
Date: Sun Jun 5 22:09:51 2022 -0700
Merge pull request #2 from mlab-upenn/andrew-gokart-doc-2
barebone doc
[33mcommit c26539e8b5807619dc21442f5dcb04680ed73f23[m
Author: Andrewzhuyx <[email protected]>
Date: Sun Jun 5 22:03:55 2022 -0700
barebone doc
[33mcommit a4fcbdb10059c52da9546316b18785f920982894[m
Merge: 03cb6bb eb777e4
Author: Andrewzhuyx <[email protected]>
Date: Sun Jun 5 21:30:36 2022 -0700
Merge pull request #1 from mlab-upenn/Andrewzhuyx-gokart-doc-1
Update index.rst
[33mcommit eb777e41e5d4bd090006f506b7afa9856cffd238[m
Author: Andrewzhuyx <[email protected]>
Date: Sun Jun 5 21:26:57 2022 -0700
Update index.rst
Update text to reflect gokart info
[33mcommit 03cb6bb6516807bdaec2d84af79d470e2ca90852[m
Author: Hongrui (Billy) Zheng <[email protected]>
Date: Sat Apr 9 15:39:14 2022 -0400
Update index.rst
[33mcommit 176bf199f9ad97a9a63bfa65bab95a6284940d2a[m
Author: Hongrui (Billy) Zheng <[email protected]>
Date: Sat Apr 9 13:22:09 2022 -0400
Create requirements.txt
[33mcommit b86cdaca1761c7e6fedef3562081a07a552d3fae[m
Merge: c9ebb0f 3e286be
Author: Hongrui (Billy) Zheng <[email protected]>
Date: Sat Apr 2 16:12:21 2022 -0400
Merge pull request #60 from f1tenth/revert-59-billy-dev
Revert "Billy dev"
[33mcommit 3e286bebfb43160c7f3640cba8f65da0498a931a[m
Author: Hongrui (Billy) Zheng <[email protected]>
Date: Sat Apr 2 16:12:11 2022 -0400
Revert "Billy dev"
[33mcommit c9ebb0f3a130140586337e1d5d99e4ccaa06e469[m
Merge: 84f94dc f9fcf4a
Author: Hongrui (Billy) Zheng <[email protected]>
Date: Sat Apr 2 16:12:00 2022 -0400
Merge pull request #59 from f1tenth/billy-dev
Billy dev
[33mcommit f9fcf4a197a7e246d2f2d29854dabc4603d408cd[m
Author: billyzheng-mlab <[email protected]>
Date: Fri Apr 1 20:34:19 2022 -0400
update teleop
[33mcommit 88ab88f42bc2d359769dbefce2d4723b0aa35dfc[m
Author: billyzheng-mlab <[email protected]>
Date: Fri Apr 1 16:25:51 2022 -0400
update driver setup
[33mcommit 84f94dcd640e96eb10b8470a7bda6362711e5927[m
Merge: bed7fd4 8b2a4cd
Author: Johannes betz <[email protected]>
Date: Fri Apr 1 14:14:07 2022 -0400
Merge remote-tracking branch 'origin/billy-dev' into stable
[33mcommit 8b2a4cd80516b107433867c52eaa4194b426fe04[m
Author: billyzheng-mlab <[email protected]>
Date: Fri Apr 1 14:12:31 2022 -0400
added change top speed instructions
[33mcommit bed7fd4c2bc9e730ea23b47eba9ecb09a98c2796[m
Author: Johannes betz <[email protected]>
Date: Fri Apr 1 14:06:34 2022 -0400
Update typos
[33mcommit e75b9c7c870eabfd9a44e0d8a1a26a66690ee166[m
Author: billyzheng-mlab <[email protected]>
Date: Fri Apr 1 13:56:38 2022 -0400
update vesc firmware setup page
[33mcommit 2c76f02b01b8d4b1650577100d3ebcd70e22efae[m
Author: Johannes betz <[email protected]>
Date: Fri Apr 1 13:04:17 2022 -0400
Fix the typos and structure
[33mcommit e854db1a7788ed7fc364fab0f80d6103520709a1[m
Author: Johannes betz <[email protected]>
Date: Fri Apr 1 12:55:39 2022 -0400
Fix List in FAQ
[33mcommit 055990f9a7bc89519a9b50b486067619939fd17b[m
Author: Johannes betz <[email protected]>
Date: Fri Apr 1 12:51:17 2022 -0400
Update Typos
[33mcommit 82ebc698d4753527077f52bc13afb917e5c76140[m
Merge: acc7c12 3d13506
Author: Johannes betz <[email protected]>
Date: Fri Apr 1 12:12:41 2022 -0400
Merge branch 'JohannesUpdateSoftware' into stable
[33mcommit 3d13506bea077bf3608655db2c5a1fbb86fcfcea[m
Author: Johannes betz <[email protected]>
Date: Fri Apr 1 12:12:34 2022 -0400
Rewriting Pit/Host connection
[33mcommit 545cf1c301862d116212e54bbb30ab91e9bf3588[m
Author: Johannes betz <[email protected]>
Date: Fri Apr 1 11:42:42 2022 -0400
Delete ROS introduction on HOST PC
[33mcommit 58bafa71e781e71e3436eb3122e163d2f36fac83[m
Author: Johannes betz <[email protected]>
Date: Fri Apr 1 11:38:38 2022 -0400
Enter new overview image
[33mcommit 8d37c02a36d992b51792e73d4355b88f027f8495[m
Author: billyzheng-mlab <[email protected]>
Date: Thu Mar 31 18:41:21 2022 -0400
update vesc firmware
[33mcommit 7315ac9b45a8f9ea049071e2e921449e31c17e31[m
Author: Johannes betz <[email protected]>
Date: Thu Mar 31 18:27:30 2022 -0400
Enhance Introduction of setting up the F1TENTH System
[33mcommit acc7c12e6923043c34cbad71b132aa237492fda7[m
Merge: f11b98f a0c1543
Author: Johannes betz <[email protected]>
Date: Thu Mar 31 17:45:22 2022 -0400
Merge branch 'JohannesUpdates' into stable
[33mcommit a0c15430f5696c5616d6a6c48114c112b6738483[m
Author: Johannes betz <[email protected]>
Date: Thu Mar 31 17:45:15 2022 -0400
Update FAQ
[33mcommit abbae768897b6b25fd3a2bb7e4f0f29aa5357ce0[m
Author: Johannes betz <[email protected]>
Date: Thu Mar 31 17:41:18 2022 -0400
Delete unneccessary stuff in f1tenth FAQ
[33mcommit 6a30b375e2381a5d7db1dddaa0280b297ca73bb5[m
Author: Johannes betz <[email protected]>
Date: Thu Mar 31 17:34:49 2022 -0400
Add new links for FAQ about autonomous racing
[33mcommit e14d671267fe9b0fd850972d28697bb64f384f23[m
Author: Johannes betz <[email protected]>
Date: Thu Mar 31 17:27:01 2022 -0400
Enter F1TENTH Discor as main Link
[33mcommit f11b98f07d773f8cefe671673feb76cbc942b72d[m
Author: Johannes betz <[email protected]>
Date: Thu Mar 31 17:19:25 2022 -0400
Create new structure
[33mcommit 26617784b1602be4320a51f63e9f31737d6c1ae4[m
Author: Johannes betz <[email protected]>
Date: Thu Mar 31 17:15:02 2022 -0400
Get rid of appendix
[33mcommit 675ce9ffd4acbd0a02930aa228aa3557f4dfbf77[m
Author: Johannes Betz <[email protected]>
Date: Tue May 18 08:11:29 2021 -0700
Clean up
[33mcommit 75a1df887040499f2e87d2280cf9c6448ed2e070[m
Author: Johannes Betz <[email protected]>
Date: Tue May 18 08:03:00 2021 -0700
adding new components
[33mcommit 5522b449d31eaa0030583c66a05537fd0179626e[m
Author: Johannes Betz <[email protected]>
Date: Tue May 18 08:02:05 2021 -0700
Adding a new building site
[33mcommit 3c2ffe4115aa19d8e665f8ed18a1487902b24c21[m
Merge: 76020c0 e5b6118
Author: Hongrui (Billy) Zheng <[email protected]>
Date: Mon Apr 12 13:11:14 2021 -0400
Merge pull request #56 from f1tenth/master
Merging Latest into Master branch
[33mcommit e5b61186e655d2347af0bae161ed26499f179949[m
Author: Johannes Betz <[email protected]>
Date: Thu Apr 1 19:51:49 2021 -0400
Replacing TX2 with Nvidia Jetson NX
[33mcommit 69cbf4aff1850178c66c9d990aebe9685c0a8377[m
Author: Johannes Betz <[email protected]>
Date: Thu Apr 1 19:46:40 2021 -0400
Clean up
[33mcommit c2e02cfaab5754c2ecda1eab2ff90de5659def23[m
Author: Johannes Betz <[email protected]>
Date: Thu Apr 1 19:27:03 2021 -0400
Clean up
[33mcommit 84ded146572534ef4e34f1b7626a2c5ebfe8c598[m
Author: Johannes Betz <[email protected]>
Date: Thu Apr 1 19:18:41 2021 -0400
Restructure Sections
[33mcommit 332a9a70eb1757dd355e43f0d6baa1a88adc5ce0[m
Author: Johannes Betz <[email protected]>
Date: Thu Apr 1 19:12:50 2021 -0400
Hide toctrees
[33mcommit 9226c4c01430b6dffc84a1169457c22ce9bbfd41[m
Author: Johannes Betz <[email protected]>
Date: Thu Apr 1 19:05:52 2021 -0400
Changing Code $
[33mcommit 221ac6ea29e1654045b77947d12e0c3fffb510c9[m
Author: Johannes Betz <[email protected]>
Date: Thu Apr 1 19:02:06 2021 -0400
changing intends
[33mcommit 2713c752bc2d47f7fbea2b1733aec4831ef3acf0[m
Author: Johannes Betz <[email protected]>
Date: Thu Apr 1 18:33:34 2021 -0400
New Structure - rewriting code
[33mcommit 0d523009872c1000e4f39362284eb3717f4e48c0[m
Author: Johannes Betz <[email protected]>
Date: Thu Apr 1 18:26:22 2021 -0400
New Structure
[33mcommit 3dcff691d80b7275aa63e6eb933d8e2c02728fac[m
Author: Johannes Betz <[email protected]>
Date: Thu Apr 1 18:19:46 2021 -0400
New Structure
[33mcommit 0b6e87e16a75ad46261724d443aa71f22c48e7d3[m
Author: Johannes Betz <[email protected]>
Date: Thu Apr 1 15:30:38 2021 -0400
Restructure Driving Section
[33mcommit f62b9448811c9ed553ca4e0c69c7889615e0a557[m
Author: Johannes Betz <[email protected]>
Date: Thu Apr 1 15:13:16 2021 -0400
Rewriting SYSTEM configuration
[33mcommit 1d2d115d548c828bd394358aa994129ac84f601d[m
Author: Johannes Betz <[email protected]>
Date: Thu Apr 1 13:21:22 2021 -0400
Rename the Sections
[33mcommit 8320a9d574a699d45a404d4c3655d799e05e8fbd[m
Merge: 3c63523 307fb16
Author: Johannes Betz <[email protected]>
Date: Sat Feb 27 14:06:52 2021 -0500
Merge branch 'Rewriting_System_Config'
[33mcommit 307fb160282bc1c8d5b60e8b6243250cb9bf3496[m
Author: Johannes Betz <[email protected]>
Date: Sat Feb 27 14:06:32 2021 -0500
Replacing the word TX2 with Jetson NX
[33mcommit 3848892a882ba9b3c689333cec31d984c4024c3e[m
Author: Johannes Betz <[email protected]>
Date: Sat Feb 27 13:58:51 2021 -0500
Restructer the Software Setup
[33mcommit 3c635238d00f0d86a5f3319a77b90c3dbe7fb8d1[m
Author: Johannes Betz <[email protected]>
Date: Sat Feb 27 13:03:33 2021 -0500
Insert Hidden for toctree
[33mcommit ebbd2093b2da16111692340d591b5148aac9fdf2[m
Author: Johannes Betz <[email protected]>
Date: Sat Feb 27 12:56:44 2021 -0500
New Software Setup Structure
[33mcommit 2d337d5c114c1cf2f69818ece3681244f60b9eca[m
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 20:21:29 2021 -0500
Insert Old Software Setup
[33mcommit 8fa6d6dfddafb76951a85abbef9266b0f9d0c2ce[m
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 20:18:19 2021 -0500
Revert "delete software setup"
This reverts commit ccf9b0f6f27b1fe2924808d0f51bd80100bb234b.
[33mcommit ccf9b0f6f27b1fe2924808d0f51bd80100bb234b[m
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 20:18:19 2021 -0500
delete software setup
[33mcommit fdcb0d7ce5028d6116d5336c49b41257213cb57e[m
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 20:03:11 2021 -0500
Index - Changing from TX2 to NX
[33mcommit f592a28deb75d8f6a17b3c5b805ecc73a7573238[m
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 19:56:20 2021 -0500
Clean up
[33mcommit 78a7b21e1c9865f5a6a580d051b73a88485be9ad[m
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 19:55:33 2021 -0500
Clean up
[33mcommit 05d438e384b18369b89f2ada91fc491a32629070[m
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 19:29:33 2021 -0500
Enhance Systems Structure
[33mcommit 2d463a8141a0bdb87cbd1c3b57e0e02d2dfbf721[m
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 19:26:24 2021 -0500
Integrate new Systems Structure
[33mcommit 9d4ec69ddf46cd66bc25154113eec509a390c6e2[m
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 17:03:34 2021 -0500
Clean up and Restruct System Config
[33mcommit f77693ad8de8412c176238f1d339d535a6438921[m
Merge: 003a315 1f3a951
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 16:49:24 2021 -0500
Merge branch 'Enhanced_NX_Description'
[33mcommit 1f3a951d09355ec1464c589e0db977fe55acfad6[m
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 16:34:26 2021 -0500
Clean up
[33mcommit 81027df088a3e1c04291a7530c3813a14b4416d8[m
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 16:22:39 2021 -0500
Rewriting Part 4 - Putting all together
[33mcommit 90692c3ae5438b5e4eb3c2a7ef89e4f67a640526[m
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 14:55:35 2021 -0500
Rewriting Part 4 - Putting all together
[33mcommit d1117d119c445899b46e564457c352e7825d95f5[m
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 12:21:53 2021 -0500
Rewriting Part 3- Upper Level Chassis
[33mcommit b68e4de26393307296816a5b0b887d2705ff8f8a[m
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 12:19:53 2021 -0500
Rewriting Part 3 - Upper Level Chassis
[33mcommit 2f91799aaeacdde46f27dbfe1cef23037df741a8[m
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 11:37:20 2021 -0500
Rewrititing Part 2 - Autonomy Elements
[33mcommit d1c0f695b05602c64f8939537b3774deb86054dd[m
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 11:28:55 2021 -0500
Rewriting Part 2 - Autonomy Elements
[33mcommit 56375f43ca1f8c826dce2430d61a0ddf022f3ce3[m
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 10:43:02 2021 -0500
Adding F1TENTH-NX outline description
[33mcommit 87572f608203657b9e64266e9896637a13577e2d[m
Author: Johannes Betz <[email protected]>
Date: Fri Feb 26 10:40:29 2021 -0500
Adding F1TENTH-NX outline image
[33mcommit a4e274d71d0f30253f7f8a9ee1f344203b96a1b7[m
Author: Johannes Betz <[email protected]>
Date: Mon Feb 22 12:45:48 2021 -0500
Restructuring Part 3. Upper Level Chassis
[33mcommit 4def26acdff59c13773e90d11b3b90a4689e8a5f[m
Author: Johannes Betz <[email protected]>
Date: Mon Feb 22 12:30:44 2021 -0500
Restructuring Part 2. Autonomy Elements
[33mcommit a90556d0131bc70be567415aef7389f0a39b0ca7[m
Author: Johannes Betz <[email protected]>
Date: Mon Feb 22 12:22:24 2021 -0500
Restructuring Part 1. Low Level Chassis
[33mcommit 003a315d550b05879920fad657217946234ab6f6[m
Merge: ed44737 c03f96c
Author: Johannes Betz <[email protected]>
Date: Mon Feb 22 11:33:35 2021 -0500
Merge branch 'Adding_NX_Description'
[33mcommit c03f96ceb6035261c0084b30dbee977e497bbc7f[m
Author: Johannes Betz <[email protected]>
Date: Mon Feb 22 10:55:29 2021 -0500
Integration of all Slash+NX Build videos + additional NX only hints
[33mcommit 25e8faebc1a26637ae64339d52497829ba68fb0f[m
Author: Johannes Betz <[email protected]>
Date: Sat Feb 20 20:17:18 2021 -0500
Adjusting HTML Reference regarding the videos
[33mcommit 8b469a7a907221d02a74df3150f38582de4c1974[m
Author: Johannes Betz <[email protected]>
Date: Sat Feb 20 20:15:16 2021 -0500
TEst
[33mcommit 5daf12d83e8c8580d330d02f4432e2a135e6f7b6[m
Author: Johannes Betz <[email protected]>
Date: Sat Feb 20 20:13:29 2021 -0500
Adding HTML reference
[33mcommit 8888f610a9108fc24c50390e8c26c3217aa4768f[m
Author: Johannes Betz <[email protected]>
Date: Sat Feb 20 20:12:32 2021 -0500
Adding HTML reference
[33mcommit 91006dbbc47f39184a5241b06d9ff77ac328f545[m
Author: Johannes Betz <[email protected]>
Date: Sat Feb 20 20:05:08 2021 -0500
Adding Video Playlist on the main information website
[33mcommit ed44737c331fe54e31cf69db262c1be32ff70fff[m
Merge: b98207e 2776fd5
Author: Johannes Betz <[email protected]>
Date: Fri Dec 4 19:58:12 2020 -0500
Merge pull request #51 from JWhitleyWork/add-nx-setup
Add NX Setup Instructions
[33mcommit 2776fd5043b8f640d89fc123e8fb9fffe740632e[m
Author: Joshua Whitley <[email protected]>
Date: Fri Dec 4 15:26:43 2020 -0600
Fixing duplicate doc label.
[33mcommit f5fdb7cd7003872c3700ddab3f23f9f64174a052[m
Author: Joshua Whitley <[email protected]>
Date: Fri Dec 4 15:25:50 2020 -0600
Adding description for NX page to System Configuration page.
[33mcommit 7f05969d0920cbc62ee0fbe4e439f9bcde5ae391[m
Author: Joshua Whitley <[email protected]>
Date: Fri Dec 4 15:17:56 2020 -0600
Removing redundant instructions for the NX.
[33mcommit a9d381a8de5c88263ceb46d36595ec8356f223a0[m
Author: Joshua Whitley <[email protected]>
Date: Fri Dec 4 15:13:31 2020 -0600
Adding instructions for configuring the Xavier NX.
[33mcommit 76020c0b8b6ae660c7c94616855d15e7785d2e3a[m
Merge: 8a936be b98207e
Author: Kim Luong <[email protected]>
Date: Mon Oct 19 11:40:07 2020 -0400
Merge pull request #47 from f1tenth/master
Update firmware_vesc.rst
[33mcommit b98207e721f29bac5a33acc9b458952a09826a5c[m
Author: Kim Luong <[email protected]>
Date: Mon Oct 19 11:39:43 2020 -0400
Update firmware_vesc.rst
[33mcommit 8a936beb31c291ec179cd809c3acd91815b03ebe[m
Merge: 733ffed e4be1f9
Author: Kim Luong <[email protected]>
Date: Mon Oct 19 11:33:49 2020 -0400
Merge pull request #46 from f1tenth/master
merge stable and master
[33mcommit e4be1f97591759903b52b139ad715850fd79d47d[m
Author: Kim Luong <[email protected]>
Date: Mon Oct 19 11:32:00 2020 -0400
Update index.rst
[33mcommit 000f836e487a4db6e55e230b35f62e570c0475da[m
Author: Kim Luong <[email protected]>
Date: Mon Oct 19 11:22:05 2020 -0400
Add NX software instructions.
[33mcommit 733ffed43928082ceaa10ba210c18a68932d7c40[m
Merge: 590270d e0147c3
Author: Kim Luong <[email protected]>
Date: Tue Jun 16 12:15:53 2020 -0400
Merge pull request #42 from f1tenth/master
Added odometry calibration section
[33mcommit e0147c3a57749c1cfbee9296e623fd52e063e4c5[m
Author: Kim Luong <[email protected]>
Date: Tue Jun 16 12:09:49 2020 -0400
Added odometry calibration section
[33mcommit 590270df9a80a4aea0b824450fa241bea9b50c3d[m
Merge: 9c5a64b bb040d8
Author: Kim Luong <[email protected]>
Date: Mon Jun 8 16:34:02 2020 -0400
Merge pull request #41 from f1tenth/master
Show edit on github button.
[33mcommit bb040d83312f74309eedfb6f4d46f7547dec7d7f[m
Author: Kim Luong <[email protected]>
Date: Mon Jun 8 16:32:10 2020 -0400
Show edit on github button.
[33mcommit 9c5a64b766d26a6b6dad9c0f5c0d0dbd02e37056[m
Merge: d1ee0c5 4877150
Author: Kim Luong <[email protected]>
Date: Mon Jun 8 15:52:15 2020 -0400
Merge pull request #40 from f1tenth/master
Merge stable to master
[33mcommit 4877150272d1abd5253183fa19320852c4dd31d0[m
Author: Kim Luong <[email protected]>
Date: Mon Jun 8 15:51:00 2020 -0400
Updated bullet connectors. (see issue #39)
[33mcommit 90b14c54d8cb88b749f73510f3701dc4bbffdf8c[m
Author: Kim Luong <[email protected]>
Date: Mon Jun 8 15:47:35 2020 -0400
Added simulator section.
[33mcommit d1ee0c57dacb6e1c0bffbeaaec69c8dfb389ebe5[m
Merge: c1e2a3b 285fc7a
Author: Kim Luong <[email protected]>
Date: Mon May 25 17:54:05 2020 -0400
Merge pull request #38 from f1tenth/master
Add linux link to vesc tool.
[33mcommit 285fc7a8e5514fdd26ba167a016d74302c1464b3[m
Author: Kim Luong <[email protected]>
Date: Mon May 25 17:48:27 2020 -0400
Add linux link to vesc tool.
[33mcommit c1e2a3b61c3e12b092a34696aec71f09cf01b33b[m
Merge: 50c44df 5409311
Author: Kim Luong <[email protected]>
Date: Mon May 25 11:35:37 2020 -0400
Merge pull request #37 from f1tenth/master
Fixed image.
[33mcommit 5409311d2cb96b23b87ab467e5f734213adfc114[m
Author: Kim Luong <[email protected]>
Date: Mon May 25 11:32:22 2020 -0400
Fixed image.
[33mcommit 50c44df7a0da30bc0cc91f493c2b2dbf1590b20f[m
Merge: 2ac72ee 3e76714
Author: Kim Luong <[email protected]>
Date: Mon May 25 11:26:59 2020 -0400
Merge pull request #36 from f1tenth/master
Updated vesc firmware section.
[33mcommit 3e76714e633456d7cfb58d18b96f96942c29cc64[m
Author: Kim Luong <[email protected]>
Date: Mon May 25 11:22:38 2020 -0400
Updated vesc firmware section.
[33mcommit 2ac72ee67360996d2c148f890805bab4d0c50bca[m
Merge: 2882103 a5f6f59
Author: Kim Luong <[email protected]>
Date: Fri May 22 11:25:30 2020 -0400
Merge pull request #34 from f1tenth/master
updated build/bom organization
[33mcommit a5f6f596f8d3c54a84e492150949434932433e12[m
Author: Kim Luong <[email protected]>
Date: Fri May 22 11:23:34 2020 -0400
Changed organization of building car/bom
[33mcommit 552fc0ad66378bd99b991a40dfde7b4c95df09e8[m
Author: Kim Luong <[email protected]>
Date: Fri May 22 11:07:34 2020 -0400
Update index.rst
[33mcommit 28821039aa7759fcf6d6ac6bf3f7099cbc351d75[m
Merge: 4f28262 153f652
Author: Kim Luong <[email protected]>
Date: Fri May 22 09:39:10 2020 -0400
Merge pull request #33 from f1tenth/master
Update firmware_vesc.rst
[33mcommit 153f65267ce098070a444b165926e9592cfef9a3[m
Author: Kim Luong <[email protected]>
Date: Fri May 22 09:38:27 2020 -0400
Update firmware_vesc.rst
[33mcommit 4f282625d55c543a56ea32247950c6952ce8b0a5[m
Merge: 0b0e0b5 7d3182f
Author: Kim Luong <[email protected]>
Date: Thu May 14 16:56:30 2020 -0400
Merge pull request #32 from f1tenth/master
vesc firmware changes
[33mcommit 7d3182fa6cea9efe7070bf72de395fb55014796d[m
Author: Kim Luong <[email protected]>
Date: Thu May 14 16:51:14 2020 -0400
Fixed link.
[33mcommit d079f73cecb56ed12d0a2010ce6a5371819b99bb[m
Author: Kim Luong <[email protected]>
Date: Thu May 14 16:46:04 2020 -0400
Added comment.
[33mcommit fab546ba79f94176e53f07f56b598cb55d25a207[m
Author: Kim Luong <[email protected]>
Date: Thu May 14 16:32:39 2020 -0400
Firmware update.
[33mcommit 0b0e0b5d32dded41fb75be1913a3ae6fe56db92c[m
Merge: 808d1da 43fb501
Author: Kim Luong <[email protected]>
Date: Wed Apr 15 09:29:17 2020 -0400
Merge pull request #29 from f1tenth/master
Updated platform deck link.
[33mcommit 43fb501629365744a930bf9b510c09653a351406[m
Author: Kim Luong <[email protected]>
Date: Wed Apr 15 09:23:03 2020 -0400
Updated platform deck link.
[33mcommit 808d1da00d12c78591a97b08bf41f9c659762a59[m
Merge: 5a085ba c237d93
Author: Kim Luong <[email protected]>
Date: Tue Apr 14 14:57:10 2020 -0400
Merge pull request #28 from f1tenth/master
Removed traxxas note. Already updated in BOM.
[33mcommit c237d936e76164a147c5d2606dade2c97cbe2fa4[m
Author: Kim Luong <[email protected]>
Date: Tue Apr 14 14:55:04 2020 -0400
Removed traxxas note. Already updated in BOM.
[33mcommit 5a085bae30e1b8f7dc2ba7d3ee0c6779a1bbdbae[m
Merge: 6755ffe f8ff606
Author: Kim Luong <[email protected]>
Date: Mon Apr 13 07:55:06 2020 -0400
Merge pull request #27 from f1tenth/master
Resized images and added references to learn section
[33mcommit f8ff60624d4a1c78a11dcb3fa777e5c91d2e8835[m
Author: Kim Luong <[email protected]>
Date: Mon Apr 13 07:54:06 2020 -0400
Resized images and added references to learn section
[33mcommit 6755ffe30fd290f8b9dd0c3cd25856b06d75b83b[m
Merge: ab6d3dc b48c234
Author: Kim Luong <[email protected]>
Date: Wed Apr 8 14:02:12 2020 -0400
Merge pull request #26 from f1tenth/master
Cleaned up first page.
[33mcommit b48c234d0b0b316bc43cfd9aeb81b8b4f8f55b4b[m
Author: Kim Luong <[email protected]>
Date: Wed Apr 8 14:01:30 2020 -0400
Cleaned up first page.
[33mcommit ab6d3dc58e8bd29290a2d142c30b5e7b20ae91e7[m
Merge: a873a30 ea4d05e
Author: Kim Luong <[email protected]>
Date: Wed Apr 8 08:00:10 2020 -0400
Merge pull request #25 from f1tenth/master
Merge
[33mcommit ea4d05e7b392252a61df635fd612de07bcb559bb[m
Author: Kim Luong <[email protected]>
Date: Wed Apr 8 07:57:34 2020 -0400
Removed edit on github button.
[33mcommit c5d37cbe392cfbb7816fb2a855e74e64bcc3b7fc[m
Merge: caf4882 a873a30
Author: Kim Luong <[email protected]>
Date: Thu Apr 2 15:43:13 2020 -0400
Merge pull request #24 from f1tenth/stable
Stable
[33mcommit a873a30ba92e08cc5dff26eaba64786d779cf130[m
Merge: 7e7cabc 67dfe71
Author: Hongrui (Billy) Zheng <[email protected]>
Date: Thu Apr 2 15:36:37 2020 -0400
Merge pull request #23 from SophieGruenbacher/patch-1
Changes to connect with 10LX, fix vesc udev rules typo.
[33mcommit 67dfe71a1d3ef0db01548563e652ec84a7ec58da[m
Author: SophieGruenbacher <[email protected]>
Date: Thu Apr 2 21:15:50 2020 +0200
Update drive_workspace.rst
[33mcommit 7e7cabcefa5f1d74a04fcffe8739c8da4cde2235[m
Author: Kim Luong <[email protected]>
Date: Thu Apr 2 14:16:19 2020 -0400
Update index.rst
[33mcommit caf48823511b9d3ba4adf83b813c7bb6e06793d0[m
Author: Kim Luong <[email protected]>
Date: Thu Apr 2 12:02:26 2020 -0400
Add notes on slash model.
[33mcommit 91b66979b5dabd70e115a08eaac3e00e22b172df[m
Merge: 70d872c 5c1ad41
Author: Hongrui (Billy) Zheng <[email protected]>
Date: Thu Apr 2 10:03:22 2020 -0400
Merge pull request #22 from f1tenth/master
fix #21, update link
[33mcommit 5c1ad41f7939eb322c71e28732c9480ccf305cf9[m
Author: billyzheng <[email protected]>
Date: Thu Apr 2 10:02:09 2020 -0400
fix #21, update link
[33mcommit 70d872c292ea0de6f8468c5563bc6091805600df[m
Author: Kim Luong <[email protected]>
Date: Thu Apr 2 09:07:48 2020 -0400
removed stable/master branch tip
[33mcommit b1877d58646b2d10a69ba8005d2bb7a712d932d7[m
Merge: 5380d23 faf26aa
Author: Hongrui (Billy) Zheng <[email protected]>
Date: Tue Mar 31 13:34:51 2020 -0400
Merge pull request #20 from f1tenth/master
Updated software section
[33mcommit faf26aae9824b9cd039bf2ace1cbfa7532569a35[m
Author: Kim Luong <[email protected]>
Date: Tue Mar 31 12:49:51 2020 -0400
Edited software section.
[33mcommit 5380d23ed13ebb6525b63a976418c909369e82e6[m
Author: Kim Luong <[email protected]>
Date: Fri Mar 27 14:00:03 2020 -0400
added tbd to to going forward
[33mcommit df17821bc542c2b6e8bd648e4ab73c917cf21ea0[m
Author: Kim Luong <[email protected]>
Date: Fri Mar 27 12:06:37 2020 -0400
Update faq.rst
[33mcommit a74bc25d3ab5a1c7e7c35f929992b6ae5c3b5f04[m
Author: Kim Luong <[email protected]>
Date: Fri Mar 27 12:03:27 2020 -0400
Update faq.rst
[33mcommit bb181f03a1597e23d0960fd90d2238f1b40c20f9[m
Author: Kim Luong <[email protected]>
Date: Thu Mar 26 20:16:31 2020 -0400
fuxed car gif
[33mcommit fce0138fbc6f8c76d97badc94aa12eb2a37fdb46[m
Author: Hongrui (Billy) Zheng <[email protected]>
Date: Thu Mar 26 18:39:11 2020 -0400
Update issue templates
[33mcommit 9fa729229faf259e58e637434ff45a8b7a5e5c97[m
Author: Kim Luong <[email protected]>
Date: Wed Mar 25 14:39:00 2020 -0400
title edit
[33mcommit 7085821a66bf9523db3f0d7c3734e983405d7bba[m
Merge: 2a5eb0a d8c5edd
Author: Kim Luong <[email protected]>
Date: Wed Mar 25 14:26:14 2020 -0400
Merge branch 'master' into stable
[33mcommit d8c5edd10256100c4cf27d2a33afa20f077b046e[m
Author: Kim Luong <[email protected]>
Date: Wed Mar 25 14:21:01 2020 -0400
small changes, should be good to be live for now.
[33mcommit 65c665fc78c0d8d9ab995e26ec0ebf3c9a799d20[m
Author: Kim Luong <[email protected]>
Date: Wed Mar 25 09:57:10 2020 -0400
Update index.rst
[33mcommit 2a5eb0aa0113a061b3ccccf209e42493d2c87dbf[m
Author: Kim Luong <[email protected]>
Date: Wed Mar 25 09:56:52 2020 -0400
Update index.rst
[33mcommit 767cf830b8bb336df940dc917c2c2f75fd7ec371[m
Author: Kim Luong <[email protected]>
Date: Wed Mar 25 09:50:06 2020 -0400
Made note of stable branch.
[33mcommit cab7709f3e7f97843cd6dec3772137fe1e317e50[m
Merge: 6dee098 eac78a2
Author: Kim Luong <[email protected]>
Date: Wed Mar 25 09:46:37 2020 -0400
Merge pull request #15 from f1tenth/master
merge stable with master
[33mcommit eac78a25267ecbf3550610b67e5faf9bd0d70f24[m
Author: Kim Luong <[email protected]>
Date: Wed Mar 25 09:22:10 2020 -0400
fixed up intro page
[33mcommit c82d54b3c1f408a36249f24c0c9a8cb7df2d14ea[m
Author: Kim Luong <[email protected]>
Date: Wed Mar 25 08:52:54 2020 -0400
rename gif file.