├── .gitignore ├── GSMcommunication.c ├── GSMcommunication.h ├── LICENSE ├── REG74HC165.c ├── REG74HC165.h ├── Readme.md ├── SIM800.c ├── SIM800.h ├── adc.c ├── adc.h ├── flash.c ├── flash.h ├── main.c ├── main.h ├── phisic.c └── phisic.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kvasshtain/SIM800/HEAD/.gitignore -------------------------------------------------------------------------------- /GSMcommunication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kvasshtain/SIM800/HEAD/GSMcommunication.c -------------------------------------------------------------------------------- /GSMcommunication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kvasshtain/SIM800/HEAD/GSMcommunication.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kvasshtain/SIM800/HEAD/LICENSE -------------------------------------------------------------------------------- /REG74HC165.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kvasshtain/SIM800/HEAD/REG74HC165.c -------------------------------------------------------------------------------- /REG74HC165.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kvasshtain/SIM800/HEAD/REG74HC165.h -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kvasshtain/SIM800/HEAD/Readme.md -------------------------------------------------------------------------------- /SIM800.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kvasshtain/SIM800/HEAD/SIM800.c -------------------------------------------------------------------------------- /SIM800.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kvasshtain/SIM800/HEAD/SIM800.h -------------------------------------------------------------------------------- /adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kvasshtain/SIM800/HEAD/adc.c -------------------------------------------------------------------------------- /adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kvasshtain/SIM800/HEAD/adc.h -------------------------------------------------------------------------------- /flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kvasshtain/SIM800/HEAD/flash.c -------------------------------------------------------------------------------- /flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kvasshtain/SIM800/HEAD/flash.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kvasshtain/SIM800/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kvasshtain/SIM800/HEAD/main.h -------------------------------------------------------------------------------- /phisic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kvasshtain/SIM800/HEAD/phisic.c -------------------------------------------------------------------------------- /phisic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kvasshtain/SIM800/HEAD/phisic.h --------------------------------------------------------------------------------