├── .gitignore ├── README.md ├── WP1 ├── WP1.sln ├── bin2hex │ ├── bin2hex.c │ ├── bin2hex.vcxproj │ └── bin2hex.vcxproj.filters ├── dec2bin │ ├── dec2bin.c │ ├── dec2bin.vcxproj │ └── dec2bin.vcxproj.filters ├── exercise1 │ ├── exercise1.c │ ├── exercise1.vcxproj │ └── exercise1.vcxproj.filters ├── exercise2 │ ├── exercise2.c │ ├── exercise2.vcxproj │ └── exercise2.vcxproj.filters ├── exercise3 │ ├── exercise3.c │ ├── exercise3.vcxproj │ └── exercise3.vcxproj.filters └── exercise5 │ ├── exercise5.c │ ├── exercise5.vcxproj │ └── exercise5.vcxproj.filters └── WP2 ├── TextFile1.txt ├── WP2.sln ├── code ├── code.c ├── code.vcxproj └── code.vcxproj.filters ├── decode ├── decode.c ├── decode.vcxproj └── decode.vcxproj.filters ├── exercise1 ├── exercise1.c ├── exercise1.vcxproj └── exercise1.vcxproj.filters ├── exercise2 ├── exercise2.c ├── exercise2.vcxproj └── exercise2.vcxproj.filters └── exercise3 ├── binaryfile.c ├── database.bin ├── exercise3.vcxproj └── exercise3.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/README.md -------------------------------------------------------------------------------- /WP1/WP1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/WP1.sln -------------------------------------------------------------------------------- /WP1/bin2hex/bin2hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/bin2hex/bin2hex.c -------------------------------------------------------------------------------- /WP1/bin2hex/bin2hex.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/bin2hex/bin2hex.vcxproj -------------------------------------------------------------------------------- /WP1/bin2hex/bin2hex.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/bin2hex/bin2hex.vcxproj.filters -------------------------------------------------------------------------------- /WP1/dec2bin/dec2bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/dec2bin/dec2bin.c -------------------------------------------------------------------------------- /WP1/dec2bin/dec2bin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/dec2bin/dec2bin.vcxproj -------------------------------------------------------------------------------- /WP1/dec2bin/dec2bin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/dec2bin/dec2bin.vcxproj.filters -------------------------------------------------------------------------------- /WP1/exercise1/exercise1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/exercise1/exercise1.c -------------------------------------------------------------------------------- /WP1/exercise1/exercise1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/exercise1/exercise1.vcxproj -------------------------------------------------------------------------------- /WP1/exercise1/exercise1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/exercise1/exercise1.vcxproj.filters -------------------------------------------------------------------------------- /WP1/exercise2/exercise2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/exercise2/exercise2.c -------------------------------------------------------------------------------- /WP1/exercise2/exercise2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/exercise2/exercise2.vcxproj -------------------------------------------------------------------------------- /WP1/exercise2/exercise2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/exercise2/exercise2.vcxproj.filters -------------------------------------------------------------------------------- /WP1/exercise3/exercise3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/exercise3/exercise3.c -------------------------------------------------------------------------------- /WP1/exercise3/exercise3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/exercise3/exercise3.vcxproj -------------------------------------------------------------------------------- /WP1/exercise3/exercise3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/exercise3/exercise3.vcxproj.filters -------------------------------------------------------------------------------- /WP1/exercise5/exercise5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/exercise5/exercise5.c -------------------------------------------------------------------------------- /WP1/exercise5/exercise5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/exercise5/exercise5.vcxproj -------------------------------------------------------------------------------- /WP1/exercise5/exercise5.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP1/exercise5/exercise5.vcxproj.filters -------------------------------------------------------------------------------- /WP2/TextFile1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WP2/WP2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP2/WP2.sln -------------------------------------------------------------------------------- /WP2/code/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP2/code/code.c -------------------------------------------------------------------------------- /WP2/code/code.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP2/code/code.vcxproj -------------------------------------------------------------------------------- /WP2/code/code.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP2/code/code.vcxproj.filters -------------------------------------------------------------------------------- /WP2/decode/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP2/decode/decode.c -------------------------------------------------------------------------------- /WP2/decode/decode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP2/decode/decode.vcxproj -------------------------------------------------------------------------------- /WP2/decode/decode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP2/decode/decode.vcxproj.filters -------------------------------------------------------------------------------- /WP2/exercise1/exercise1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP2/exercise1/exercise1.c -------------------------------------------------------------------------------- /WP2/exercise1/exercise1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP2/exercise1/exercise1.vcxproj -------------------------------------------------------------------------------- /WP2/exercise1/exercise1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP2/exercise1/exercise1.vcxproj.filters -------------------------------------------------------------------------------- /WP2/exercise2/exercise2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP2/exercise2/exercise2.c -------------------------------------------------------------------------------- /WP2/exercise2/exercise2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP2/exercise2/exercise2.vcxproj -------------------------------------------------------------------------------- /WP2/exercise2/exercise2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP2/exercise2/exercise2.vcxproj.filters -------------------------------------------------------------------------------- /WP2/exercise3/binaryfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP2/exercise3/binaryfile.c -------------------------------------------------------------------------------- /WP2/exercise3/database.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP2/exercise3/database.bin -------------------------------------------------------------------------------- /WP2/exercise3/exercise3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP2/exercise3/exercise3.vcxproj -------------------------------------------------------------------------------- /WP2/exercise3/exercise3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/embedded-system-group-11/HEAD/WP2/exercise3/exercise3.vcxproj.filters --------------------------------------------------------------------------------