├── .gitattributes ├── .gitignore ├── .gitmodules ├── PID.c ├── PID.h ├── README.md └── pid-demo-pic18.X ├── Makefile ├── build └── default │ └── production │ ├── _ext │ ├── 460035940 │ │ ├── SPI-PIC16.p1 │ │ ├── SPI-PIC16.p1.d │ │ └── SPI-PIC16.pre │ ├── 838288359 │ │ ├── PID.p1 │ │ ├── PID.p1.d │ │ └── PID.pre │ └── 1376266981 │ │ ├── Tick-PIC18.p1 │ │ ├── Tick-PIC18.p1.d │ │ └── Tick-PIC18.pre │ ├── io.p1 │ ├── io.p1.d.tmp │ ├── io.pre │ ├── main.p1 │ ├── main.p1.d │ ├── main.pre │ ├── tc.p1 │ ├── tc.p1.d │ └── tc.pre ├── dist └── default │ └── production │ ├── pid-demo-pic18.X.production.cof │ ├── pid-demo-pic18.X.production.hex │ ├── pid-demo-pic18.X.production.hxl │ ├── pid-demo-pic18.X.production.lst │ ├── pid-demo-pic18.X.production.map │ ├── pid-demo-pic18.X.production.obj │ ├── pid-demo-pic18.X.production.rlf │ ├── pid-demo-pic18.X.production.sdb │ └── pid-demo-pic18.X.production.sym ├── funclist ├── io.c ├── io.h ├── main.c ├── nbproject ├── Makefile-default.mk ├── Makefile-genesis.properties ├── Makefile-impl.mk ├── Makefile-local-default.mk ├── Makefile-variables.mk ├── Package-default.bash ├── configurations.xml ├── private │ ├── configurations.xml │ ├── private.properties │ └── private.xml ├── project.properties └── project.xml ├── newfile.c ├── tc.c ├── tc.h └── unet.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/.gitmodules -------------------------------------------------------------------------------- /PID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/PID.c -------------------------------------------------------------------------------- /PID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/PID.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/README.md -------------------------------------------------------------------------------- /pid-demo-pic18.X/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/Makefile -------------------------------------------------------------------------------- /pid-demo-pic18.X/build/default/production/_ext/1376266981/Tick-PIC18.p1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/build/default/production/_ext/1376266981/Tick-PIC18.p1 -------------------------------------------------------------------------------- /pid-demo-pic18.X/build/default/production/_ext/1376266981/Tick-PIC18.p1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/build/default/production/_ext/1376266981/Tick-PIC18.p1.d -------------------------------------------------------------------------------- /pid-demo-pic18.X/build/default/production/_ext/1376266981/Tick-PIC18.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/build/default/production/_ext/1376266981/Tick-PIC18.pre -------------------------------------------------------------------------------- /pid-demo-pic18.X/build/default/production/_ext/460035940/SPI-PIC16.p1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/build/default/production/_ext/460035940/SPI-PIC16.p1 -------------------------------------------------------------------------------- /pid-demo-pic18.X/build/default/production/_ext/460035940/SPI-PIC16.p1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/build/default/production/_ext/460035940/SPI-PIC16.p1.d -------------------------------------------------------------------------------- /pid-demo-pic18.X/build/default/production/_ext/460035940/SPI-PIC16.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/build/default/production/_ext/460035940/SPI-PIC16.pre -------------------------------------------------------------------------------- /pid-demo-pic18.X/build/default/production/_ext/838288359/PID.p1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/build/default/production/_ext/838288359/PID.p1 -------------------------------------------------------------------------------- /pid-demo-pic18.X/build/default/production/_ext/838288359/PID.p1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/build/default/production/_ext/838288359/PID.p1.d -------------------------------------------------------------------------------- /pid-demo-pic18.X/build/default/production/_ext/838288359/PID.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/build/default/production/_ext/838288359/PID.pre -------------------------------------------------------------------------------- /pid-demo-pic18.X/build/default/production/io.p1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/build/default/production/io.p1 -------------------------------------------------------------------------------- /pid-demo-pic18.X/build/default/production/io.p1.d.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/build/default/production/io.p1.d.tmp -------------------------------------------------------------------------------- /pid-demo-pic18.X/build/default/production/io.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/build/default/production/io.pre -------------------------------------------------------------------------------- /pid-demo-pic18.X/build/default/production/main.p1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/build/default/production/main.p1 -------------------------------------------------------------------------------- /pid-demo-pic18.X/build/default/production/main.p1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/build/default/production/main.p1.d -------------------------------------------------------------------------------- /pid-demo-pic18.X/build/default/production/main.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/build/default/production/main.pre -------------------------------------------------------------------------------- /pid-demo-pic18.X/build/default/production/tc.p1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/build/default/production/tc.p1 -------------------------------------------------------------------------------- /pid-demo-pic18.X/build/default/production/tc.p1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/build/default/production/tc.p1.d -------------------------------------------------------------------------------- /pid-demo-pic18.X/build/default/production/tc.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/build/default/production/tc.pre -------------------------------------------------------------------------------- /pid-demo-pic18.X/dist/default/production/pid-demo-pic18.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/dist/default/production/pid-demo-pic18.X.production.cof -------------------------------------------------------------------------------- /pid-demo-pic18.X/dist/default/production/pid-demo-pic18.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/dist/default/production/pid-demo-pic18.X.production.hex -------------------------------------------------------------------------------- /pid-demo-pic18.X/dist/default/production/pid-demo-pic18.X.production.hxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/dist/default/production/pid-demo-pic18.X.production.hxl -------------------------------------------------------------------------------- /pid-demo-pic18.X/dist/default/production/pid-demo-pic18.X.production.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/dist/default/production/pid-demo-pic18.X.production.lst -------------------------------------------------------------------------------- /pid-demo-pic18.X/dist/default/production/pid-demo-pic18.X.production.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/dist/default/production/pid-demo-pic18.X.production.map -------------------------------------------------------------------------------- /pid-demo-pic18.X/dist/default/production/pid-demo-pic18.X.production.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/dist/default/production/pid-demo-pic18.X.production.obj -------------------------------------------------------------------------------- /pid-demo-pic18.X/dist/default/production/pid-demo-pic18.X.production.rlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/dist/default/production/pid-demo-pic18.X.production.rlf -------------------------------------------------------------------------------- /pid-demo-pic18.X/dist/default/production/pid-demo-pic18.X.production.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/dist/default/production/pid-demo-pic18.X.production.sdb -------------------------------------------------------------------------------- /pid-demo-pic18.X/dist/default/production/pid-demo-pic18.X.production.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/dist/default/production/pid-demo-pic18.X.production.sym -------------------------------------------------------------------------------- /pid-demo-pic18.X/funclist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/funclist -------------------------------------------------------------------------------- /pid-demo-pic18.X/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/io.c -------------------------------------------------------------------------------- /pid-demo-pic18.X/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/io.h -------------------------------------------------------------------------------- /pid-demo-pic18.X/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/main.c -------------------------------------------------------------------------------- /pid-demo-pic18.X/nbproject/Makefile-default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/nbproject/Makefile-default.mk -------------------------------------------------------------------------------- /pid-demo-pic18.X/nbproject/Makefile-genesis.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/nbproject/Makefile-genesis.properties -------------------------------------------------------------------------------- /pid-demo-pic18.X/nbproject/Makefile-impl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/nbproject/Makefile-impl.mk -------------------------------------------------------------------------------- /pid-demo-pic18.X/nbproject/Makefile-local-default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/nbproject/Makefile-local-default.mk -------------------------------------------------------------------------------- /pid-demo-pic18.X/nbproject/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/nbproject/Makefile-variables.mk -------------------------------------------------------------------------------- /pid-demo-pic18.X/nbproject/Package-default.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/nbproject/Package-default.bash -------------------------------------------------------------------------------- /pid-demo-pic18.X/nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/nbproject/configurations.xml -------------------------------------------------------------------------------- /pid-demo-pic18.X/nbproject/private/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/nbproject/private/configurations.xml -------------------------------------------------------------------------------- /pid-demo-pic18.X/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pid-demo-pic18.X/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/nbproject/private/private.xml -------------------------------------------------------------------------------- /pid-demo-pic18.X/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pid-demo-pic18.X/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/nbproject/project.xml -------------------------------------------------------------------------------- /pid-demo-pic18.X/newfile.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pid-demo-pic18.X/tc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/tc.c -------------------------------------------------------------------------------- /pid-demo-pic18.X/tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/tc.h -------------------------------------------------------------------------------- /pid-demo-pic18.X/unet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekfactory/PID/HEAD/pid-demo-pic18.X/unet.c --------------------------------------------------------------------------------