├── .gitattributes ├── DOC ├── PID_Regulator_Protocol.mht ├── PID_Regulator_Protocol.pdf └── images │ ├── PID_Regulator_UI.png │ └── RM_Logo.png ├── LICENSE ├── PC_UI ├── exe │ ├── PID_Regulator_V1.0.exe │ ├── PID_Regulator_V1.2.exe │ ├── PID_Regulator_V1.21.exe │ └── PID_Regulator_V1.22.exe └── src │ └── PID_Regulator │ ├── PID_Regulator.pro │ ├── PID_Regulator.pro.user │ ├── RM_Logo.ico │ ├── crc.cpp │ ├── crc.h │ ├── image │ ├── NJUST_Logo.ico │ ├── RM_Log.png │ ├── RM_Log_Full.png │ ├── RM_Logo_Full.ico │ └── logo_purple_800x800.png │ ├── main.cpp │ ├── pid_regulator.cpp │ ├── pid_regulator.h │ └── pid_regulator.ui ├── README.md └── STM32_DEMO ├── V1.0 ├── CRC.c ├── CRC.h ├── usart.c └── usart.h └── V1.2 ├── CRC.c ├── CRC.h ├── usart.c └── usart.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/.gitattributes -------------------------------------------------------------------------------- /DOC/PID_Regulator_Protocol.mht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/DOC/PID_Regulator_Protocol.mht -------------------------------------------------------------------------------- /DOC/PID_Regulator_Protocol.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/DOC/PID_Regulator_Protocol.pdf -------------------------------------------------------------------------------- /DOC/images/PID_Regulator_UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/DOC/images/PID_Regulator_UI.png -------------------------------------------------------------------------------- /DOC/images/RM_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/DOC/images/RM_Logo.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/LICENSE -------------------------------------------------------------------------------- /PC_UI/exe/PID_Regulator_V1.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/PC_UI/exe/PID_Regulator_V1.0.exe -------------------------------------------------------------------------------- /PC_UI/exe/PID_Regulator_V1.2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/PC_UI/exe/PID_Regulator_V1.2.exe -------------------------------------------------------------------------------- /PC_UI/exe/PID_Regulator_V1.21.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/PC_UI/exe/PID_Regulator_V1.21.exe -------------------------------------------------------------------------------- /PC_UI/exe/PID_Regulator_V1.22.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/PC_UI/exe/PID_Regulator_V1.22.exe -------------------------------------------------------------------------------- /PC_UI/src/PID_Regulator/PID_Regulator.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/PC_UI/src/PID_Regulator/PID_Regulator.pro -------------------------------------------------------------------------------- /PC_UI/src/PID_Regulator/PID_Regulator.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/PC_UI/src/PID_Regulator/PID_Regulator.pro.user -------------------------------------------------------------------------------- /PC_UI/src/PID_Regulator/RM_Logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/PC_UI/src/PID_Regulator/RM_Logo.ico -------------------------------------------------------------------------------- /PC_UI/src/PID_Regulator/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/PC_UI/src/PID_Regulator/crc.cpp -------------------------------------------------------------------------------- /PC_UI/src/PID_Regulator/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/PC_UI/src/PID_Regulator/crc.h -------------------------------------------------------------------------------- /PC_UI/src/PID_Regulator/image/NJUST_Logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/PC_UI/src/PID_Regulator/image/NJUST_Logo.ico -------------------------------------------------------------------------------- /PC_UI/src/PID_Regulator/image/RM_Log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/PC_UI/src/PID_Regulator/image/RM_Log.png -------------------------------------------------------------------------------- /PC_UI/src/PID_Regulator/image/RM_Log_Full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/PC_UI/src/PID_Regulator/image/RM_Log_Full.png -------------------------------------------------------------------------------- /PC_UI/src/PID_Regulator/image/RM_Logo_Full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/PC_UI/src/PID_Regulator/image/RM_Logo_Full.ico -------------------------------------------------------------------------------- /PC_UI/src/PID_Regulator/image/logo_purple_800x800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/PC_UI/src/PID_Regulator/image/logo_purple_800x800.png -------------------------------------------------------------------------------- /PC_UI/src/PID_Regulator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/PC_UI/src/PID_Regulator/main.cpp -------------------------------------------------------------------------------- /PC_UI/src/PID_Regulator/pid_regulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/PC_UI/src/PID_Regulator/pid_regulator.cpp -------------------------------------------------------------------------------- /PC_UI/src/PID_Regulator/pid_regulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/PC_UI/src/PID_Regulator/pid_regulator.h -------------------------------------------------------------------------------- /PC_UI/src/PID_Regulator/pid_regulator.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/PC_UI/src/PID_Regulator/pid_regulator.ui -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/README.md -------------------------------------------------------------------------------- /STM32_DEMO/V1.0/CRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/STM32_DEMO/V1.0/CRC.c -------------------------------------------------------------------------------- /STM32_DEMO/V1.0/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/STM32_DEMO/V1.0/CRC.h -------------------------------------------------------------------------------- /STM32_DEMO/V1.0/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/STM32_DEMO/V1.0/usart.c -------------------------------------------------------------------------------- /STM32_DEMO/V1.0/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/STM32_DEMO/V1.0/usart.h -------------------------------------------------------------------------------- /STM32_DEMO/V1.2/CRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/STM32_DEMO/V1.2/CRC.c -------------------------------------------------------------------------------- /STM32_DEMO/V1.2/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/STM32_DEMO/V1.2/CRC.h -------------------------------------------------------------------------------- /STM32_DEMO/V1.2/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/STM32_DEMO/V1.2/usart.c -------------------------------------------------------------------------------- /STM32_DEMO/V1.2/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackychen227/PID_Regulator/HEAD/STM32_DEMO/V1.2/usart.h --------------------------------------------------------------------------------