├── .gitignore ├── AFIT-END-DS-18-D-003.pdf ├── Example_Pipeline_Output └── Make_Model_Year │ └── 0 │ ├── clusters │ ├── cluster_10.png │ ├── cluster_11.png │ ├── cluster_14.png │ ├── cluster_17.png │ ├── cluster_18.png │ ├── cluster_21.png │ ├── cluster_27.png │ ├── cluster_3.png │ ├── cluster_4.png │ ├── cluster_5.png │ └── cluster_8.png │ ├── dendrogram_0.png │ ├── figures │ ├── 0x110.png │ ├── 0x120.png │ ├── 0x128.png │ ├── 0x130.png │ ├── 0x170.png │ ├── 0x191.png │ ├── 0x199.png │ ├── 0x19d.png │ ├── 0x1a1.png │ ├── 0x1f5.png │ ├── 0x285.png │ ├── 0x300.png │ ├── 0x308.png │ ├── 0x320.png │ ├── 0x348.png │ ├── 0x380.png │ ├── 0x390.png │ ├── 0x410.png │ ├── 0x4c1.png │ ├── 0x4c9.png │ ├── 0x510.png │ ├── 0x520.png │ ├── 0x672.png │ ├── 0xc9.png │ └── 0xf9.png │ ├── pickleArbIDs.txt │ ├── pickleClusters.p │ ├── pickleCombinedDataFrame.txt │ ├── pickleDroppedClusters.p │ ├── pickleLinkage.p │ ├── pickleSignals.txt │ ├── pickleSingletonClusters.p │ ├── pickleSubset.p │ ├── pickleSummaryStats.p │ └── subset_correlation_matrix.csv ├── LICENSE ├── Pipeline ├── .gitignore ├── ArbID.py ├── FromCanUtilsLog.py ├── J1979.py ├── LexicalAnalysis.py ├── Main.py ├── PipelineTimer.py ├── Plotter.py ├── PreProcessor.py ├── SemanticAnalysis.py └── Signal.py ├── Pipeline_multi-file ├── ArbID.py ├── FileBoi.py ├── J1979.py ├── LexicalAnalysis.py ├── Main.py ├── OBD2_pids.csv ├── PipelineTimer.py ├── Plotter.py ├── PreProcessor.py ├── Sample.py ├── SemanticAnalysis.py ├── Signal.py ├── Validator.py └── maximize_sum_shannon.py ├── R ├── .Rhistory ├── CCM_speed_brake_rpm.R ├── brake_data.csv ├── brake_xmap_rpm.Rda ├── brake_xmap_rpm_v2.Rda ├── brake_xmap_speed.Rda ├── brake_xmap_speed_v2.Rda ├── city │ ├── .Rhistory │ ├── brake_block_smap_output.Rda │ ├── brake_data_city.csv │ ├── brake_multiview.Rda │ ├── brake_xmap_rpm.Rda │ ├── brake_xmap_speed.Rda │ ├── ccm_one_row_city.pdf │ ├── ccm_optimal_tp.Rda │ ├── ccm_tp.pdf │ ├── commands_list_city.txt │ ├── last.dump.rda │ ├── multiview_brake.csv │ ├── rpm_data_city.csv │ ├── rpm_xmap_brake.Rda │ ├── rpm_xmap_speed.Rda │ ├── simplex_embedding_one_row_city.pdf │ ├── simplex_forecasting_one_row_city.pdf │ ├── simplex_output_brake.Rda │ ├── simplex_output_brake_E_9_tp_1-1000.Rda │ ├── simplex_output_rpm.Rda │ ├── simplex_output_rpm_E_9_tp_1-1000.Rda │ ├── simplex_output_speed.Rda │ ├── simplex_output_speed_E_9_tp_1-1000.Rda │ ├── smap_one_row_city.pdf │ ├── smap_output_brake.Rda │ ├── smap_output_rpm.Rda │ ├── smap_output_speed.Rda │ ├── speed_brake_rpm_city.csv │ ├── speed_data_city.csv │ ├── speed_xmap_brake.Rda │ ├── speed_xmap_rpm.Rda │ └── xmap_tp.pdf ├── commands_list.txt ├── cross-correlation_speed_rpm.R ├── home │ ├── .Rhistory │ ├── commands_list_home.txt │ ├── simplex_embedding_one_row_home.pdf │ ├── simplex_output_brake.Rda │ ├── simplex_output_rpm.Rda │ ├── simplex_output_speed.Rda │ ├── simplex_output_throttle.Rda │ └── speed_brake_rpm_throttle_home.csv ├── load_xmap_Rda.R ├── plant_data.csv ├── plot_causal_onto_brake.R ├── plot_causal_onto_rpm.R ├── plot_causal_onto_speed.R ├── rpm_data.csv ├── rpm_xmap_brake ├── rpm_xmap_brake.Rda ├── rpm_xmap_brake_v2.Rda ├── rpm_xmap_speed.Rda ├── rpm_xmap_speed_v2.Rda ├── run_all_xmap.R ├── simplex_output_brake.Rda ├── simplex_output_brake.pdf ├── simplex_output_brake_E_9_tp_1-10.Rda ├── simplex_output_brake_E_9_tp_1-100.Rda ├── simplex_output_brake_E_9_tp_1-1000.Rda ├── simplex_output_brake_tp_rho.pdf ├── simplex_output_brake_tp_rho_1-100.pdf ├── simplex_output_brake_tp_rho_1-1000.pdf ├── simplex_output_rpm.Rda ├── simplex_output_rpm.pdf ├── simplex_output_rpm_E_10_tp_1-10.Rda ├── simplex_output_rpm_E_9_tp_1-100.Rda ├── simplex_output_rpm_E_9_tp_1-1000.Rda ├── simplex_output_rpm_E_9_tp_1-500.Rda ├── simplex_output_rpm_tp_rho.pdf ├── simplex_output_rpm_tp_rho_1-100.pdf ├── simplex_output_rpm_tp_rho_1-1000.pdf ├── simplex_output_rpm_tp_rho_1-500.pdf ├── simplex_output_speed.Rda ├── simplex_output_speed.pdf ├── simplex_output_speed_E_10_tp_1-10.Rda ├── simplex_output_speed_E_9_tp_1-1000.Rda ├── simplex_output_speed_tp_rho_1-1000.pdf ├── smap_one_row.pdf ├── smap_output_brake.Rda ├── smap_output_brake_E_9.pdf ├── smap_output_rpm.Rda ├── smap_output_rpm_E_9.pdf ├── smap_output_speed.Rda ├── smap_output_speed_E_9.pdf ├── speed_brake_rpm.csv ├── speed_data.csv ├── speed_xmap_brake.Rda ├── speed_xmap_brake_v2.Rda ├── speed_xmap_rpm.R ├── speed_xmap_rpm.Rda ├── speed_xmap_rpm_v2.Rda ├── xmap_brake_rpm.pdf ├── xmap_speed_brake.pdf └── xmap_speed_rpm.pdf ├── README.md ├── loggerProgram0.log └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/.gitignore -------------------------------------------------------------------------------- /AFIT-END-DS-18-D-003.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/AFIT-END-DS-18-D-003.pdf -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_10.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_11.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_14.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_17.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_18.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_21.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_27.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_3.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_4.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_5.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/clusters/cluster_8.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/dendrogram_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/dendrogram_0.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x110.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x120.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x128.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x130.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x170.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x191.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x199.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x199.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x19d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x19d.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x1a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x1a1.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x1f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x1f5.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x285.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x285.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x300.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x308.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x308.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x320.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x348.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x348.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x380.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x380.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x390.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x390.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x410.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x410.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x4c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x4c1.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x4c9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x4c9.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x510.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x510.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x520.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x520.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0x672.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0x672.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0xc9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0xc9.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/figures/0xf9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/figures/0xf9.png -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/pickleArbIDs.txt: -------------------------------------------------------------------------------- 1 | This .p file is not included due to > 10 MB size. -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/pickleClusters.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/pickleClusters.p -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/pickleCombinedDataFrame.txt: -------------------------------------------------------------------------------- 1 | This .p file is not included due to > 10 MB size. -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/pickleDroppedClusters.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/pickleDroppedClusters.p -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/pickleLinkage.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/pickleLinkage.p -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/pickleSignals.txt: -------------------------------------------------------------------------------- 1 | This .p file is not included due to > 10 MB size. -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/pickleSingletonClusters.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/pickleSingletonClusters.p -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/pickleSubset.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/pickleSubset.p -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/pickleSummaryStats.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/pickleSummaryStats.p -------------------------------------------------------------------------------- /Example_Pipeline_Output/Make_Model_Year/0/subset_correlation_matrix.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Example_Pipeline_Output/Make_Model_Year/0/subset_correlation_matrix.csv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipeline/.gitignore: -------------------------------------------------------------------------------- 1 | clusters/ 2 | figures/ 3 | output/ 4 | 5 | -------------------------------------------------------------------------------- /Pipeline/ArbID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline/ArbID.py -------------------------------------------------------------------------------- /Pipeline/FromCanUtilsLog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline/FromCanUtilsLog.py -------------------------------------------------------------------------------- /Pipeline/J1979.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline/J1979.py -------------------------------------------------------------------------------- /Pipeline/LexicalAnalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline/LexicalAnalysis.py -------------------------------------------------------------------------------- /Pipeline/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline/Main.py -------------------------------------------------------------------------------- /Pipeline/PipelineTimer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline/PipelineTimer.py -------------------------------------------------------------------------------- /Pipeline/Plotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline/Plotter.py -------------------------------------------------------------------------------- /Pipeline/PreProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline/PreProcessor.py -------------------------------------------------------------------------------- /Pipeline/SemanticAnalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline/SemanticAnalysis.py -------------------------------------------------------------------------------- /Pipeline/Signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline/Signal.py -------------------------------------------------------------------------------- /Pipeline_multi-file/ArbID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline_multi-file/ArbID.py -------------------------------------------------------------------------------- /Pipeline_multi-file/FileBoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline_multi-file/FileBoi.py -------------------------------------------------------------------------------- /Pipeline_multi-file/J1979.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline_multi-file/J1979.py -------------------------------------------------------------------------------- /Pipeline_multi-file/LexicalAnalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline_multi-file/LexicalAnalysis.py -------------------------------------------------------------------------------- /Pipeline_multi-file/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline_multi-file/Main.py -------------------------------------------------------------------------------- /Pipeline_multi-file/OBD2_pids.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline_multi-file/OBD2_pids.csv -------------------------------------------------------------------------------- /Pipeline_multi-file/PipelineTimer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline_multi-file/PipelineTimer.py -------------------------------------------------------------------------------- /Pipeline_multi-file/Plotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline_multi-file/Plotter.py -------------------------------------------------------------------------------- /Pipeline_multi-file/PreProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline_multi-file/PreProcessor.py -------------------------------------------------------------------------------- /Pipeline_multi-file/Sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline_multi-file/Sample.py -------------------------------------------------------------------------------- /Pipeline_multi-file/SemanticAnalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline_multi-file/SemanticAnalysis.py -------------------------------------------------------------------------------- /Pipeline_multi-file/Signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline_multi-file/Signal.py -------------------------------------------------------------------------------- /Pipeline_multi-file/Validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline_multi-file/Validator.py -------------------------------------------------------------------------------- /Pipeline_multi-file/maximize_sum_shannon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/Pipeline_multi-file/maximize_sum_shannon.py -------------------------------------------------------------------------------- /R/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/.Rhistory -------------------------------------------------------------------------------- /R/CCM_speed_brake_rpm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/CCM_speed_brake_rpm.R -------------------------------------------------------------------------------- /R/brake_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/brake_data.csv -------------------------------------------------------------------------------- /R/brake_xmap_rpm.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/brake_xmap_rpm.Rda -------------------------------------------------------------------------------- /R/brake_xmap_rpm_v2.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/brake_xmap_rpm_v2.Rda -------------------------------------------------------------------------------- /R/brake_xmap_speed.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/brake_xmap_speed.Rda -------------------------------------------------------------------------------- /R/brake_xmap_speed_v2.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/brake_xmap_speed_v2.Rda -------------------------------------------------------------------------------- /R/city/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/.Rhistory -------------------------------------------------------------------------------- /R/city/brake_block_smap_output.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/brake_block_smap_output.Rda -------------------------------------------------------------------------------- /R/city/brake_data_city.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/brake_data_city.csv -------------------------------------------------------------------------------- /R/city/brake_multiview.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/brake_multiview.Rda -------------------------------------------------------------------------------- /R/city/brake_xmap_rpm.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/brake_xmap_rpm.Rda -------------------------------------------------------------------------------- /R/city/brake_xmap_speed.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/brake_xmap_speed.Rda -------------------------------------------------------------------------------- /R/city/ccm_one_row_city.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/ccm_one_row_city.pdf -------------------------------------------------------------------------------- /R/city/ccm_optimal_tp.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/ccm_optimal_tp.Rda -------------------------------------------------------------------------------- /R/city/ccm_tp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/ccm_tp.pdf -------------------------------------------------------------------------------- /R/city/commands_list_city.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/commands_list_city.txt -------------------------------------------------------------------------------- /R/city/last.dump.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/last.dump.rda -------------------------------------------------------------------------------- /R/city/multiview_brake.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/multiview_brake.csv -------------------------------------------------------------------------------- /R/city/rpm_data_city.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/rpm_data_city.csv -------------------------------------------------------------------------------- /R/city/rpm_xmap_brake.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/rpm_xmap_brake.Rda -------------------------------------------------------------------------------- /R/city/rpm_xmap_speed.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/rpm_xmap_speed.Rda -------------------------------------------------------------------------------- /R/city/simplex_embedding_one_row_city.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/simplex_embedding_one_row_city.pdf -------------------------------------------------------------------------------- /R/city/simplex_forecasting_one_row_city.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/simplex_forecasting_one_row_city.pdf -------------------------------------------------------------------------------- /R/city/simplex_output_brake.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/simplex_output_brake.Rda -------------------------------------------------------------------------------- /R/city/simplex_output_brake_E_9_tp_1-1000.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/simplex_output_brake_E_9_tp_1-1000.Rda -------------------------------------------------------------------------------- /R/city/simplex_output_rpm.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/simplex_output_rpm.Rda -------------------------------------------------------------------------------- /R/city/simplex_output_rpm_E_9_tp_1-1000.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/simplex_output_rpm_E_9_tp_1-1000.Rda -------------------------------------------------------------------------------- /R/city/simplex_output_speed.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/simplex_output_speed.Rda -------------------------------------------------------------------------------- /R/city/simplex_output_speed_E_9_tp_1-1000.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/simplex_output_speed_E_9_tp_1-1000.Rda -------------------------------------------------------------------------------- /R/city/smap_one_row_city.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/smap_one_row_city.pdf -------------------------------------------------------------------------------- /R/city/smap_output_brake.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/smap_output_brake.Rda -------------------------------------------------------------------------------- /R/city/smap_output_rpm.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/smap_output_rpm.Rda -------------------------------------------------------------------------------- /R/city/smap_output_speed.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/smap_output_speed.Rda -------------------------------------------------------------------------------- /R/city/speed_brake_rpm_city.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/speed_brake_rpm_city.csv -------------------------------------------------------------------------------- /R/city/speed_data_city.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/speed_data_city.csv -------------------------------------------------------------------------------- /R/city/speed_xmap_brake.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/speed_xmap_brake.Rda -------------------------------------------------------------------------------- /R/city/speed_xmap_rpm.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/speed_xmap_rpm.Rda -------------------------------------------------------------------------------- /R/city/xmap_tp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/city/xmap_tp.pdf -------------------------------------------------------------------------------- /R/commands_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/commands_list.txt -------------------------------------------------------------------------------- /R/cross-correlation_speed_rpm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/cross-correlation_speed_rpm.R -------------------------------------------------------------------------------- /R/home/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/home/.Rhistory -------------------------------------------------------------------------------- /R/home/commands_list_home.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/home/commands_list_home.txt -------------------------------------------------------------------------------- /R/home/simplex_embedding_one_row_home.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/home/simplex_embedding_one_row_home.pdf -------------------------------------------------------------------------------- /R/home/simplex_output_brake.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/home/simplex_output_brake.Rda -------------------------------------------------------------------------------- /R/home/simplex_output_rpm.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/home/simplex_output_rpm.Rda -------------------------------------------------------------------------------- /R/home/simplex_output_speed.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/home/simplex_output_speed.Rda -------------------------------------------------------------------------------- /R/home/simplex_output_throttle.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/home/simplex_output_throttle.Rda -------------------------------------------------------------------------------- /R/home/speed_brake_rpm_throttle_home.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/home/speed_brake_rpm_throttle_home.csv -------------------------------------------------------------------------------- /R/load_xmap_Rda.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/load_xmap_Rda.R -------------------------------------------------------------------------------- /R/plant_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/plant_data.csv -------------------------------------------------------------------------------- /R/plot_causal_onto_brake.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/plot_causal_onto_brake.R -------------------------------------------------------------------------------- /R/plot_causal_onto_rpm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/plot_causal_onto_rpm.R -------------------------------------------------------------------------------- /R/plot_causal_onto_speed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/plot_causal_onto_speed.R -------------------------------------------------------------------------------- /R/rpm_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/rpm_data.csv -------------------------------------------------------------------------------- /R/rpm_xmap_brake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/rpm_xmap_brake -------------------------------------------------------------------------------- /R/rpm_xmap_brake.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/rpm_xmap_brake.Rda -------------------------------------------------------------------------------- /R/rpm_xmap_brake_v2.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/rpm_xmap_brake_v2.Rda -------------------------------------------------------------------------------- /R/rpm_xmap_speed.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/rpm_xmap_speed.Rda -------------------------------------------------------------------------------- /R/rpm_xmap_speed_v2.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/rpm_xmap_speed_v2.Rda -------------------------------------------------------------------------------- /R/run_all_xmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/run_all_xmap.R -------------------------------------------------------------------------------- /R/simplex_output_brake.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_brake.Rda -------------------------------------------------------------------------------- /R/simplex_output_brake.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_brake.pdf -------------------------------------------------------------------------------- /R/simplex_output_brake_E_9_tp_1-10.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_brake_E_9_tp_1-10.Rda -------------------------------------------------------------------------------- /R/simplex_output_brake_E_9_tp_1-100.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_brake_E_9_tp_1-100.Rda -------------------------------------------------------------------------------- /R/simplex_output_brake_E_9_tp_1-1000.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_brake_E_9_tp_1-1000.Rda -------------------------------------------------------------------------------- /R/simplex_output_brake_tp_rho.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_brake_tp_rho.pdf -------------------------------------------------------------------------------- /R/simplex_output_brake_tp_rho_1-100.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_brake_tp_rho_1-100.pdf -------------------------------------------------------------------------------- /R/simplex_output_brake_tp_rho_1-1000.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_brake_tp_rho_1-1000.pdf -------------------------------------------------------------------------------- /R/simplex_output_rpm.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_rpm.Rda -------------------------------------------------------------------------------- /R/simplex_output_rpm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_rpm.pdf -------------------------------------------------------------------------------- /R/simplex_output_rpm_E_10_tp_1-10.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_rpm_E_10_tp_1-10.Rda -------------------------------------------------------------------------------- /R/simplex_output_rpm_E_9_tp_1-100.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_rpm_E_9_tp_1-100.Rda -------------------------------------------------------------------------------- /R/simplex_output_rpm_E_9_tp_1-1000.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_rpm_E_9_tp_1-1000.Rda -------------------------------------------------------------------------------- /R/simplex_output_rpm_E_9_tp_1-500.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_rpm_E_9_tp_1-500.Rda -------------------------------------------------------------------------------- /R/simplex_output_rpm_tp_rho.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_rpm_tp_rho.pdf -------------------------------------------------------------------------------- /R/simplex_output_rpm_tp_rho_1-100.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_rpm_tp_rho_1-100.pdf -------------------------------------------------------------------------------- /R/simplex_output_rpm_tp_rho_1-1000.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_rpm_tp_rho_1-1000.pdf -------------------------------------------------------------------------------- /R/simplex_output_rpm_tp_rho_1-500.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_rpm_tp_rho_1-500.pdf -------------------------------------------------------------------------------- /R/simplex_output_speed.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_speed.Rda -------------------------------------------------------------------------------- /R/simplex_output_speed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_speed.pdf -------------------------------------------------------------------------------- /R/simplex_output_speed_E_10_tp_1-10.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_speed_E_10_tp_1-10.Rda -------------------------------------------------------------------------------- /R/simplex_output_speed_E_9_tp_1-1000.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_speed_E_9_tp_1-1000.Rda -------------------------------------------------------------------------------- /R/simplex_output_speed_tp_rho_1-1000.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/simplex_output_speed_tp_rho_1-1000.pdf -------------------------------------------------------------------------------- /R/smap_one_row.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/smap_one_row.pdf -------------------------------------------------------------------------------- /R/smap_output_brake.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/smap_output_brake.Rda -------------------------------------------------------------------------------- /R/smap_output_brake_E_9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/smap_output_brake_E_9.pdf -------------------------------------------------------------------------------- /R/smap_output_rpm.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/smap_output_rpm.Rda -------------------------------------------------------------------------------- /R/smap_output_rpm_E_9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/smap_output_rpm_E_9.pdf -------------------------------------------------------------------------------- /R/smap_output_speed.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/smap_output_speed.Rda -------------------------------------------------------------------------------- /R/smap_output_speed_E_9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/smap_output_speed_E_9.pdf -------------------------------------------------------------------------------- /R/speed_brake_rpm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/speed_brake_rpm.csv -------------------------------------------------------------------------------- /R/speed_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/speed_data.csv -------------------------------------------------------------------------------- /R/speed_xmap_brake.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/speed_xmap_brake.Rda -------------------------------------------------------------------------------- /R/speed_xmap_brake_v2.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/speed_xmap_brake_v2.Rda -------------------------------------------------------------------------------- /R/speed_xmap_rpm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/speed_xmap_rpm.R -------------------------------------------------------------------------------- /R/speed_xmap_rpm.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/speed_xmap_rpm.Rda -------------------------------------------------------------------------------- /R/speed_xmap_rpm_v2.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/speed_xmap_rpm_v2.Rda -------------------------------------------------------------------------------- /R/xmap_brake_rpm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/xmap_brake_rpm.pdf -------------------------------------------------------------------------------- /R/xmap_speed_brake.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/xmap_speed_brake.pdf -------------------------------------------------------------------------------- /R/xmap_speed_rpm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/R/xmap_speed_rpm.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/README.md -------------------------------------------------------------------------------- /loggerProgram0.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brent-stone/CAN_Reverse_Engineering/HEAD/loggerProgram0.log -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | scikit-learn 2 | pandas 3 | matplotlib 4 | --------------------------------------------------------------------------------