├── .gitignore ├── FX3Simulation.cpp ├── FX3Simulation.sln ├── FX3Simulation.vcxproj ├── FX3Simulation.vcxproj.filters ├── LICENSE ├── Pictures ├── DeviceManager.PNG ├── Run_DetectPLC.png ├── Run_DetectPLC_EN.png └── run_result.png ├── Readme.md ├── RxProc.cpp ├── RxProc.h └── Videos └── 2022-04-26 17-09-01.mp4 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/FX3U_Simulation/HEAD/.gitignore -------------------------------------------------------------------------------- /FX3Simulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/FX3U_Simulation/HEAD/FX3Simulation.cpp -------------------------------------------------------------------------------- /FX3Simulation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/FX3U_Simulation/HEAD/FX3Simulation.sln -------------------------------------------------------------------------------- /FX3Simulation.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/FX3U_Simulation/HEAD/FX3Simulation.vcxproj -------------------------------------------------------------------------------- /FX3Simulation.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/FX3U_Simulation/HEAD/FX3Simulation.vcxproj.filters -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/FX3U_Simulation/HEAD/LICENSE -------------------------------------------------------------------------------- /Pictures/DeviceManager.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/FX3U_Simulation/HEAD/Pictures/DeviceManager.PNG -------------------------------------------------------------------------------- /Pictures/Run_DetectPLC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/FX3U_Simulation/HEAD/Pictures/Run_DetectPLC.png -------------------------------------------------------------------------------- /Pictures/Run_DetectPLC_EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/FX3U_Simulation/HEAD/Pictures/Run_DetectPLC_EN.png -------------------------------------------------------------------------------- /Pictures/run_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/FX3U_Simulation/HEAD/Pictures/run_result.png -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/FX3U_Simulation/HEAD/Readme.md -------------------------------------------------------------------------------- /RxProc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/FX3U_Simulation/HEAD/RxProc.cpp -------------------------------------------------------------------------------- /RxProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/FX3U_Simulation/HEAD/RxProc.h -------------------------------------------------------------------------------- /Videos/2022-04-26 17-09-01.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/FX3U_Simulation/HEAD/Videos/2022-04-26 17-09-01.mp4 --------------------------------------------------------------------------------