├── .gitattributes ├── .github └── workflows │ └── CheckBuild.yml ├── .gitignore ├── Apps ├── COPYING.txt ├── J2534DotNet │ ├── J2534DotNet.sln │ ├── J2534DotNet │ │ ├── IJ2534.cs │ │ ├── J2534.cs │ │ ├── J2534Defs.cs │ │ ├── J2534Detect.cs │ │ ├── J2534Device.cs │ │ ├── J2534DllWrapper.cs │ │ ├── J2534DotNet.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── Sample │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── ObdComm.cs │ │ ├── Program.cs │ │ └── Sample.csproj ├── PcmApps.sln ├── PcmHammer │ ├── 0411_256px.ico │ ├── App.config │ ├── CommandLineOptions.cs │ ├── Configuration.cs │ ├── DialogBoxes │ │ ├── DelayDialogBox.Designer.cs │ │ ├── DelayDialogBox.cs │ │ ├── DelayDialogBox.resx │ │ ├── SettingsDialogBox.Designer.cs │ │ ├── SettingsDialogBox.cs │ │ ├── SettingsDialogBox.resx │ │ ├── UserDefinedKeyDialogBox.Designer.cs │ │ ├── UserDefinedKeyDialogBox.cs │ │ ├── UserDefinedKeyDialogBox.resx │ │ ├── VinForm.Designer.cs │ │ ├── VinForm.cs │ │ └── VinForm.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── PcmHammer.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── credits.html │ ├── help.html │ ├── packages.config │ └── start.txt ├── PcmLibrary │ ├── CKernelReader.cs │ ├── CKernelVerifier.cs │ ├── CKernelWriter.cs │ ├── Devices │ │ ├── AllProDeviceImplementation.cs │ │ ├── AvtDevice.cs │ │ ├── Device.cs │ │ ├── ElmDevice.cs │ │ ├── ElmDeviceImplementation.cs │ │ ├── MockDevice.cs │ │ ├── OBDXProDevice.cs │ │ ├── ScanToolDeviceImplementation.cs │ │ └── SerialDevice.cs │ ├── Logging │ │ ├── CanLogger.cs │ │ ├── CanParser.cs │ │ ├── DpidConfiguration.cs │ │ ├── FastLogger.cs │ │ ├── LogColumn.cs │ │ ├── LogFileWriter.cs │ │ ├── LogProfile.cs │ │ ├── LogProfileReader.cs │ │ ├── LogProfileWriter.cs │ │ ├── LogRowParser.cs │ │ ├── Logger.cs │ │ ├── MathValueProcessor.cs │ │ ├── Parameter.cs │ │ ├── ParameterDatabase.cs │ │ ├── SlowLogger.cs │ │ ├── UnsignedHexValue.cs │ │ └── ValueConverter.cs │ ├── Messages │ │ ├── BlockId.cs │ │ ├── Message.cs │ │ ├── Protocol.Kernel.cs │ │ ├── Protocol.Logging.cs │ │ ├── Protocol.Misc.cs │ │ ├── Protocol.Properties.cs │ │ ├── Protocol.ReadWrite.cs │ │ ├── Protocol.Security.cs │ │ ├── Protocol.Speed.cs │ │ ├── Protocol.Utility.cs │ │ ├── Protocol.cs │ │ └── VPW.cs │ ├── Misc │ │ ├── AwayMode.cs │ │ ├── Crc.cs │ │ ├── Exceptions.cs │ │ ├── FileValidator.cs │ │ ├── FlashChip.cs │ │ ├── HttpServer.cs │ │ ├── ILogger.cs │ │ ├── KeyAlgorithm.cs │ │ ├── MockPcm.cs │ │ ├── PcmInfo.cs │ │ ├── Query.cs │ │ ├── Response.cs │ │ ├── ToolPresentNotifier.cs │ │ └── Utility.cs │ ├── PcmLibrary.csproj │ ├── Ports │ │ ├── IPort.cs │ │ ├── MockAvt852.cs │ │ └── MockPort.cs │ ├── Vehicle.Kernel.cs │ ├── Vehicle.Logging.cs │ ├── Vehicle.Properties.cs │ ├── Vehicle.TestKernel.cs │ └── Vehicle.cs ├── PcmLibraryWindowsForms │ ├── App.config │ ├── ContentLoader.cs │ ├── DeviceConfiguration.cs │ ├── Devices │ │ ├── DeviceFactory.cs │ │ ├── J2534Device.cs │ │ └── J2534DeviceFinder.cs │ ├── DialogBoxes │ │ ├── CanForm.Designer.cs │ │ ├── CanForm.cs │ │ ├── CanForm.resx │ │ ├── DevicePicker.Designer.cs │ │ ├── DevicePicker.cs │ │ ├── DevicePicker.resx │ │ ├── HWSelector.Designer.cs │ │ ├── HWSelector.cs │ │ ├── HWSelector.resx │ │ ├── OperatingSystemID.Designer.cs │ │ ├── OperatingSystemID.cs │ │ └── OperatingSystemID.resx │ ├── MainFormBase.Designer.cs │ ├── MainFormBase.cs │ ├── PcmLibraryWindowsForms.csproj │ ├── Ports │ │ ├── HttpPort.cs │ │ ├── PortDiscovery.cs │ │ └── StandardPort.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── PcmLogger │ ├── 3358.RamParameters.LogProfile │ ├── App.config │ ├── Basics.LogProfile │ ├── Configuration.cs │ ├── Example1.xml.profile │ ├── Example2.xml.profile │ ├── Example3.xml.profile │ ├── Failed.json │ ├── FuelTrims.LogProfile │ ├── General.json.profile │ ├── General.xml.profile │ ├── Idle.json.profile │ ├── Idle.xml.profile │ ├── IdleAir.xml.profile │ ├── IdleDfco.xml.profile │ ├── IdlePID.xml.profile │ ├── IdleTrim.xml.profile │ ├── Knock.xml.profile │ ├── MainForm.Can.cs │ ├── MainForm.Designer.cs │ ├── MainForm.LogProfile.cs │ ├── MainForm.LoggingThread.cs │ ├── MainForm.ParameterGrid.cs │ ├── MainForm.ProfileList.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── OldProfiles │ │ ├── Idle2.profile │ │ └── Test.profile │ ├── Parameters.12587603.xml │ ├── Parameters.12593358.xml │ ├── Parameters.CAN.xml │ ├── Parameters.DidNotWork.xml │ ├── Parameters.Math.xml │ ├── Parameters.RAM.xml │ ├── Parameters.Standard.xml │ ├── PathDisplayAdapter.cs │ ├── PcmLogger.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── packages.config ├── ReadMe.md ├── Tests │ ├── AvtTests.cs │ ├── CanParserTests.cs │ ├── LoggingTests.cs │ ├── MathTests.cs │ ├── MockLogger.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ScanToolTests.cs │ ├── TestLogger.cs │ ├── TestPort.cs │ ├── TestScenarios.cs │ ├── Tests.csproj │ ├── UtilityTests.cs │ ├── app.config │ └── packages.config └── VpwExplorer │ ├── App.config │ ├── Configuration.cs │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── VpwExplorer.csproj │ ├── VpwExplorerMainForm.Designer.cs │ ├── VpwExplorerMainForm.cs │ └── VpwExplorerMainForm.resx ├── DevTools ├── Bin2Hex │ ├── App.config │ ├── Bin2Hex.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── ByteSwap │ ├── App.config │ ├── ByteSwap.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── COPYING.txt ├── CaptureSerial │ ├── App.config │ ├── CaptureSerial.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── DevTools.sln ├── FindThisInThat │ ├── App.config │ ├── FindThisInThat.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Hex2Bin │ ├── App.config │ ├── Hex2Bin.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── SRecordToKernel │ ├── Program.cs │ ├── Properties │ │ └── PublishProfiles │ │ │ └── FolderProfile.pubxml │ ├── SRecord.cs │ ├── SRecordReader.cs │ ├── SRecordToKernel.csproj │ ├── publish.bat │ └── readme.txt ├── Test │ ├── TestBinHex.bat │ └── TestByteSwap.bat └── VpwDecoder │ ├── App.config │ ├── Data.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── TestData │ └── Test1.txt │ └── VpwDecoder.csproj ├── Docs ├── ReadMe.md ├── Read_ID_Commands.txt ├── SeedAndKeyAlgorithm.txt └── Write_ID_Commands ├── Kernels ├── .gitignore ├── Build.cmd ├── BuildAll.cmd ├── CFiles-Micro.list ├── CFiles-P01.list ├── CFiles-P04.list ├── CFiles-P10.list ├── CFiles-P12.list ├── CFiles-Read.list ├── CFiles-Test.list ├── Clean.cmd ├── Common-Assembly.h ├── Common-P04.h ├── CreateCKernelPCMSpecificLinkerScript.cmd ├── Kernel-Micro.c ├── Kernel-P01.c ├── Kernel-P04.c ├── Kernel-P10.c ├── Kernel-P12.c ├── Kernel-Read.c ├── Kernel-Test.c ├── Kernel.S ├── Kernel.ld ├── Loader.S ├── Loader.ld ├── Readme-Assembly.txt ├── Readme-P04.txt ├── build.bat ├── common-readwrite.c ├── common.c ├── common.h ├── crc.c ├── fixpath.bat ├── flash-amd.c ├── flash-intel.c ├── flash.h ├── gcc.bat ├── main.c ├── makefile ├── makefile-assembly ├── readme.txt └── test.cpp ├── ReadMe.md └── Release.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/CheckBuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/.github/workflows/CheckBuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/.gitignore -------------------------------------------------------------------------------- /Apps/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/COPYING.txt -------------------------------------------------------------------------------- /Apps/J2534DotNet/J2534DotNet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/J2534DotNet/J2534DotNet.sln -------------------------------------------------------------------------------- /Apps/J2534DotNet/J2534DotNet/IJ2534.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/J2534DotNet/J2534DotNet/IJ2534.cs -------------------------------------------------------------------------------- /Apps/J2534DotNet/J2534DotNet/J2534.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/J2534DotNet/J2534DotNet/J2534.cs -------------------------------------------------------------------------------- /Apps/J2534DotNet/J2534DotNet/J2534Defs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/J2534DotNet/J2534DotNet/J2534Defs.cs -------------------------------------------------------------------------------- /Apps/J2534DotNet/J2534DotNet/J2534Detect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/J2534DotNet/J2534DotNet/J2534Detect.cs -------------------------------------------------------------------------------- /Apps/J2534DotNet/J2534DotNet/J2534Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/J2534DotNet/J2534DotNet/J2534Device.cs -------------------------------------------------------------------------------- /Apps/J2534DotNet/J2534DotNet/J2534DllWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/J2534DotNet/J2534DotNet/J2534DllWrapper.cs -------------------------------------------------------------------------------- /Apps/J2534DotNet/J2534DotNet/J2534DotNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/J2534DotNet/J2534DotNet/J2534DotNet.csproj -------------------------------------------------------------------------------- /Apps/J2534DotNet/J2534DotNet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/J2534DotNet/J2534DotNet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Apps/J2534DotNet/Sample/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/J2534DotNet/Sample/Form1.Designer.cs -------------------------------------------------------------------------------- /Apps/J2534DotNet/Sample/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/J2534DotNet/Sample/Form1.cs -------------------------------------------------------------------------------- /Apps/J2534DotNet/Sample/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/J2534DotNet/Sample/Form1.resx -------------------------------------------------------------------------------- /Apps/J2534DotNet/Sample/ObdComm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/J2534DotNet/Sample/ObdComm.cs -------------------------------------------------------------------------------- /Apps/J2534DotNet/Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/J2534DotNet/Sample/Program.cs -------------------------------------------------------------------------------- /Apps/J2534DotNet/Sample/Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/J2534DotNet/Sample/Sample.csproj -------------------------------------------------------------------------------- /Apps/PcmApps.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmApps.sln -------------------------------------------------------------------------------- /Apps/PcmHammer/0411_256px.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/0411_256px.ico -------------------------------------------------------------------------------- /Apps/PcmHammer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/App.config -------------------------------------------------------------------------------- /Apps/PcmHammer/CommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/CommandLineOptions.cs -------------------------------------------------------------------------------- /Apps/PcmHammer/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/Configuration.cs -------------------------------------------------------------------------------- /Apps/PcmHammer/DialogBoxes/DelayDialogBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/DialogBoxes/DelayDialogBox.Designer.cs -------------------------------------------------------------------------------- /Apps/PcmHammer/DialogBoxes/DelayDialogBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/DialogBoxes/DelayDialogBox.cs -------------------------------------------------------------------------------- /Apps/PcmHammer/DialogBoxes/DelayDialogBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/DialogBoxes/DelayDialogBox.resx -------------------------------------------------------------------------------- /Apps/PcmHammer/DialogBoxes/SettingsDialogBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/DialogBoxes/SettingsDialogBox.Designer.cs -------------------------------------------------------------------------------- /Apps/PcmHammer/DialogBoxes/SettingsDialogBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/DialogBoxes/SettingsDialogBox.cs -------------------------------------------------------------------------------- /Apps/PcmHammer/DialogBoxes/SettingsDialogBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/DialogBoxes/SettingsDialogBox.resx -------------------------------------------------------------------------------- /Apps/PcmHammer/DialogBoxes/UserDefinedKeyDialogBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/DialogBoxes/UserDefinedKeyDialogBox.Designer.cs -------------------------------------------------------------------------------- /Apps/PcmHammer/DialogBoxes/UserDefinedKeyDialogBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/DialogBoxes/UserDefinedKeyDialogBox.cs -------------------------------------------------------------------------------- /Apps/PcmHammer/DialogBoxes/UserDefinedKeyDialogBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/DialogBoxes/UserDefinedKeyDialogBox.resx -------------------------------------------------------------------------------- /Apps/PcmHammer/DialogBoxes/VinForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/DialogBoxes/VinForm.Designer.cs -------------------------------------------------------------------------------- /Apps/PcmHammer/DialogBoxes/VinForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/DialogBoxes/VinForm.cs -------------------------------------------------------------------------------- /Apps/PcmHammer/DialogBoxes/VinForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/DialogBoxes/VinForm.resx -------------------------------------------------------------------------------- /Apps/PcmHammer/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/MainForm.Designer.cs -------------------------------------------------------------------------------- /Apps/PcmHammer/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/MainForm.cs -------------------------------------------------------------------------------- /Apps/PcmHammer/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/MainForm.resx -------------------------------------------------------------------------------- /Apps/PcmHammer/PcmHammer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/PcmHammer.csproj -------------------------------------------------------------------------------- /Apps/PcmHammer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/Program.cs -------------------------------------------------------------------------------- /Apps/PcmHammer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Apps/PcmHammer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Apps/PcmHammer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/Properties/Resources.resx -------------------------------------------------------------------------------- /Apps/PcmHammer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Apps/PcmHammer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/Properties/Settings.settings -------------------------------------------------------------------------------- /Apps/PcmHammer/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/credits.html -------------------------------------------------------------------------------- /Apps/PcmHammer/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/help.html -------------------------------------------------------------------------------- /Apps/PcmHammer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmHammer/packages.config -------------------------------------------------------------------------------- /Apps/PcmHammer/start.txt: -------------------------------------------------------------------------------- 1 | Thanks for using PCM Hammer. -------------------------------------------------------------------------------- /Apps/PcmLibrary/CKernelReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/CKernelReader.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/CKernelVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/CKernelVerifier.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/CKernelWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/CKernelWriter.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Devices/AllProDeviceImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Devices/AllProDeviceImplementation.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Devices/AvtDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Devices/AvtDevice.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Devices/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Devices/Device.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Devices/ElmDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Devices/ElmDevice.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Devices/ElmDeviceImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Devices/ElmDeviceImplementation.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Devices/MockDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Devices/MockDevice.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Devices/OBDXProDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Devices/OBDXProDevice.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Devices/ScanToolDeviceImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Devices/ScanToolDeviceImplementation.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Devices/SerialDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Devices/SerialDevice.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Logging/CanLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Logging/CanLogger.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Logging/CanParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Logging/CanParser.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Logging/DpidConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Logging/DpidConfiguration.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Logging/FastLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Logging/FastLogger.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Logging/LogColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Logging/LogColumn.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Logging/LogFileWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Logging/LogFileWriter.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Logging/LogProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Logging/LogProfile.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Logging/LogProfileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Logging/LogProfileReader.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Logging/LogProfileWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Logging/LogProfileWriter.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Logging/LogRowParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Logging/LogRowParser.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Logging/Logger.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Logging/MathValueProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Logging/MathValueProcessor.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Logging/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Logging/Parameter.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Logging/ParameterDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Logging/ParameterDatabase.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Logging/SlowLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Logging/SlowLogger.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Logging/UnsignedHexValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Logging/UnsignedHexValue.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Logging/ValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Logging/ValueConverter.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Messages/BlockId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Messages/BlockId.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Messages/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Messages/Message.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Messages/Protocol.Kernel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Messages/Protocol.Kernel.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Messages/Protocol.Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Messages/Protocol.Logging.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Messages/Protocol.Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Messages/Protocol.Misc.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Messages/Protocol.Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Messages/Protocol.Properties.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Messages/Protocol.ReadWrite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Messages/Protocol.ReadWrite.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Messages/Protocol.Security.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Messages/Protocol.Security.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Messages/Protocol.Speed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Messages/Protocol.Speed.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Messages/Protocol.Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Messages/Protocol.Utility.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Messages/Protocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Messages/Protocol.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Messages/VPW.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Messages/VPW.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Misc/AwayMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Misc/AwayMode.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Misc/Crc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Misc/Crc.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Misc/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Misc/Exceptions.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Misc/FileValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Misc/FileValidator.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Misc/FlashChip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Misc/FlashChip.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Misc/HttpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Misc/HttpServer.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Misc/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Misc/ILogger.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Misc/KeyAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Misc/KeyAlgorithm.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Misc/MockPcm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Misc/MockPcm.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Misc/PcmInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Misc/PcmInfo.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Misc/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Misc/Query.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Misc/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Misc/Response.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Misc/ToolPresentNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Misc/ToolPresentNotifier.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Misc/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Misc/Utility.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/PcmLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/PcmLibrary.csproj -------------------------------------------------------------------------------- /Apps/PcmLibrary/Ports/IPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Ports/IPort.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Ports/MockAvt852.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Ports/MockAvt852.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Ports/MockPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Ports/MockPort.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Vehicle.Kernel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Vehicle.Kernel.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Vehicle.Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Vehicle.Logging.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Vehicle.Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Vehicle.Properties.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Vehicle.TestKernel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Vehicle.TestKernel.cs -------------------------------------------------------------------------------- /Apps/PcmLibrary/Vehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibrary/Vehicle.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/App.config -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/ContentLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/ContentLoader.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/DeviceConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/DeviceConfiguration.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/Devices/DeviceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/Devices/DeviceFactory.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/Devices/J2534Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/Devices/J2534Device.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/Devices/J2534DeviceFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/Devices/J2534DeviceFinder.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/DialogBoxes/CanForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/DialogBoxes/CanForm.Designer.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/DialogBoxes/CanForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/DialogBoxes/CanForm.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/DialogBoxes/CanForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/DialogBoxes/CanForm.resx -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/DialogBoxes/DevicePicker.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/DialogBoxes/DevicePicker.Designer.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/DialogBoxes/DevicePicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/DialogBoxes/DevicePicker.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/DialogBoxes/DevicePicker.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/DialogBoxes/DevicePicker.resx -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/DialogBoxes/HWSelector.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/DialogBoxes/HWSelector.Designer.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/DialogBoxes/HWSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/DialogBoxes/HWSelector.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/DialogBoxes/HWSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/DialogBoxes/HWSelector.resx -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/DialogBoxes/OperatingSystemID.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/DialogBoxes/OperatingSystemID.Designer.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/DialogBoxes/OperatingSystemID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/DialogBoxes/OperatingSystemID.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/DialogBoxes/OperatingSystemID.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/DialogBoxes/OperatingSystemID.resx -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/MainFormBase.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/MainFormBase.Designer.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/MainFormBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/MainFormBase.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/PcmLibraryWindowsForms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/PcmLibraryWindowsForms.csproj -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/Ports/HttpPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/Ports/HttpPort.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/Ports/PortDiscovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/Ports/PortDiscovery.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/Ports/StandardPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/Ports/StandardPort.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Apps/PcmLibraryWindowsForms/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLibraryWindowsForms/Properties/Settings.settings -------------------------------------------------------------------------------- /Apps/PcmLogger/3358.RamParameters.LogProfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/3358.RamParameters.LogProfile -------------------------------------------------------------------------------- /Apps/PcmLogger/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/App.config -------------------------------------------------------------------------------- /Apps/PcmLogger/Basics.LogProfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Basics.LogProfile -------------------------------------------------------------------------------- /Apps/PcmLogger/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Configuration.cs -------------------------------------------------------------------------------- /Apps/PcmLogger/Example1.xml.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Example1.xml.profile -------------------------------------------------------------------------------- /Apps/PcmLogger/Example2.xml.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Example2.xml.profile -------------------------------------------------------------------------------- /Apps/PcmLogger/Example3.xml.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Example3.xml.profile -------------------------------------------------------------------------------- /Apps/PcmLogger/Failed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Failed.json -------------------------------------------------------------------------------- /Apps/PcmLogger/FuelTrims.LogProfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/FuelTrims.LogProfile -------------------------------------------------------------------------------- /Apps/PcmLogger/General.json.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/General.json.profile -------------------------------------------------------------------------------- /Apps/PcmLogger/General.xml.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/General.xml.profile -------------------------------------------------------------------------------- /Apps/PcmLogger/Idle.json.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Idle.json.profile -------------------------------------------------------------------------------- /Apps/PcmLogger/Idle.xml.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Idle.xml.profile -------------------------------------------------------------------------------- /Apps/PcmLogger/IdleAir.xml.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/IdleAir.xml.profile -------------------------------------------------------------------------------- /Apps/PcmLogger/IdleDfco.xml.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/IdleDfco.xml.profile -------------------------------------------------------------------------------- /Apps/PcmLogger/IdlePID.xml.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/IdlePID.xml.profile -------------------------------------------------------------------------------- /Apps/PcmLogger/IdleTrim.xml.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/IdleTrim.xml.profile -------------------------------------------------------------------------------- /Apps/PcmLogger/Knock.xml.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Knock.xml.profile -------------------------------------------------------------------------------- /Apps/PcmLogger/MainForm.Can.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/MainForm.Can.cs -------------------------------------------------------------------------------- /Apps/PcmLogger/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/MainForm.Designer.cs -------------------------------------------------------------------------------- /Apps/PcmLogger/MainForm.LogProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/MainForm.LogProfile.cs -------------------------------------------------------------------------------- /Apps/PcmLogger/MainForm.LoggingThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/MainForm.LoggingThread.cs -------------------------------------------------------------------------------- /Apps/PcmLogger/MainForm.ParameterGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/MainForm.ParameterGrid.cs -------------------------------------------------------------------------------- /Apps/PcmLogger/MainForm.ProfileList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/MainForm.ProfileList.cs -------------------------------------------------------------------------------- /Apps/PcmLogger/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/MainForm.cs -------------------------------------------------------------------------------- /Apps/PcmLogger/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/MainForm.resx -------------------------------------------------------------------------------- /Apps/PcmLogger/OldProfiles/Idle2.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/OldProfiles/Idle2.profile -------------------------------------------------------------------------------- /Apps/PcmLogger/OldProfiles/Test.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/OldProfiles/Test.profile -------------------------------------------------------------------------------- /Apps/PcmLogger/Parameters.12587603.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Parameters.12587603.xml -------------------------------------------------------------------------------- /Apps/PcmLogger/Parameters.12593358.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Parameters.12593358.xml -------------------------------------------------------------------------------- /Apps/PcmLogger/Parameters.CAN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Parameters.CAN.xml -------------------------------------------------------------------------------- /Apps/PcmLogger/Parameters.DidNotWork.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Parameters.DidNotWork.xml -------------------------------------------------------------------------------- /Apps/PcmLogger/Parameters.Math.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Parameters.Math.xml -------------------------------------------------------------------------------- /Apps/PcmLogger/Parameters.RAM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Parameters.RAM.xml -------------------------------------------------------------------------------- /Apps/PcmLogger/Parameters.Standard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Parameters.Standard.xml -------------------------------------------------------------------------------- /Apps/PcmLogger/PathDisplayAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/PathDisplayAdapter.cs -------------------------------------------------------------------------------- /Apps/PcmLogger/PcmLogger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/PcmLogger.csproj -------------------------------------------------------------------------------- /Apps/PcmLogger/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Program.cs -------------------------------------------------------------------------------- /Apps/PcmLogger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Apps/PcmLogger/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Apps/PcmLogger/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Properties/Resources.resx -------------------------------------------------------------------------------- /Apps/PcmLogger/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Apps/PcmLogger/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/Properties/Settings.settings -------------------------------------------------------------------------------- /Apps/PcmLogger/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/PcmLogger/packages.config -------------------------------------------------------------------------------- /Apps/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/ReadMe.md -------------------------------------------------------------------------------- /Apps/Tests/AvtTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/Tests/AvtTests.cs -------------------------------------------------------------------------------- /Apps/Tests/CanParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/Tests/CanParserTests.cs -------------------------------------------------------------------------------- /Apps/Tests/LoggingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/Tests/LoggingTests.cs -------------------------------------------------------------------------------- /Apps/Tests/MathTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/Tests/MathTests.cs -------------------------------------------------------------------------------- /Apps/Tests/MockLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/Tests/MockLogger.cs -------------------------------------------------------------------------------- /Apps/Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Apps/Tests/ScanToolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/Tests/ScanToolTests.cs -------------------------------------------------------------------------------- /Apps/Tests/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/Tests/TestLogger.cs -------------------------------------------------------------------------------- /Apps/Tests/TestPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/Tests/TestPort.cs -------------------------------------------------------------------------------- /Apps/Tests/TestScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/Tests/TestScenarios.cs -------------------------------------------------------------------------------- /Apps/Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/Tests/Tests.csproj -------------------------------------------------------------------------------- /Apps/Tests/UtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/Tests/UtilityTests.cs -------------------------------------------------------------------------------- /Apps/Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/Tests/app.config -------------------------------------------------------------------------------- /Apps/Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/Tests/packages.config -------------------------------------------------------------------------------- /Apps/VpwExplorer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/VpwExplorer/App.config -------------------------------------------------------------------------------- /Apps/VpwExplorer/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/VpwExplorer/Configuration.cs -------------------------------------------------------------------------------- /Apps/VpwExplorer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/VpwExplorer/Program.cs -------------------------------------------------------------------------------- /Apps/VpwExplorer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/VpwExplorer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Apps/VpwExplorer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/VpwExplorer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Apps/VpwExplorer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/VpwExplorer/Properties/Resources.resx -------------------------------------------------------------------------------- /Apps/VpwExplorer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/VpwExplorer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Apps/VpwExplorer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/VpwExplorer/Properties/Settings.settings -------------------------------------------------------------------------------- /Apps/VpwExplorer/VpwExplorer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/VpwExplorer/VpwExplorer.csproj -------------------------------------------------------------------------------- /Apps/VpwExplorer/VpwExplorerMainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/VpwExplorer/VpwExplorerMainForm.Designer.cs -------------------------------------------------------------------------------- /Apps/VpwExplorer/VpwExplorerMainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/VpwExplorer/VpwExplorerMainForm.cs -------------------------------------------------------------------------------- /Apps/VpwExplorer/VpwExplorerMainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Apps/VpwExplorer/VpwExplorerMainForm.resx -------------------------------------------------------------------------------- /DevTools/Bin2Hex/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/Bin2Hex/App.config -------------------------------------------------------------------------------- /DevTools/Bin2Hex/Bin2Hex.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/Bin2Hex/Bin2Hex.csproj -------------------------------------------------------------------------------- /DevTools/Bin2Hex/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/Bin2Hex/Program.cs -------------------------------------------------------------------------------- /DevTools/Bin2Hex/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/Bin2Hex/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DevTools/ByteSwap/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/ByteSwap/App.config -------------------------------------------------------------------------------- /DevTools/ByteSwap/ByteSwap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/ByteSwap/ByteSwap.csproj -------------------------------------------------------------------------------- /DevTools/ByteSwap/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/ByteSwap/Program.cs -------------------------------------------------------------------------------- /DevTools/ByteSwap/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/ByteSwap/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DevTools/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/COPYING.txt -------------------------------------------------------------------------------- /DevTools/CaptureSerial/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/CaptureSerial/App.config -------------------------------------------------------------------------------- /DevTools/CaptureSerial/CaptureSerial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/CaptureSerial/CaptureSerial.csproj -------------------------------------------------------------------------------- /DevTools/CaptureSerial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/CaptureSerial/Program.cs -------------------------------------------------------------------------------- /DevTools/CaptureSerial/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/CaptureSerial/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DevTools/DevTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/DevTools.sln -------------------------------------------------------------------------------- /DevTools/FindThisInThat/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/FindThisInThat/App.config -------------------------------------------------------------------------------- /DevTools/FindThisInThat/FindThisInThat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/FindThisInThat/FindThisInThat.csproj -------------------------------------------------------------------------------- /DevTools/FindThisInThat/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/FindThisInThat/Program.cs -------------------------------------------------------------------------------- /DevTools/FindThisInThat/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/FindThisInThat/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DevTools/Hex2Bin/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/Hex2Bin/App.config -------------------------------------------------------------------------------- /DevTools/Hex2Bin/Hex2Bin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/Hex2Bin/Hex2Bin.csproj -------------------------------------------------------------------------------- /DevTools/Hex2Bin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/Hex2Bin/Program.cs -------------------------------------------------------------------------------- /DevTools/Hex2Bin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/Hex2Bin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DevTools/SRecordToKernel/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/SRecordToKernel/Program.cs -------------------------------------------------------------------------------- /DevTools/SRecordToKernel/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/SRecordToKernel/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /DevTools/SRecordToKernel/SRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/SRecordToKernel/SRecord.cs -------------------------------------------------------------------------------- /DevTools/SRecordToKernel/SRecordReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/SRecordToKernel/SRecordReader.cs -------------------------------------------------------------------------------- /DevTools/SRecordToKernel/SRecordToKernel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/SRecordToKernel/SRecordToKernel.csproj -------------------------------------------------------------------------------- /DevTools/SRecordToKernel/publish.bat: -------------------------------------------------------------------------------- 1 | dotnet publish -c Debug -r win10-x64 2 | -------------------------------------------------------------------------------- /DevTools/SRecordToKernel/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/SRecordToKernel/readme.txt -------------------------------------------------------------------------------- /DevTools/Test/TestBinHex.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/Test/TestBinHex.bat -------------------------------------------------------------------------------- /DevTools/Test/TestByteSwap.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/Test/TestByteSwap.bat -------------------------------------------------------------------------------- /DevTools/VpwDecoder/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/VpwDecoder/App.config -------------------------------------------------------------------------------- /DevTools/VpwDecoder/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/VpwDecoder/Data.cs -------------------------------------------------------------------------------- /DevTools/VpwDecoder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/VpwDecoder/Program.cs -------------------------------------------------------------------------------- /DevTools/VpwDecoder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/VpwDecoder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DevTools/VpwDecoder/TestData/Test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/VpwDecoder/TestData/Test1.txt -------------------------------------------------------------------------------- /DevTools/VpwDecoder/VpwDecoder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/DevTools/VpwDecoder/VpwDecoder.csproj -------------------------------------------------------------------------------- /Docs/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Docs/ReadMe.md -------------------------------------------------------------------------------- /Docs/Read_ID_Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Docs/Read_ID_Commands.txt -------------------------------------------------------------------------------- /Docs/SeedAndKeyAlgorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Docs/SeedAndKeyAlgorithm.txt -------------------------------------------------------------------------------- /Docs/Write_ID_Commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Docs/Write_ID_Commands -------------------------------------------------------------------------------- /Kernels/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/.gitignore -------------------------------------------------------------------------------- /Kernels/Build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/Build.cmd -------------------------------------------------------------------------------- /Kernels/BuildAll.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/BuildAll.cmd -------------------------------------------------------------------------------- /Kernels/CFiles-Micro.list: -------------------------------------------------------------------------------- 1 | main.c 2 | 3 | -------------------------------------------------------------------------------- /Kernels/CFiles-P01.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/CFiles-P01.list -------------------------------------------------------------------------------- /Kernels/CFiles-P04.list: -------------------------------------------------------------------------------- 1 | main.c 2 | 3 | -------------------------------------------------------------------------------- /Kernels/CFiles-P10.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/CFiles-P10.list -------------------------------------------------------------------------------- /Kernels/CFiles-P12.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/CFiles-P12.list -------------------------------------------------------------------------------- /Kernels/CFiles-Read.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/CFiles-Read.list -------------------------------------------------------------------------------- /Kernels/CFiles-Test.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/CFiles-Test.list -------------------------------------------------------------------------------- /Kernels/Clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/Clean.cmd -------------------------------------------------------------------------------- /Kernels/Common-Assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/Common-Assembly.h -------------------------------------------------------------------------------- /Kernels/Common-P04.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/Common-P04.h -------------------------------------------------------------------------------- /Kernels/CreateCKernelPCMSpecificLinkerScript.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/CreateCKernelPCMSpecificLinkerScript.cmd -------------------------------------------------------------------------------- /Kernels/Kernel-Micro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/Kernel-Micro.c -------------------------------------------------------------------------------- /Kernels/Kernel-P01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/Kernel-P01.c -------------------------------------------------------------------------------- /Kernels/Kernel-P04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/Kernel-P04.c -------------------------------------------------------------------------------- /Kernels/Kernel-P10.c: -------------------------------------------------------------------------------- 1 | #include "Kernel-P01.c" 2 | -------------------------------------------------------------------------------- /Kernels/Kernel-P12.c: -------------------------------------------------------------------------------- 1 | #include "Kernel-P01.c" 2 | -------------------------------------------------------------------------------- /Kernels/Kernel-Read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/Kernel-Read.c -------------------------------------------------------------------------------- /Kernels/Kernel-Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/Kernel-Test.c -------------------------------------------------------------------------------- /Kernels/Kernel.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/Kernel.S -------------------------------------------------------------------------------- /Kernels/Kernel.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/Kernel.ld -------------------------------------------------------------------------------- /Kernels/Loader.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/Loader.S -------------------------------------------------------------------------------- /Kernels/Loader.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/Loader.ld -------------------------------------------------------------------------------- /Kernels/Readme-Assembly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/Readme-Assembly.txt -------------------------------------------------------------------------------- /Kernels/Readme-P04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/Readme-P04.txt -------------------------------------------------------------------------------- /Kernels/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/build.bat -------------------------------------------------------------------------------- /Kernels/common-readwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/common-readwrite.c -------------------------------------------------------------------------------- /Kernels/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/common.c -------------------------------------------------------------------------------- /Kernels/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/common.h -------------------------------------------------------------------------------- /Kernels/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/crc.c -------------------------------------------------------------------------------- /Kernels/fixpath.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/fixpath.bat -------------------------------------------------------------------------------- /Kernels/flash-amd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/flash-amd.c -------------------------------------------------------------------------------- /Kernels/flash-intel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/flash-intel.c -------------------------------------------------------------------------------- /Kernels/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/flash.h -------------------------------------------------------------------------------- /Kernels/gcc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/gcc.bat -------------------------------------------------------------------------------- /Kernels/main.c: -------------------------------------------------------------------------------- 1 | int _start(void) 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /Kernels/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/makefile -------------------------------------------------------------------------------- /Kernels/makefile-assembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/makefile-assembly -------------------------------------------------------------------------------- /Kernels/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/readme.txt -------------------------------------------------------------------------------- /Kernels/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Kernels/test.cpp -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/ReadMe.md -------------------------------------------------------------------------------- /Release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegacyNsfw/PcmHacks/HEAD/Release.ps1 --------------------------------------------------------------------------------