├── README.md ├── Unit_10_SW_Engineering (Testing & Validation) └── Agile_JIRA_ScrumMethodology │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ └── 7.png ├── Unit_14_ARM_Architecture └── Simple_OS │ ├── ReadMe.md │ ├── STM32F103C6_OS_EXTI │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Debug │ │ ├── STM32F103C6_OS_EXTI.bin │ │ ├── STM32F103C6_OS_EXTI.elf │ │ ├── STM32F103C6_OS_EXTI.list │ │ ├── STM32F103C6_OS_EXTI.map │ │ ├── Src │ │ │ ├── AFIO_program.d │ │ │ ├── AFIO_program.o │ │ │ ├── AFIO_program.su │ │ │ ├── DIO_program.d │ │ │ ├── DIO_program.o │ │ │ ├── DIO_program.su │ │ │ ├── EXTI_program.d │ │ │ ├── EXTI_program.o │ │ │ ├── EXTI_program.su │ │ │ ├── NVIC_program.d │ │ │ ├── NVIC_program.o │ │ │ ├── NVIC_program.su │ │ │ ├── RCC_program.d │ │ │ ├── RCC_program.o │ │ │ ├── RCC_program.su │ │ │ ├── main.d │ │ │ ├── main.o │ │ │ ├── main.su │ │ │ ├── subdir.mk │ │ │ ├── syscalls.d │ │ │ ├── syscalls.o │ │ │ ├── syscalls.su │ │ │ ├── sysmem.d │ │ │ ├── sysmem.o │ │ │ └── sysmem.su │ │ ├── Startup │ │ │ ├── startup_stm32f103c6tx.d │ │ │ ├── startup_stm32f103c6tx.o │ │ │ └── subdir.mk │ │ ├── makefile │ │ ├── objects.list │ │ ├── objects.mk │ │ └── sources.mk │ ├── Inc │ │ ├── AFIO_config.h │ │ ├── AFIO_interface.h │ │ ├── AFIO_private.h │ │ ├── BIT_MATH.h │ │ ├── DIO_config.h │ │ ├── DIO_interface.h │ │ ├── DIO_private.h │ │ ├── EXTI_config.h │ │ ├── EXTI_interface.h │ │ ├── EXTI_private.h │ │ ├── NVIC_config.h │ │ ├── NVIC_interface.h │ │ ├── NVIC_private.h │ │ ├── RCC_config.h │ │ ├── RCC_interface.h │ │ ├── RCC_private.h │ │ └── STD_TYPES.h │ ├── STM32F103C6TX_FLASH.ld │ ├── Src │ │ ├── AFIO_program.c │ │ ├── DIO_program.c │ │ ├── EXTI_program.c │ │ ├── NVIC_program.c │ │ ├── RCC_program.c │ │ ├── main.c │ │ ├── syscalls.c │ │ └── sysmem.c │ └── Startup │ │ └── startup_stm32f103c6tx.s │ └── STM32F103C6_OS_SYSTICK │ ├── .cproject │ ├── .project │ ├── .settings │ └── language.settings.xml │ ├── Debug │ ├── STM32F103C6_OS_SYSTICK.bin │ ├── STM32F103C6_OS_SYSTICK.elf │ ├── STM32F103C6_OS_SYSTICK.list │ ├── STM32F103C6_OS_SYSTICK.map │ ├── Src │ │ ├── AFIO_program.d │ │ ├── AFIO_program.o │ │ ├── AFIO_program.su │ │ ├── DIO_program.d │ │ ├── DIO_program.o │ │ ├── DIO_program.su │ │ ├── EXTI_program.d │ │ ├── EXTI_program.o │ │ ├── EXTI_program.su │ │ ├── NVIC_program.d │ │ ├── NVIC_program.o │ │ ├── NVIC_program.su │ │ ├── RCC_program.d │ │ ├── RCC_program.o │ │ ├── RCC_program.su │ │ ├── STK_program.d │ │ ├── STK_program.o │ │ ├── STK_program.su │ │ ├── main.d │ │ ├── main.o │ │ ├── main.su │ │ ├── subdir.mk │ │ ├── syscalls.d │ │ ├── syscalls.o │ │ ├── syscalls.su │ │ ├── sysmem.d │ │ ├── sysmem.o │ │ └── sysmem.su │ ├── Startup │ │ ├── startup_stm32f103c6tx.d │ │ ├── startup_stm32f103c6tx.o │ │ └── subdir.mk │ ├── makefile │ ├── objects.list │ ├── objects.mk │ └── sources.mk │ ├── Inc │ ├── AFIO_config.h │ ├── AFIO_interface.h │ ├── AFIO_private.h │ ├── BIT_MATH.h │ ├── DIO_config.h │ ├── DIO_interface.h │ ├── DIO_private.h │ ├── EXTI_config.h │ ├── EXTI_interface.h │ ├── EXTI_private.h │ ├── NVIC_config.h │ ├── NVIC_interface.h │ ├── NVIC_private.h │ ├── RCC_config.h │ ├── RCC_interface.h │ ├── RCC_private.h │ ├── STD_TYPES.h │ ├── STK_config.h │ ├── STK_interface.h │ └── STK_private.h │ ├── STM32F103C6TX_FLASH.ld │ ├── Src │ ├── AFIO_program.c │ ├── DIO_program.c │ ├── EXTI_program.c │ ├── NVIC_program.c │ ├── RCC_program.c │ ├── STK_program.c │ ├── main.c │ ├── syscalls.c │ └── sysmem.c │ └── Startup │ └── startup_stm32f103c6tx.s ├── Unit_2_C_Language ├── 1_C_Basics_ASSs │ ├── EX1_C_Program_to_Print_a_Sentence │ │ ├── EX1_C_Program_to_Print_a_Sentence.c │ │ └── Screenshot.png │ ├── EX2_Print_an_Integer_Entered_by_the_User │ │ ├── EX2_Print_an_Integer_Entered_by_the_User.c │ │ └── Screenshot.png │ ├── EX3_Add_Two_Integers │ │ ├── EX3_Add_Two_Integers.c │ │ └── Screenshot.png │ ├── EX4_Multiply_two_Floating_Point_Numbers │ │ ├── EX4_Multiply_two_Floating_Point_Numbers.c │ │ └── Screenshot.png │ ├── EX5_Find_ASCII_Value_of_a_Character │ │ ├── EX5_Find_ASCII_Value_of_a_Character.c │ │ └── Screenshot.png │ ├── EX6_Swap_Two_Numbers_With_Temp │ │ ├── EX6_Swap_Two_Numbers_With_Temp.c │ │ └── Screenshot.png │ └── EX7_Swap_Two_Numbers_Without_Temp │ │ ├── EX7_Swap_Two_Numbers_Without_Temp_Sol1.c │ │ ├── EX7_Swap_Two_Numbers_Without_Temp_Sol2.c │ │ └── Screenshot.png ├── 2_Conditions_Loops_ASSs │ ├── EX1_C_Program_to_check_whether_a_Number_is_Even_or_Odd │ │ ├── EX1_C_Program_to_check_whether_a_Number_is_Even_or_Odd.c │ │ └── Screenshot.png │ ├── EX2_C_Program_to_check_Vowel_or_Consonant │ │ ├── EX2_C_Program_to_check_Vowel_or_Consonant.c │ │ └── Screenshot.png │ ├── EX3_C_Program_to_find_the_largest_num_among_three_numbers │ │ ├── EX3_C_Program_to_find_the_largest_num_among_three_numbers.c │ │ └── Screenshot.png │ ├── EX4_C_Program_to_check_whether_a_number_is_Positive_or_Negative │ │ ├── EX4_C_Program_to_check_whether_a_number_is_Positive_or_Negative.c │ │ └── Screenshot.png │ ├── EX5_C_Program_to_check_whether_a_character_is_an_Alphabet_or_Not │ │ ├── EX5_C_Program_to_check_whether_a_character_is_an_Alphabet_or_Not.c │ │ └── Screenshot.png │ ├── EX6_C_Program_to_calculate_sum_of_natural_numbers │ │ ├── EX6_C_Program_to_calculate_sum_of_natural_numbers.c │ │ └── Screenshot.png │ ├── EX7_C_Program_to_find_the_Factorial │ │ ├── EX7_C_Program_to_find_the_Factorial.c │ │ └── Screenshot.png │ └── EX8_C_Program_to_make_a_simple_calcularor │ │ ├── EX8_C_Program_to_make_a_simple_calcularor.c │ │ └── Screenshot.png ├── 3_Arrays_ASSs │ ├── EX1_Multidimentional_Array_in_C │ │ ├── EX1_Multidimentional_Array_in_C.c │ │ └── Screenshot.png │ ├── EX2_C_Program_to_calculate_Average_Using_Arrays │ │ ├── EX2_C_Program_to_calculate_Average_Using_Arrays.c │ │ └── Screenshot.png │ ├── EX3_C_Progam_to_find_transpose_of_a_Matrix │ │ ├── EX3_C_Progam_to_find_transpose_of_a_Matrix.c │ │ └── Screenshot.png │ ├── EX4_C_Program_to_insert_an_element_in_an_Array │ │ ├── EX4_C_Program_to_insert_an_element_in_an_Array.c │ │ └── Screenshot.png │ └── EX5_C_Program_to_search_an_element_in_Array │ │ ├── EX5_C_Program_to_search_an_element_in_Array.c │ │ └── Screenshot.png ├── 4_Strings_ASSs │ ├── EX1_C_Program_to_find_the_Frequency_of_Character_in_a_String │ │ ├── EX1_C_Program_to_find_the_Frequency_of_Character_in_a_String.c │ │ └── Screenshot.png │ ├── EX2_C_Program_to_Find_the_length_of_string_without_strlen │ │ ├── EX2_C_Program_to_Find_the_length_of_string_without_strlen.c │ │ └── Screenshot.png │ └── EX3_C_Program_to_reverse_string_without_using_lib_Function │ │ ├── EX3_C_Program_to_reverse_string_without_using_lib_Function.c │ │ └── Screenshot.png ├── 5_Functions_ASSs │ ├── EX1_Prime_Numbers_Between_Two_Intervals_Using_Function │ │ ├── EX1_Prime_Numbers_Between_Two_Intervals_Using_Function.c │ │ └── Screenshot.png │ ├── EX2_C_Program_to_Calculate_Factorial_Using_Recursion │ │ ├── EX2_C_Program_to_Calculate_Factorial_Using_Recursion.c │ │ └── Screenshot.png │ ├── EX3_C_Program_to_Reverse_a_Sentence_Using_Recursion │ │ ├── EX3_C_Program_to_Reverse_a_Sentence_Using_Recursion.c │ │ └── Screenshot.png │ ├── EX4_C_Program_to_Calculate_The_Power_of_a_Number_Using_Recursion │ │ ├── EX4_C_Program_to_Calculate_The_Power_of_a_Number_Using_Recursion.c │ │ └── Screenshot.png │ └── Quiz_Codes │ │ ├── EX1_C_Progtam_to_Know_The_value_of_4th_LSB_in_binary │ │ ├── EX1_C_Progtam_to_Know_The_value_of_4th_LSB_in_binary.c │ │ └── Screenshot.png │ │ ├── EX2_C_Program_to_Clear_Specific_Bit │ │ ├── EX2_C_Program_to_Clear_Specific_Bit.c │ │ └── Screenshot.png │ │ ├── EX3_Check_Num_is_Power_of_3 │ │ ├── EX3_Check_Num_is_Power_of_3.c │ │ └── Screenshot.png │ │ ├── EX5_Check_User_Name │ │ ├── EX5_Check_User_Name.c │ │ └── Screenshot.png │ │ ├── EX6_return_index_of_last_element_of_number │ │ ├── EX6_return_index_of_last_element_of_number.c │ │ └── Screenshot.png │ │ ├── EX7_Swapping_two_arrays_with_Different_length │ │ ├── EX7_Swapping_two_arrays_with_Different_length.c │ │ └── Screenshot.png │ │ ├── EX8_Convert_From_ASCII_to_int │ │ ├── EX8_Convert_From_ASCII_to_int.c │ │ └── Screenshot.png │ │ └── Ex4_Reverse_an_Array │ │ ├── Ex4_Reverse_an_Array.c │ │ └── Screenshot.png ├── 6_Mid_Term_Codes │ ├── .idea │ │ ├── 6_Mid_Term_Codes.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── EX10_Count_Max_Ones_Between_Two_Zeros │ │ ├── EX10_Count_Max_Ones_Between_Two_Zeros.c │ │ └── Screenshot.png │ ├── EX1_Sum_Digits_of_Number │ │ ├── EX1_Sum_Digits_of_Number.c │ │ └── Screenshot.png │ ├── EX2_Square_Root_of_integer │ │ ├── EX2_Square_Root_of_integer.c │ │ └── Screenshot.png │ ├── EX3_Prime_Numbers_in_Interval │ │ ├── EX3_Prime_Numbers_in_Interval.c │ │ └── Screenshot.png │ ├── EX4_Reverse_Number_Digits │ │ ├── EX4_Reverse_Number_Digits.c │ │ └── Screenshot.png │ ├── EX5_Count_Ones_In_Binary_Number │ │ ├── EX5_Count_Ones_In_Binary_Number.c │ │ └── Screenshot.png │ ├── EX6_Unique_Number_in_Array │ │ ├── EX6_Unique_Number_in_Array.c │ │ └── Screenshot.png │ ├── EX7_Sum_from_1_to_N │ │ ├── EX7_Sum_from_1_to_N.c │ │ └── Screenshot.png │ ├── EX8_Reverse_an_Array │ │ ├── EX8_Reverse_an_Array.c │ │ └── Screenshot.png │ └── EX9_Reverse_String_words │ │ ├── EX9_Reverse_String_words.c │ │ └── Screenshot.png ├── 7_Structure_Union_Enum │ ├── EX1_C_Program_to_Store_Info_of_Student _Using_Struct │ │ ├── EX1_C_Program_to_Store_Info_of_Student _Using_Struct.c │ │ └── Screenshot.png │ ├── EX2_C_Program_to_add_two_distances_in_inch_feet │ │ ├── EX2_C_Program_to_add_two_distances_in_inch_feet.c │ │ └── Screenshot.png │ ├── EX3_C_Program_to_add_two_Complex_Numbers_Using_Func │ │ ├── EX3_C_Program_to_add_two_Complex_Numbers_Using_Func.c │ │ └── Screenshot.png │ ├── EX4_C_Program_to_Store_Info_of_Students │ │ ├── EX4_C_Program_to_Store_Info_of_Students.c │ │ ├── Screenshot_1.png │ │ ├── Screenshot_2.png │ │ └── Screenshot_3.png │ ├── EX5_C_Program_to_find_area_of_Circle_Using_macros │ │ ├── EX5_C_Program_to_find_area_of_Circle_Using_macros.c │ │ └── Screenshot.png │ └── EX6_Finding_Size_of_Struct_Union │ │ ├── EX6_Finding_Size_of_Struct_Union.c │ │ └── Screenshot.png └── 8_Pointers │ ├── EX1_C_Program_to_demonstrate_how_to_handle_the_pointers │ ├── EX1_C_Program_to_demonstrate_how_to_handle_the_pointers.c │ └── Screenshot.png │ ├── EX2_C_Program_to_print_all_the_alphabets_using_a_pointer │ ├── EX2_C_Program_to_print_all_the_alphabets_using_a_pointer.c │ └── Screenshot.png │ ├── EX3_C_Program_to_print_a_string_in_reverse_using_pointer │ ├── EX3_C_Program_to_print_a_string_in_reverse_using_pointer.c │ └── Screenshot.png │ ├── EX4_C_Program_to_print_reverse_of_an_array_using_pointer │ ├── EX4_C_Program_to_print_reverse_of_an_array_using_pointer.c │ └── Screenshot.png │ └── EX5_C_Program_to_show_a_pointer_to_an_array_which_contents_are_pointer_to_structure │ ├── EX5_C_Program_to_show_a_pointer_to_an_array_which_contents_are_pointer_to_structure.c │ └── Screenshot.png ├── Unit_3_Embedded_C ├── LEC1_ASSs │ ├── Platform_Types.h │ └── STM32F103C6_TOG_Led │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ └── language.settings.xml │ │ ├── Debug │ │ ├── STM32F103C6_TOG_Led.bin │ │ ├── STM32F103C6_TOG_Led.elf │ │ ├── STM32F103C6_TOG_Led.hex │ │ ├── STM32F103C6_TOG_Led.hex.asm │ │ ├── STM32F103C6_TOG_Led.list │ │ ├── STM32F103C6_TOG_Led.map │ │ ├── Src │ │ │ ├── main.d │ │ │ ├── main.o │ │ │ ├── main.su │ │ │ ├── subdir.mk │ │ │ ├── syscalls.d │ │ │ ├── syscalls.o │ │ │ ├── syscalls.su │ │ │ ├── sysmem.d │ │ │ ├── sysmem.o │ │ │ └── sysmem.su │ │ ├── Startup │ │ │ ├── startup_stm32f103c6tx.d │ │ │ ├── startup_stm32f103c6tx.o │ │ │ └── subdir.mk │ │ ├── makefile │ │ ├── objects.list │ │ ├── objects.mk │ │ └── sources.mk │ │ ├── STM32F103C6TX_FLASH.ld │ │ ├── Src │ │ ├── BIT_MATH.h │ │ ├── Platform_Types.h │ │ ├── main.c │ │ ├── syscalls.c │ │ └── sysmem.c │ │ └── Startup │ │ └── startup_stm32f103c6tx.s ├── LEC2_ASSs │ ├── LAB1_Explanation.pdf │ └── Lab1 │ │ ├── Karem.bin │ │ ├── Karem.elf │ │ ├── app.c │ │ ├── app.o │ │ ├── app.s │ │ ├── linker_script.ld │ │ ├── startup.o │ │ ├── startup.s │ │ ├── uart.c │ │ ├── uart.h │ │ ├── uart.o │ │ └── uart.s ├── LEC3_ASSs │ ├── LAB1_Debugging_Using_GDB_and_Makefile │ │ ├── Lab1_Debugging.pdf │ │ ├── Lab1_Debugging_Makefile │ │ │ ├── Karem.bin │ │ │ ├── Karem.elf │ │ │ ├── Makefile │ │ │ ├── Map_File.map │ │ │ ├── Platform_Types.h │ │ │ ├── app.c │ │ │ ├── app.o │ │ │ ├── app.s │ │ │ ├── linker_script.ld │ │ │ ├── startup.o │ │ │ ├── startup.s │ │ │ ├── uart.c │ │ │ ├── uart.h │ │ │ ├── uart.o │ │ │ └── uart.s │ │ └── Makefile.pdf │ ├── LAB2_Cortex_M3 │ │ ├── Lab2_startup_c │ │ │ ├── BIT_MATH.h │ │ │ ├── Karem.bin │ │ │ ├── Karem.elf │ │ │ ├── Makefile │ │ │ ├── Map_File.map │ │ │ ├── Platform_Types.h │ │ │ ├── linker_script.ld │ │ │ ├── main.c │ │ │ ├── main.o │ │ │ ├── startup.c │ │ │ └── startup.o │ │ └── Lab2_startup_s │ │ │ ├── BIT_MATH.h │ │ │ ├── Karem.bin │ │ │ ├── Karem.elf │ │ │ ├── Karem.hex │ │ │ ├── Makefile │ │ │ ├── Map_File.map │ │ │ ├── Platform_Types.h │ │ │ ├── karem.elf.asm │ │ │ ├── linker_script.ld │ │ │ ├── main.c │ │ │ ├── main.o │ │ │ ├── startup.o │ │ │ └── startup.s │ └── LAB3_TM4C123 │ │ ├── Keil_uvision_unit3_lab4_project │ │ ├── EventRecorderStub.scvd │ │ ├── Keil_uvision_unit3_lab4_project.uvguix.kkhalil │ │ ├── Keil_uvision_unit3_lab4_project.uvguix.repair │ │ ├── Keil_uvision_unit3_lab4_project.uvoptx │ │ └── Keil_uvision_unit3_lab4_project.uvprojx │ │ ├── LAB3.pdf │ │ └── Lab │ │ ├── BIT_MATH.h │ │ ├── Karem_Lab3.axf │ │ ├── Karem_Lab3.bin │ │ ├── Karem_Lab3.elf │ │ ├── Makefile │ │ ├── Map_File.map │ │ ├── Platform_Types.h │ │ ├── Util.h │ │ ├── linker_script.ld │ │ ├── main.c │ │ ├── main.o │ │ ├── startup.c │ │ └── startup.o └── LEC4_ASSs │ └── LAB3_TM4C123 │ ├── Keil_uvision_unit3_lab4_project │ ├── EventRecorderStub.scvd │ ├── Keil_uvision_unit3_lab4_project.uvguix.kkhalil │ ├── Keil_uvision_unit3_lab4_project.uvguix.repair │ ├── Keil_uvision_unit3_lab4_project.uvoptx │ └── Keil_uvision_unit3_lab4_project.uvprojx │ ├── LAB3.pdf │ └── Lab │ ├── BIT_MATH.h │ ├── Karem_Lab3.axf │ ├── Karem_Lab3.bin │ ├── Karem_Lab3.elf │ ├── Makefile │ ├── Map_File.map │ ├── Platform_Types.h │ ├── Util.h │ ├── linker_script.ld │ ├── main.c │ ├── main.o │ ├── startup.c │ └── startup.o ├── Unit_4_System_Architecture ├── Lec1_Data_Structures │ ├── 1_Linked_List │ │ ├── Linked_List.c │ │ └── Linked_List.h │ ├── 2_Stack │ │ ├── LIFO_Buffer │ │ │ ├── lifo.c │ │ │ ├── lifo.h │ │ │ ├── lifo_cfg.h │ │ │ └── lifo_test.c │ │ └── LIFO_using_linked_list │ │ │ ├── Stack_LIFO_Linked_List.c │ │ │ └── Stack_LIFO_Linked_List.h │ ├── 3_Queue │ │ ├── FIFO_Buffer │ │ │ ├── fifo.c │ │ │ ├── fifo.h │ │ │ ├── fifo_cfg.h │ │ │ └── fifo_test.c │ │ └── FIFO_using_linked_list │ │ │ ├── Queue_FIFO_Linked_List.c │ │ │ └── Queue_FIFO_Linked_List.h │ └── Students_DataBase_Using_Linked_List │ │ ├── Students_DataBase_Using_Linked_List.c │ │ ├── Students_DataBase_Using_Linked_List.h │ │ └── main.c └── Lec2_State_Machine │ └── Collision_Avoidance │ ├── CA_LAB1 │ ├── Code │ │ └── CA_LAB1 │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── .settings │ │ │ ├── language.settings.xml │ │ │ └── org.eclipse.cdt.managedbuilder.core.prefs │ │ │ ├── CA.c │ │ │ ├── CA.h │ │ │ ├── Debug │ │ │ ├── CA.o │ │ │ ├── CA_LAB1.exe │ │ │ └── main.o │ │ │ ├── main.c │ │ │ └── state.h │ ├── LAB1_Screenshots │ │ ├── CA_LAB1_1.png │ │ ├── CA_LAB1_10.png │ │ ├── CA_LAB1_11.png │ │ ├── CA_LAB1_2.png │ │ ├── CA_LAB1_3.png │ │ ├── CA_LAB1_4.png │ │ ├── CA_LAB1_5.png │ │ ├── CA_LAB1_6.png │ │ ├── CA_LAB1_7.png │ │ ├── CA_LAB1_8.png │ │ └── CA_LAB1_9.png │ ├── Unit4_Lec2_CA_LAB1.xml │ ├── simulationtrace_fromttool.png │ └── simulationtrace_fromttool.txt │ ├── CA_LAB2 │ ├── Code │ │ └── CA_LAB2 │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── .settings │ │ │ ├── language.settings.xml │ │ │ └── org.eclipse.cdt.managedbuilder.core.prefs │ │ │ ├── CA.c │ │ │ ├── CA.h │ │ │ ├── DC.c │ │ │ ├── DC.h │ │ │ ├── Debug │ │ │ ├── CA.o │ │ │ ├── CA_LAB2.exe │ │ │ ├── DC.o │ │ │ ├── US.o │ │ │ ├── log.txt │ │ │ └── main.o │ │ │ ├── US.c │ │ │ ├── US.h │ │ │ ├── main.c │ │ │ └── state.h │ ├── LAB2_Screenshots │ │ ├── CA_LAB2_0_1.png │ │ ├── CA_LAB2_0_2.png │ │ ├── CA_LAB2_0_3.png │ │ ├── CA_LAB2_0_4.png │ │ ├── CA_LAB2_1.png │ │ ├── CA_LAB2_2.png │ │ ├── CA_LAB2_3.png │ │ ├── CA_LAB2_4.png │ │ ├── CA_LAB2_5.png │ │ ├── CA_LAB2_5_2.png │ │ ├── CA_LAB2_5_3.png │ │ ├── CA_LAB2_5_4.png │ │ ├── CA_LAB2_5_5.png │ │ ├── CA_LAB2_5_6.png │ │ ├── CA_LAB2_6.png │ │ ├── CA_LAB2_7.png │ │ └── CA_LAB2_8.png │ ├── Unit4_Lec2_CA_LAB2.xml │ ├── log.txt │ └── simulationtrace_fromttool.png │ └── Collision_Avoidance_Report.pdf ├── Unit_5_First_Term_Projects ├── Proj1_Pressure_Detection │ ├── Pressure_Detection_Design_V1.0 │ │ ├── Pressure_Detection.xml │ │ ├── Pressure_Detection.xml~ │ │ ├── ScreenShots │ │ │ ├── PD_1.png │ │ │ ├── PD_10.png │ │ │ ├── PD_11.png │ │ │ ├── PD_2.png │ │ │ ├── PD_3.png │ │ │ ├── PD_4.png │ │ │ ├── PD_5.png │ │ │ ├── PD_6.png │ │ │ ├── PD_7.png │ │ │ ├── PD_8.png │ │ │ └── PD_9.png │ │ └── simulationtrace_fromttool.png │ └── Pressure_Detection_Final_Project │ │ ├── Code_and_Proteus_STM32F103C6 │ │ ├── Alarm_Actuator.c │ │ ├── Alarm_Actuator.h │ │ ├── Alarm_Actuator.o │ │ ├── BIT_MATH.h │ │ ├── GPIO.c │ │ ├── GPIO.h │ │ ├── GPIO.o │ │ ├── Main_ALgorithm.c │ │ ├── Main_ALgorithm.h │ │ ├── Main_ALgorithm.o │ │ ├── Makefile │ │ ├── Map_File.map │ │ ├── Platform_Types.h │ │ ├── Pressure_Detection_Karem.bin │ │ ├── Pressure_Detection_Karem.elf │ │ ├── Pressure_Detection_Karem.elf.asm │ │ ├── Pressure_Sensor.c │ │ ├── Pressure_Sensor.h │ │ ├── Pressure_Sensor.o │ │ ├── Simulation │ │ │ ├── FirstTerm_Proj1_Sim.pdsprj │ │ │ ├── FirstTerm_Proj1_Sim.pdsprj.DESKTOP-E2DRO4F.repair.workspace │ │ │ └── Last Loaded FirstTerm_Proj1_Sim.pdsbak │ │ ├── linker_script.ld │ │ ├── main.c │ │ ├── main.o │ │ ├── startup.c │ │ ├── startup.o │ │ └── state.h │ │ ├── Pressure_Detection_Report.pdf │ │ ├── Proj1_Pressure_Detection.xml │ │ ├── Proj1_test │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ │ ├── language.settings.xml │ │ │ └── org.eclipse.cdt.managedbuilder.core.prefs │ │ ├── Alarm_Actuator.c │ │ ├── Alarm_Actuator.h │ │ ├── BIT_MATH.h │ │ ├── Debug │ │ │ ├── Alarm_Actuator.o │ │ │ ├── Main_ALgorithm.o │ │ │ ├── Pressure_Sensor.o │ │ │ ├── Proj1_test.exe │ │ │ └── main.o │ │ ├── Main_ALgorithm.c │ │ ├── Main_ALgorithm.h │ │ ├── Platform_Types.h │ │ ├── Pressure_Sensor.c │ │ ├── Pressure_Sensor.h │ │ ├── main.c │ │ └── state.h │ │ └── ScreenShots │ │ ├── 0-Requirement diagram.png │ │ ├── 1-Check Syntax 1.png │ │ ├── 1-Check Syntax 2.png │ │ ├── 1-design Pressure sensor algorithm.png │ │ ├── 1-design alarm actuator algorithm.png │ │ ├── 1-design block.png │ │ ├── 1-design main algorithm.png │ │ ├── 2-analysis - Sequence diagram.png │ │ ├── 2-analysis - activity diagram.png │ │ ├── 2-analysis - use case diagram.png │ │ ├── All_Files.png │ │ ├── Simulation1.png │ │ ├── Simulation2.png │ │ ├── Test1.png │ │ ├── Test2.png │ │ ├── Test3.png │ │ ├── Test4.png │ │ └── makefile.png └── Proj2_Student_Database_Using_Queue │ ├── DataBase_Students.txt │ ├── Students_Database_Using_Queue.c │ ├── Students_Database_Using_Queue.h │ ├── main.c │ └── students_file.txt ├── Unit_6_MCU_Fundamentals ├── Lec3_MCU_Clocks │ ├── LAB1_STM32F103C6 │ │ ├── LAB1.pdf │ │ └── Lab1_Unit6_Lec3 │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── .settings │ │ │ └── language.settings.xml │ │ │ ├── Debug │ │ │ ├── Lab1_Unit6_Lec3.bin │ │ │ ├── Lab1_Unit6_Lec3.elf │ │ │ ├── Lab1_Unit6_Lec3.list │ │ │ ├── Lab1_Unit6_Lec3.map │ │ │ ├── Src │ │ │ │ ├── main.d │ │ │ │ ├── main.o │ │ │ │ ├── main.su │ │ │ │ ├── subdir.mk │ │ │ │ ├── syscalls.d │ │ │ │ ├── syscalls.o │ │ │ │ ├── syscalls.su │ │ │ │ ├── sysmem.d │ │ │ │ ├── sysmem.o │ │ │ │ └── sysmem.su │ │ │ ├── Startup │ │ │ │ ├── startup_stm32f103c6tx.d │ │ │ │ ├── startup_stm32f103c6tx.o │ │ │ │ └── subdir.mk │ │ │ ├── makefile │ │ │ ├── objects.list │ │ │ ├── objects.mk │ │ │ └── sources.mk │ │ │ ├── Inc │ │ │ └── Platform_Types.h │ │ │ ├── STM32F103C6TX_FLASH.ld │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── syscalls.c │ │ │ └── sysmem.c │ │ │ └── Startup │ │ │ └── startup_stm32f103c6tx.s │ ├── LAB2_STM32F103C6 │ │ ├── LAB2.pdf │ │ └── Unit6_Lec3_Lab2 │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── .settings │ │ │ └── language.settings.xml │ │ │ ├── Debug │ │ │ ├── Src │ │ │ │ ├── main.d │ │ │ │ ├── main.o │ │ │ │ ├── main.su │ │ │ │ ├── subdir.mk │ │ │ │ ├── syscalls.d │ │ │ │ ├── syscalls.o │ │ │ │ ├── syscalls.su │ │ │ │ ├── sysmem.d │ │ │ │ ├── sysmem.o │ │ │ │ └── sysmem.su │ │ │ ├── Startup │ │ │ │ ├── startup_stm32f103c6tx.d │ │ │ │ ├── startup_stm32f103c6tx.o │ │ │ │ └── subdir.mk │ │ │ ├── Unit6_Lec3_Lab2.bin │ │ │ ├── Unit6_Lec3_Lab2.elf │ │ │ ├── Unit6_Lec3_Lab2.list │ │ │ ├── Unit6_Lec3_Lab2.map │ │ │ ├── makefile │ │ │ ├── objects.list │ │ │ ├── objects.mk │ │ │ └── sources.mk │ │ │ ├── Inc │ │ │ └── Platform_Types.h │ │ │ ├── STM32F103C6TX_FLASH.ld │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── syscalls.c │ │ │ └── sysmem.c │ │ │ └── Startup │ │ │ └── startup_stm32f103c6tx.s │ └── LAB3_STM32F103C6 │ │ ├── LAB3.pdf │ │ └── Unit6_Lec3_Lab3 │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ └── language.settings.xml │ │ ├── Debug │ │ ├── Src │ │ │ ├── main.d │ │ │ ├── main.o │ │ │ ├── main.su │ │ │ ├── subdir.mk │ │ │ ├── syscalls.d │ │ │ ├── syscalls.o │ │ │ ├── syscalls.su │ │ │ ├── sysmem.d │ │ │ ├── sysmem.o │ │ │ └── sysmem.su │ │ ├── Startup │ │ │ ├── startup_stm32f103c6tx.d │ │ │ ├── startup_stm32f103c6tx.o │ │ │ └── subdir.mk │ │ ├── Unit6_Lec3_Lab3.bin │ │ ├── Unit6_Lec3_Lab3.elf │ │ ├── Unit6_Lec3_Lab3.list │ │ ├── Unit6_Lec3_Lab3.map │ │ ├── makefile │ │ ├── objects.list │ │ ├── objects.mk │ │ └── sources.mk │ │ ├── Inc │ │ └── Platform_Types.h │ │ ├── STM32F103C6TX_FLASH.ld │ │ ├── Src │ │ ├── main.c │ │ ├── syscalls.c │ │ └── sysmem.c │ │ └── Startup │ │ └── startup_stm32f103c6tx.s └── Lec4_MCU_Interrupts │ ├── LAB2 │ ├── Lab2_Simulation_ScreenShots │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5_Hint_infinite_IRQ.png │ └── Unit6_Lec4_Lab2 │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ └── language.settings.xml │ │ ├── Debug │ │ ├── Src │ │ │ ├── main.d │ │ │ ├── main.o │ │ │ ├── main.su │ │ │ ├── subdir.mk │ │ │ ├── syscalls.d │ │ │ ├── syscalls.o │ │ │ ├── syscalls.su │ │ │ ├── sysmem.d │ │ │ ├── sysmem.o │ │ │ └── sysmem.su │ │ ├── Startup │ │ │ ├── startup_stm32f103c6tx.d │ │ │ ├── startup_stm32f103c6tx.o │ │ │ └── subdir.mk │ │ ├── Unit6_Lec4_Lab2.bin │ │ ├── Unit6_Lec4_Lab2.elf │ │ ├── Unit6_Lec4_Lab2.list │ │ ├── Unit6_Lec4_Lab2.map │ │ ├── makefile │ │ ├── objects.list │ │ ├── objects.mk │ │ └── sources.mk │ │ ├── Inc │ │ └── Platform_Types.h │ │ ├── STM32F103C6TX_FLASH.ld │ │ ├── Src │ │ ├── main.c │ │ ├── syscalls.c │ │ └── sysmem.c │ │ └── Startup │ │ └── startup_stm32f103c6tx.s │ └── LAB3 │ ├── EXTI0_Lab2 │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── de.innot.avreclipse.core.prefs │ ├── BIT_MATH.h │ ├── Debug │ │ ├── EXTI0_Lab2.eep │ │ ├── EXTI0_Lab2.elf │ │ ├── EXTI0_Lab2.hex │ │ ├── EXTI0_Lab2.lss │ │ ├── EXTI0_Lab2.map │ │ ├── main.d │ │ ├── main.o │ │ ├── makefile │ │ ├── objects.mk │ │ ├── sources.mk │ │ └── subdir.mk │ ├── Platform_Types.h │ └── main.c │ ├── Simmulation_Video │ └── EXTI.mp4 │ └── Simulation │ ├── LED_Flashing.DSN │ └── LED_Flashing.pdsprj.DESKTOP-E2DRO4F.repair.workspace ├── Unit_7_MCU_Essential_Peripherals ├── Lec1_GPIO_Part1 │ ├── GPIO_ASS1_Led_Animation │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ │ └── de.innot.avreclipse.core.prefs │ │ ├── BIT_MATH.h │ │ ├── DIO_config.h │ │ ├── DIO_interface.h │ │ ├── DIO_private.h │ │ ├── DIO_program.c │ │ ├── Debug │ │ │ ├── DIO_program.d │ │ │ ├── DIO_program.o │ │ │ ├── GPIO_ASS1.elf │ │ │ ├── GPIO_ASS1.hex │ │ │ ├── GPIO_ASS1.lss │ │ │ ├── GPIO_ASS1.map │ │ │ ├── LED_program.d │ │ │ ├── LED_program.o │ │ │ ├── LEDs_Simple.map │ │ │ ├── SW_program.d │ │ │ ├── SW_program.o │ │ │ ├── main.d │ │ │ ├── main.o │ │ │ ├── makefile │ │ │ ├── objects.mk │ │ │ ├── sources.mk │ │ │ └── subdir.mk │ │ ├── LED_config.h │ │ ├── LED_interface.h │ │ ├── LED_private.h │ │ ├── LED_program.c │ │ ├── STD_TYPES.h │ │ ├── SW_config.h │ │ ├── SW_interface.h │ │ ├── SW_private.h │ │ ├── SW_program.c │ │ └── main.c │ ├── GPIO_Ass1_Simulation │ │ ├── GPIO_ASS1.elf │ │ ├── GPIO_Ass1_Simulation.pdsprj │ │ └── GPIO_Ass1_Simulation.pdsprj.DESKTOP-E2DRO4F.repair.workspace │ ├── LAB1 │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ │ └── language.settings.xml │ │ ├── Debug │ │ │ ├── LAB1.bin │ │ │ ├── LAB1.elf │ │ │ ├── LAB1.list │ │ │ ├── LAB1.map │ │ │ ├── Src │ │ │ │ ├── main.d │ │ │ │ ├── main.o │ │ │ │ ├── main.su │ │ │ │ ├── subdir.mk │ │ │ │ ├── syscalls.d │ │ │ │ ├── syscalls.o │ │ │ │ ├── syscalls.su │ │ │ │ ├── sysmem.d │ │ │ │ ├── sysmem.o │ │ │ │ └── sysmem.su │ │ │ ├── Startup │ │ │ │ ├── startup_stm32f103c6tx.d │ │ │ │ ├── startup_stm32f103c6tx.o │ │ │ │ └── subdir.mk │ │ │ ├── makefile │ │ │ ├── objects.list │ │ │ ├── objects.mk │ │ │ └── sources.mk │ │ ├── Inc │ │ │ └── Platform_Types.h │ │ ├── STM32F103C6TX_FLASH.ld │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── syscalls.c │ │ │ └── sysmem.c │ │ └── Startup │ │ │ └── startup_stm32f103c6tx.s │ ├── LAB1_Simulation │ │ ├── LAB1.elf │ │ ├── LAB1.elf.asm │ │ ├── Last Loaded unit7_lesson1.pdsbak │ │ ├── unit7_lesson1.pdsprj │ │ └── unit7_lesson1.pdsprj.DESKTOP-E2DRO4F.repair.workspace │ └── Traffic_Lights_Multiplixing_7Seg │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ └── de.innot.avreclipse.core.prefs │ │ ├── BIT_MATH.h │ │ ├── DIO_config.h │ │ ├── DIO_interface.h │ │ ├── DIO_private.h │ │ ├── DIO_program.c │ │ ├── Debug │ │ ├── DIO_program.d │ │ ├── DIO_program.o │ │ ├── LED_program.d │ │ ├── LED_program.o │ │ ├── POV_SSD.elf │ │ ├── POV_SSD.hex │ │ ├── POV_SSD.lss │ │ ├── POV_SSD.map │ │ ├── SSD_program.d │ │ ├── SSD_program.o │ │ ├── main.d │ │ ├── main.o │ │ ├── makefile │ │ ├── objects.mk │ │ ├── sources.mk │ │ └── subdir.mk │ │ ├── LED_config.h │ │ ├── LED_interface.h │ │ ├── LED_private.h │ │ ├── LED_program.c │ │ ├── SSD_config.h │ │ ├── SSD_interface.h │ │ ├── SSD_private.h │ │ ├── SSD_program.c │ │ ├── STD_Types.h │ │ └── main.c ├── Lec2_GPIO_Part2 │ ├── CLCD_Driver │ │ ├── CLCD_config.h │ │ ├── CLCD_extrachar.h │ │ ├── CLCD_interface.h │ │ ├── CLCD_private.h │ │ └── CLCD_program.c │ ├── KPD_Driver │ │ ├── KPD_config.h │ │ ├── KPD_interface.h │ │ ├── KPD_private.h │ │ └── KPD_program.c │ ├── LAB_Code │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ │ └── de.innot.avreclipse.core.prefs │ │ ├── BIT_MATH.h │ │ ├── CLCD_config.h │ │ ├── CLCD_extrachar.h │ │ ├── CLCD_interface.h │ │ ├── CLCD_private.h │ │ ├── CLCD_program.c │ │ ├── DIO_config.h │ │ ├── DIO_interface.h │ │ ├── DIO_private.h │ │ ├── DIO_program.c │ │ ├── Debug │ │ │ ├── CLCD_program.d │ │ │ ├── CLCD_program.o │ │ │ ├── DIO_program.d │ │ │ ├── DIO_program.o │ │ │ ├── KPD_program.d │ │ │ ├── KPD_program.o │ │ │ ├── LAB_Code.elf │ │ │ ├── LAB_Code.lss │ │ │ ├── LAB_Code.map │ │ │ ├── main.d │ │ │ ├── main.o │ │ │ ├── makefile │ │ │ ├── objects.mk │ │ │ ├── sources.mk │ │ │ └── subdir.mk │ │ ├── KPD_config.h │ │ ├── KPD_interface.h │ │ ├── KPD_private.h │ │ ├── KPD_program.c │ │ ├── STD_TYPES.h │ │ └── main.c │ └── LAB_Simulation │ │ ├── LAB_Code.elf │ │ ├── LCD_KPD.pdsprj │ │ ├── LCD_KPD.pdsprj.DESKTOP-E2DRO4F.repair.workspace │ │ └── Last Loaded LCD_KPD.pdsbak ├── Lec3_GPIO_Part3 │ ├── LAB1_using_drivers_Sol1 │ │ ├── LAB1 │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── language.settings.xml │ │ │ ├── Debug │ │ │ │ ├── Inc │ │ │ │ │ ├── DIO_program.su │ │ │ │ │ ├── RCC_program.su │ │ │ │ │ └── subdir.mk │ │ │ │ ├── LAB1.bin │ │ │ │ ├── LAB1.elf │ │ │ │ ├── LAB1.list │ │ │ │ ├── LAB1.map │ │ │ │ ├── Src │ │ │ │ │ ├── DIO_program.d │ │ │ │ │ ├── DIO_program.o │ │ │ │ │ ├── DIO_program.su │ │ │ │ │ ├── RCC_program.d │ │ │ │ │ ├── RCC_program.o │ │ │ │ │ ├── RCC_program.su │ │ │ │ │ ├── main.d │ │ │ │ │ ├── main.o │ │ │ │ │ ├── main.su │ │ │ │ │ ├── subdir.mk │ │ │ │ │ ├── syscalls.d │ │ │ │ │ ├── syscalls.o │ │ │ │ │ ├── syscalls.su │ │ │ │ │ ├── sysmem.d │ │ │ │ │ ├── sysmem.o │ │ │ │ │ └── sysmem.su │ │ │ │ ├── Startup │ │ │ │ │ ├── startup_stm32f103c6tx.d │ │ │ │ │ ├── startup_stm32f103c6tx.o │ │ │ │ │ └── subdir.mk │ │ │ │ ├── makefile │ │ │ │ ├── objects.list │ │ │ │ ├── objects.mk │ │ │ │ └── sources.mk │ │ │ ├── Inc │ │ │ │ ├── BIT_MATH.h │ │ │ │ ├── DIO_config.h │ │ │ │ ├── DIO_interface.h │ │ │ │ ├── DIO_private.h │ │ │ │ ├── Platform_Types.h │ │ │ │ ├── RCC_config.h │ │ │ │ ├── RCC_interface.h │ │ │ │ ├── RCC_private.h │ │ │ │ └── STD_TYPES.h │ │ │ ├── STM32F103C6TX_FLASH.ld │ │ │ ├── Src │ │ │ │ ├── DIO_program.c │ │ │ │ ├── RCC_program.c │ │ │ │ ├── main.c │ │ │ │ ├── syscalls.c │ │ │ │ └── sysmem.c │ │ │ └── Startup │ │ │ │ └── startup_stm32f103c6tx.s │ │ └── LAB1_Simulation │ │ │ ├── LAB1.elf │ │ │ ├── LAB1.elf.asm │ │ │ ├── Last Loaded unit7_lesson1.pdsbak │ │ │ ├── unit7_lesson1.pdsprj │ │ │ └── unit7_lesson1.pdsprj.DESKTOP-E2DRO4F.repair.workspace │ ├── LAB1_using_drivers_Sol2 │ │ ├── STM32F103C6_Driver │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── language.settings.xml │ │ │ ├── Debug │ │ │ │ ├── .gitignore │ │ │ │ ├── STM32F103C6_Driver.bin │ │ │ │ ├── STM32F103C6_Driver.elf │ │ │ │ ├── STM32F103C6_Driver.hex │ │ │ │ ├── STM32F103C6_Driver.list │ │ │ │ ├── STM32F103C6_Driver.map │ │ │ │ ├── Src │ │ │ │ │ ├── main.d │ │ │ │ │ ├── main.o │ │ │ │ │ ├── main.su │ │ │ │ │ ├── subdir.mk │ │ │ │ │ ├── syscalls.d │ │ │ │ │ ├── syscalls.o │ │ │ │ │ ├── syscalls.su │ │ │ │ │ ├── sysmem.d │ │ │ │ │ ├── sysmem.o │ │ │ │ │ └── sysmem.su │ │ │ │ ├── Startup │ │ │ │ │ ├── startup_stm32f103c6tx.d │ │ │ │ │ ├── startup_stm32f103c6tx.o │ │ │ │ │ └── subdir.mk │ │ │ │ ├── makefile │ │ │ │ ├── objects.list │ │ │ │ ├── objects.mk │ │ │ │ └── sources.mk │ │ │ ├── MCAL │ │ │ │ └── GPIO │ │ │ │ │ ├── GPIO.c │ │ │ │ │ └── GPIO.h │ │ │ ├── STM32F103C6TX_FLASH.ld │ │ │ ├── Services │ │ │ │ ├── Platform_Types.h │ │ │ │ ├── STM32F103x6.h │ │ │ │ └── Util.h │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── syscalls.c │ │ │ │ └── sysmem.c │ │ │ └── Startup │ │ │ │ └── startup_stm32f103c6tx.s │ │ └── STM32F103C6_Driver_Simulation │ │ │ ├── Last Loaded unit7_lesson1.pdsbak │ │ │ ├── STM32F103C6_Driver.elf │ │ │ ├── STM32F103C6_Driver.elf.asm │ │ │ ├── unit7_lesson1.pdsprj │ │ │ └── unit7_lesson1.pdsprj.DESKTOP-E2DRO4F.repair.workspace │ └── Section │ │ ├── LAB_Drivers │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ │ ├── com.st.stm32cube.ide.mcu.sfrview.prefs │ │ │ └── language.settings.xml │ │ ├── Debug │ │ │ ├── Drivers1.bin │ │ │ ├── Drivers1.elf │ │ │ ├── Drivers1.elf.asm │ │ │ ├── Drivers1.hex │ │ │ ├── Drivers1.hex.asm │ │ │ ├── Drivers1.list │ │ │ ├── Drivers1.map │ │ │ ├── Src │ │ │ │ ├── main.d │ │ │ │ ├── main.o │ │ │ │ ├── main.su │ │ │ │ ├── subdir.mk │ │ │ │ ├── syscalls.d │ │ │ │ ├── syscalls.o │ │ │ │ ├── syscalls.su │ │ │ │ ├── sysmem.d │ │ │ │ ├── sysmem.o │ │ │ │ └── sysmem.su │ │ │ ├── Startup │ │ │ │ ├── startup_stm32f103c6tx.d │ │ │ │ ├── startup_stm32f103c6tx.o │ │ │ │ └── subdir.mk │ │ │ ├── Stm32_F103C6_Drivers │ │ │ │ ├── KEYPAD_DRIVER │ │ │ │ │ ├── keypad.d │ │ │ │ │ ├── keypad.o │ │ │ │ │ ├── keypad.su │ │ │ │ │ └── subdir.mk │ │ │ │ ├── LCD_DRIVER │ │ │ │ │ ├── lcd.d │ │ │ │ │ ├── lcd.o │ │ │ │ │ ├── lcd.su │ │ │ │ │ └── subdir.mk │ │ │ │ ├── Stm32_F103C6_gpio_driver.d │ │ │ │ ├── Stm32_F103C6_gpio_driver.o │ │ │ │ ├── Stm32_F103C6_gpio_driver.su │ │ │ │ └── subdir.mk │ │ │ ├── makefile │ │ │ ├── objects.list │ │ │ ├── objects.mk │ │ │ └── sources.mk │ │ ├── Drivers Debug.launch │ │ ├── STM32F103C6TX_FLASH.ld │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── syscalls.c │ │ │ └── sysmem.c │ │ ├── Startup │ │ │ └── startup_stm32f103c6tx.s │ │ └── Stm32_F103C6_Drivers │ │ │ ├── KEYPAD_DRIVER │ │ │ ├── keypad.c │ │ │ └── keypad.h │ │ │ ├── LCD_DRIVER │ │ │ ├── lcd.c │ │ │ └── lcd.h │ │ │ ├── Stm32_F103C6_gpio_driver.c │ │ │ └── inc │ │ │ ├── Stm32_F103C6_gpio_driver.h │ │ │ └── stm32f103x6.h │ │ └── Simulation │ │ ├── Drivers1.elf │ │ ├── stm32_lcd_keypad.pdsprj │ │ └── stm32_lcd_keypad.pdsprj.DESKTOP-E2DRO4F.repair.workspace └── Lec4_EXTI │ ├── LAB_STM32F103C6 │ ├── STM32F103C6_Driver │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ │ └── language.settings.xml │ │ ├── APP │ │ │ ├── 01_GPIO_Test_1_LCD_Keypad.c │ │ │ ├── 02_GPIO_Test_2_LEDs_Using_Push_Button.c │ │ │ ├── 03_GPIO_Test_3_Keypad_LCD_7_Segment.c │ │ │ ├── 04_EXTI_Test_1_LCD_Push_Button.c │ │ │ └── inc │ │ │ │ ├── 01_GPIO_Test_1_LCD_Keypad.h │ │ │ │ ├── 02_GPIO_Test_2_LEDs_Using_Push_Button.h │ │ │ │ ├── 03_GPIO_Test_3_Keypad_LCD_7_Segment.h │ │ │ │ └── 04_EXTI_Test_1_LCD_Push_Button.h │ │ ├── Debug │ │ │ ├── .gitignore │ │ │ ├── STM32F103C6_Driver.bin │ │ │ ├── STM32F103C6_Driver.elf │ │ │ ├── STM32F103C6_Driver.elf.asm │ │ │ ├── STM32F103C6_Driver.hex │ │ │ ├── STM32F103C6_Driver.hex.asm │ │ │ ├── STM32F103C6_Driver.list │ │ │ ├── STM32F103C6_Driver.map │ │ │ ├── Src │ │ │ │ ├── main.d │ │ │ │ ├── main.o │ │ │ │ ├── main.su │ │ │ │ ├── subdir.mk │ │ │ │ ├── syscalls.d │ │ │ │ ├── syscalls.o │ │ │ │ ├── syscalls.su │ │ │ │ ├── sysmem.d │ │ │ │ ├── sysmem.o │ │ │ │ └── sysmem.su │ │ │ ├── Startup │ │ │ │ ├── startup_stm32f103c6tx.d │ │ │ │ ├── startup_stm32f103c6tx.o │ │ │ │ └── subdir.mk │ │ │ ├── makefile │ │ │ ├── objects.list │ │ │ ├── objects.mk │ │ │ └── sources.mk │ │ ├── Get_EXTI_Define.c │ │ ├── HAL │ │ │ ├── Keypad │ │ │ │ ├── Keypad.c │ │ │ │ └── Keypad.h │ │ │ ├── LCD │ │ │ │ ├── LCD.c │ │ │ │ └── LCD.h │ │ │ └── S7_Segment │ │ │ │ ├── S7_Segment.c │ │ │ │ └── S7_Segment.h │ │ ├── MCAL │ │ │ ├── inc │ │ │ │ ├── Platform_Types.h │ │ │ │ ├── STM32F103x6.h │ │ │ │ ├── Util.h │ │ │ │ ├── stm32f103x6_EXTI_driver.h │ │ │ │ └── stm32f103x6_GPIO_driver.h │ │ │ ├── stm32f103x6_EXTI_driver.c │ │ │ └── stm32f103x6_GPIO_driver.c │ │ ├── STM32F103C6TX_FLASH.ld │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── syscalls.c │ │ │ └── sysmem.c │ │ └── Startup │ │ │ └── startup_stm32f103c6tx.s │ └── Simulation │ │ ├── Backup Of Unit7_lesson4.pdsbak │ │ ├── Last Loaded Unit7_lesson4.pdsbak │ │ ├── STM32F103C6_Driver.elf.asm │ │ ├── STM32F103C6_EXTI.elf │ │ ├── Unit7_lesson4.pdsprj │ │ └── Unit7_lesson4.pdsprj.DESKTOP-E2DRO4F.repair.workspace │ └── Section │ ├── Code │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── de.innot.avreclipse.core.prefs │ ├── BIT_MATH.h │ ├── CLCD_config.h │ ├── CLCD_extrachar.h │ ├── CLCD_interface.h │ ├── CLCD_private.h │ ├── CLCD_program.c │ ├── DIO_config.h │ ├── DIO_interface.h │ ├── DIO_private.h │ ├── DIO_program.c │ ├── Debug │ │ ├── CLCD_program.d │ │ ├── CLCD_program.o │ │ ├── Code.elf │ │ ├── Code.lss │ │ ├── Code.map │ │ ├── DIO_program.d │ │ ├── DIO_program.o │ │ ├── EXTI_Code.map │ │ ├── KPD_program.d │ │ ├── KPD_program.o │ │ ├── LAB_Code.lss │ │ ├── LAB_Code.map │ │ ├── main.d │ │ ├── main.o │ │ ├── makefile │ │ ├── objects.mk │ │ ├── sources.mk │ │ └── subdir.mk │ ├── STD_TYPES.h │ └── main.c │ ├── Screenshot.png │ └── Simulation │ ├── AMITKIT.pdsprj │ ├── AMITKIT.pdsprj.DESKTOP-E2DRO4F.repair.workspace │ ├── Backup Of AMITKIT.pdsbak │ ├── Code.elf │ └── Last Loaded AMITKIT.pdsbak ├── Unit_8_MCU_Interfacing ├── Lec1_I_O_Characteristics │ └── I_O_Characteristics.pdf ├── Lec2_UART_Protocol │ └── Sec │ │ ├── Code │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ │ └── de.innot.avreclipse.core.prefs │ │ ├── BIT_MATH.h │ │ ├── CLCD_config.h │ │ ├── CLCD_extrachar.h │ │ ├── CLCD_interface.h │ │ ├── CLCD_private.h │ │ ├── CLCD_program.c │ │ ├── DIO_config.h │ │ ├── DIO_interface.h │ │ ├── DIO_private.h │ │ ├── DIO_program.c │ │ ├── Debug │ │ │ ├── CLCD_program.d │ │ │ ├── CLCD_program.o │ │ │ ├── Code.elf │ │ │ ├── Code.lss │ │ │ ├── Code.map │ │ │ ├── DIO_program.d │ │ │ ├── DIO_program.o │ │ │ ├── EXTI_Code.map │ │ │ ├── KPD_program.d │ │ │ ├── KPD_program.o │ │ │ ├── LAB_Code.lss │ │ │ ├── LAB_Code.map │ │ │ ├── USART_program.d │ │ │ ├── USART_program.o │ │ │ ├── main.d │ │ │ ├── main.o │ │ │ ├── makefile │ │ │ ├── objects.mk │ │ │ ├── sources.mk │ │ │ └── subdir.mk │ │ ├── STD_TYPES.h │ │ ├── USART_config.h │ │ ├── USART_interface.h │ │ ├── USART_private.h │ │ ├── USART_program.c │ │ └── main.c │ │ └── Simulation │ │ ├── Code.elf │ │ └── USART_Tx_Rx.pdsprj ├── Lec3_UART_Driver │ ├── Lecture │ │ └── Drivers │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── .settings │ │ │ └── language.settings.xml │ │ │ ├── Debug │ │ │ ├── Drivers.bin │ │ │ ├── Drivers.elf │ │ │ ├── Drivers.list │ │ │ ├── Drivers.map │ │ │ ├── HAL │ │ │ │ ├── keypad.d │ │ │ │ ├── keypad.o │ │ │ │ ├── keypad.su │ │ │ │ ├── lcd.d │ │ │ │ ├── lcd.o │ │ │ │ ├── lcd.su │ │ │ │ └── subdir.mk │ │ │ ├── Src │ │ │ │ ├── main.d │ │ │ │ ├── main.o │ │ │ │ ├── main.su │ │ │ │ ├── subdir.mk │ │ │ │ ├── syscalls.d │ │ │ │ ├── syscalls.o │ │ │ │ ├── syscalls.su │ │ │ │ ├── sysmem.d │ │ │ │ ├── sysmem.o │ │ │ │ └── sysmem.su │ │ │ ├── Startup │ │ │ │ ├── startup_stm32f103c6tx.d │ │ │ │ ├── startup_stm32f103c6tx.o │ │ │ │ └── subdir.mk │ │ │ ├── Stm32_F103C6_Drivers │ │ │ │ ├── GPIO │ │ │ │ │ ├── stm32f103x8_gpio_driver.d │ │ │ │ │ ├── stm32f103x8_gpio_driver.o │ │ │ │ │ ├── stm32f103x8_gpio_driver.su │ │ │ │ │ └── subdir.mk │ │ │ │ ├── stm32f103x8_EXTI_driver.d │ │ │ │ ├── stm32f103x8_EXTI_driver.o │ │ │ │ ├── stm32f103x8_EXTI_driver.su │ │ │ │ ├── stm32f103x8_RCC_driver.d │ │ │ │ ├── stm32f103x8_RCC_driver.o │ │ │ │ ├── stm32f103x8_RCC_driver.su │ │ │ │ ├── stm32f103x8_USART_driver.d │ │ │ │ ├── stm32f103x8_USART_driver.o │ │ │ │ ├── stm32f103x8_USART_driver.su │ │ │ │ └── subdir.mk │ │ │ ├── makefile │ │ │ ├── objects.list │ │ │ ├── objects.mk │ │ │ └── sources.mk │ │ │ ├── HAL │ │ │ ├── includes │ │ │ │ ├── keypad.h │ │ │ │ └── lcd.h │ │ │ ├── keypad.c │ │ │ └── lcd.c │ │ │ ├── STM32F103C6TX_FLASH.ld │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── syscalls.c │ │ │ └── sysmem.c │ │ │ ├── Startup │ │ │ └── startup_stm32f103c6tx.s │ │ │ └── Stm32_F103C6_Drivers │ │ │ ├── GPIO │ │ │ └── stm32f103x8_gpio_driver.c │ │ │ ├── inc │ │ │ ├── STM32F103x8.h │ │ │ ├── stm32f103x8_EXTI_driver.h │ │ │ ├── stm32f103x8_RCC_driver.h │ │ │ ├── stm32f103x8_USART_driver.h │ │ │ └── stm32f103x8_gpio_driver.h │ │ │ ├── stm32f103x8_EXTI_driver.c │ │ │ ├── stm32f103x8_RCC_driver.c │ │ │ └── stm32f103x8_USART_driver.c │ ├── Section │ │ ├── Code │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── de.innot.avreclipse.core.prefs │ │ │ ├── BIT_MATH.h │ │ │ ├── CLCD_config.h │ │ │ ├── CLCD_extrachar.h │ │ │ ├── CLCD_interface.h │ │ │ ├── CLCD_private.h │ │ │ ├── CLCD_program.c │ │ │ ├── DIO_config.h │ │ │ ├── DIO_interface.h │ │ │ ├── DIO_private.h │ │ │ ├── DIO_program.c │ │ │ ├── Debug │ │ │ │ ├── CLCD_program.d │ │ │ │ ├── CLCD_program.o │ │ │ │ ├── Code.elf │ │ │ │ ├── Code.lss │ │ │ │ ├── Code.map │ │ │ │ ├── DIO_program.d │ │ │ │ ├── DIO_program.o │ │ │ │ ├── EXTI_Code.map │ │ │ │ ├── GIE_program.d │ │ │ │ ├── GIE_program.o │ │ │ │ ├── KPD_program.d │ │ │ │ ├── KPD_program.o │ │ │ │ ├── LAB_Code.lss │ │ │ │ ├── LAB_Code.map │ │ │ │ ├── USART_program.d │ │ │ │ ├── USART_program.o │ │ │ │ ├── main.d │ │ │ │ ├── main.o │ │ │ │ ├── makefile │ │ │ │ ├── objects.mk │ │ │ │ ├── sources.mk │ │ │ │ └── subdir.mk │ │ │ ├── GIE_interface.h │ │ │ ├── GIE_program.c │ │ │ ├── GIE_register.h │ │ │ ├── STD_TYPES.h │ │ │ ├── USART_config.h │ │ │ ├── USART_interface.h │ │ │ ├── USART_private.h │ │ │ ├── USART_program.c │ │ │ └── main.c │ │ └── Simulation │ │ │ ├── Code.elf │ │ │ ├── USART_Rx_INT.pdsprj │ │ │ └── USART_Rx_INT.pdsprj.DESKTOP-E2DRO4F.repair.workspace │ ├── USART_ATMega32 │ │ ├── USART_config.h │ │ ├── USART_interface.h │ │ ├── USART_private.h │ │ └── USART_program.c │ └── USART_STM32F103C6 │ │ ├── USART_config.h │ │ ├── USART_interface.h │ │ ├── USART_private.h │ │ └── USART_program.c ├── Lec4_SPI_Protocol │ └── Sec │ │ ├── LAB1_Two_MCUs_SPI_SSD │ │ ├── SPI_Master_Node │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── de.innot.avreclipse.core.prefs │ │ │ ├── BIT_MATH.h │ │ │ ├── Debug │ │ │ │ ├── SPI_Master_Node.elf │ │ │ │ ├── SPI_Master_Node.lss │ │ │ │ ├── SPI_Master_Node.map │ │ │ │ ├── main.d │ │ │ │ ├── main.o │ │ │ │ ├── makefile │ │ │ │ ├── objects.mk │ │ │ │ ├── sources.mk │ │ │ │ └── subdir.mk │ │ │ ├── STD_TYPES.h │ │ │ └── main.c │ │ ├── SPI_Slave_Node │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── de.innot.avreclipse.core.prefs │ │ │ ├── BIT_MATH.h │ │ │ ├── Debug │ │ │ │ ├── SPI_Master_Node.map │ │ │ │ ├── SPI_Slave_Node.elf │ │ │ │ ├── SPI_Slave_Node.lss │ │ │ │ ├── SPI_Slave_Node.map │ │ │ │ ├── main.d │ │ │ │ ├── main.o │ │ │ │ ├── makefile │ │ │ │ ├── objects.mk │ │ │ │ ├── sources.mk │ │ │ │ └── subdir.mk │ │ │ ├── STD_TYPES.h │ │ │ └── main.c │ │ └── Simulation │ │ │ ├── LAB1_Two_MCUs_SPI_SSD.pdsprj │ │ │ ├── SPI_Master_Node.elf │ │ │ └── SPI_Slave_Node.elf │ │ └── Lab2_MAX7221_Send_Numbers │ │ ├── SPI_Master_Node │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ │ └── de.innot.avreclipse.core.prefs │ │ ├── BIT_MATH.h │ │ ├── Debug │ │ │ ├── SPI_Master_Node.elf │ │ │ ├── SPI_Master_Node.lss │ │ │ ├── SPI_Master_Node.map │ │ │ ├── main.d │ │ │ ├── main.o │ │ │ ├── makefile │ │ │ ├── objects.mk │ │ │ ├── sources.mk │ │ │ └── subdir.mk │ │ ├── STD_TYPES.h │ │ └── main.c │ │ └── Simulation │ │ ├── Lab2_MAX7221_Send_Numbers.pdsprj │ │ └── SPI_Master_Node.elf ├── Lec5_SPI_Driver │ ├── SPI_ATMega32 │ │ ├── SPI_config.h │ │ ├── SPI_interface.h │ │ ├── SPI_private.h │ │ └── SPI_program.c │ └── SPI_STM32F103C6 │ │ ├── SPI_config.h │ │ ├── SPI_interface.h │ │ ├── SPI_private.h │ │ └── SPI_program.c ├── Lec6_I2C_Protocol │ ├── LAB1_Master_Tx_Slave_Rx │ │ ├── Master_Node │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── de.innot.avreclipse.core.prefs │ │ │ ├── BIT_MATH.h │ │ │ ├── DIO_config.h │ │ │ ├── DIO_interface.h │ │ │ ├── DIO_private.h │ │ │ ├── DIO_program.c │ │ │ ├── Debug │ │ │ │ ├── DIO_program.d │ │ │ │ ├── DIO_program.o │ │ │ │ ├── Master_Node.elf │ │ │ │ ├── Master_Node.lss │ │ │ │ ├── Master_Node.map │ │ │ │ ├── TWI_program.d │ │ │ │ ├── TWI_program.o │ │ │ │ ├── main.d │ │ │ │ ├── main.o │ │ │ │ ├── makefile │ │ │ │ ├── objects.mk │ │ │ │ ├── sources.mk │ │ │ │ └── subdir.mk │ │ │ ├── STD_TYPES.h │ │ │ ├── TWI_config.h │ │ │ ├── TWI_interface.h │ │ │ ├── TWI_private.h │ │ │ ├── TWI_program.c │ │ │ └── main.c │ │ ├── Simulation │ │ │ ├── I2C MT SR.pdsprj │ │ │ ├── Master_Node.elf │ │ │ └── Slave_Node.elf │ │ └── Slave_Node │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── .settings │ │ │ └── de.innot.avreclipse.core.prefs │ │ │ ├── BIT_MATH.h │ │ │ ├── DIO_config.h │ │ │ ├── DIO_interface.h │ │ │ ├── DIO_private.h │ │ │ ├── DIO_program.c │ │ │ ├── Debug │ │ │ ├── DIO_program.d │ │ │ ├── DIO_program.o │ │ │ ├── Slave_Node.elf │ │ │ ├── Slave_Node.lss │ │ │ ├── Slave_Node.map │ │ │ ├── TWI_program.d │ │ │ ├── TWI_program.o │ │ │ ├── main.d │ │ │ ├── main.o │ │ │ ├── makefile │ │ │ ├── objects.mk │ │ │ ├── sources.mk │ │ │ └── subdir.mk │ │ │ ├── STD_TYPES.h │ │ │ ├── TWI_config.h │ │ │ ├── TWI_interface.h │ │ │ ├── TWI_private.h │ │ │ ├── TWI_program.c │ │ │ └── main.c │ └── LAB2_Slave_Tx_Master_Rx │ │ ├── Master_Node │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ │ └── de.innot.avreclipse.core.prefs │ │ ├── BIT_MATH.h │ │ ├── DIO_config.h │ │ ├── DIO_interface.h │ │ ├── DIO_private.h │ │ ├── DIO_program.c │ │ ├── Debug │ │ │ ├── DIO_program.d │ │ │ ├── DIO_program.o │ │ │ ├── Master_Node.elf │ │ │ ├── Master_Node.lss │ │ │ ├── Master_Node.map │ │ │ ├── TWI_program.d │ │ │ ├── TWI_program.o │ │ │ ├── main.d │ │ │ ├── main.o │ │ │ ├── makefile │ │ │ ├── objects.mk │ │ │ ├── sources.mk │ │ │ └── subdir.mk │ │ ├── STD_TYPES.h │ │ ├── TWI_config.h │ │ ├── TWI_interface.h │ │ ├── TWI_private.h │ │ ├── TWI_program.c │ │ └── main.c │ │ ├── Simulation │ │ ├── I2C MR ST.pdsprj │ │ ├── Master_Node.elf │ │ └── Slave_Node.elf │ │ └── Slave_Node │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ └── de.innot.avreclipse.core.prefs │ │ ├── BIT_MATH.h │ │ ├── DIO_config.h │ │ ├── DIO_interface.h │ │ ├── DIO_private.h │ │ ├── DIO_program.c │ │ ├── Debug │ │ ├── DIO_program.d │ │ ├── DIO_program.o │ │ ├── Slave_Node.elf │ │ ├── Slave_Node.lss │ │ ├── Slave_Node.map │ │ ├── TWI_program.d │ │ ├── TWI_program.o │ │ ├── main.d │ │ ├── main.o │ │ ├── makefile │ │ ├── objects.mk │ │ ├── sources.mk │ │ └── subdir.mk │ │ ├── STD_TYPES.h │ │ ├── TWI_config.h │ │ ├── TWI_interface.h │ │ ├── TWI_private.h │ │ ├── TWI_program.c │ │ └── main.c └── Lec7_I2C_Driver │ └── TWI_ATMega32 │ ├── TWI_config.h │ ├── TWI_interface.h │ ├── TWI_private.h │ └── TWI_program.c └── Unit_9_MCU_Timer_&_ADC ├── Lec1_TIMER ├── TIMER_ATMega32 │ ├── TIMER_config.h │ ├── TIMER_interface.h │ ├── TIMER_private.h │ ├── TIMER_program.c │ └── TIMER_register.h ├── TIMER_DELAY │ ├── Simulation │ │ ├── Simulation.pdsprj │ │ ├── Simulation.pdsprj.DESKTOP-E2DRO4F.repair.workspace │ │ └── TIMER_DELAY.elf │ └── TIMER_DELAY │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ └── de.innot.avreclipse.core.prefs │ │ ├── BIT_MATH.h │ │ ├── DIO_config.h │ │ ├── DIO_interface.h │ │ ├── DIO_private.h │ │ ├── DIO_program.c │ │ ├── Debug │ │ ├── DIO_program.d │ │ ├── DIO_program.o │ │ ├── GIE_program.d │ │ ├── GIE_program.o │ │ ├── LED_program.d │ │ ├── LED_program.o │ │ ├── TIMER0_DELAY.map │ │ ├── TIMER1_DELAY.map │ │ ├── TIMER_DELAY.elf │ │ ├── TIMER_DELAY.hex │ │ ├── TIMER_DELAY.lss │ │ ├── TIMER_DELAY.map │ │ ├── TIMER_program.d │ │ ├── TIMER_program.o │ │ ├── WatchDog_Timer.map │ │ ├── main.d │ │ ├── main.o │ │ ├── makefile │ │ ├── objects.mk │ │ ├── sources.mk │ │ └── subdir.mk │ │ ├── GIE_interface.h │ │ ├── GIE_program.c │ │ ├── GIE_register.h │ │ ├── LED_config.h │ │ ├── LED_interface.h │ │ ├── LED_private.h │ │ ├── LED_program.c │ │ ├── STD_TYPES.h │ │ ├── TIMER_config.h │ │ ├── TIMER_interface.h │ │ ├── TIMER_private.h │ │ ├── TIMER_program.c │ │ ├── TIMER_register.h │ │ └── main.c └── WD_Timer │ ├── Simulation │ ├── Simulation.pdsprj │ └── WatchDog_Timer.elf │ └── WatchDog_Timer │ ├── .cproject │ ├── .project │ ├── .settings │ └── de.innot.avreclipse.core.prefs │ ├── BIT_MATH.h │ ├── DIO_config.h │ ├── DIO_interface.h │ ├── DIO_private.h │ ├── DIO_program.c │ ├── Debug │ ├── DIO_program.d │ ├── DIO_program.o │ ├── LED_program.d │ ├── LED_program.o │ ├── TIMER_program.d │ ├── TIMER_program.o │ ├── WatchDog_Timer.elf │ ├── WatchDog_Timer.lss │ ├── WatchDog_Timer.map │ ├── main.d │ ├── main.o │ ├── makefile │ ├── objects.mk │ ├── sources.mk │ └── subdir.mk │ ├── LED_config.h │ ├── LED_interface.h │ ├── LED_private.h │ ├── LED_program.c │ ├── STD_TYPES.h │ ├── TIMER_config.h │ ├── TIMER_interface.h │ ├── TIMER_private.h │ ├── TIMER_program.c │ ├── TIMER_register.h │ └── main.c └── Lec2_ADC ├── ADC_Temperature_Sensor ├── .cproject ├── .project ├── .settings │ └── de.innot.avreclipse.core.prefs ├── ADC_config.h ├── ADC_interface.h ├── ADC_private.h ├── ADC_program.c ├── BIT_MATH.h ├── CLCD_config.h ├── CLCD_extrachar.h ├── CLCD_interface.h ├── CLCD_private.h ├── CLCD_program.c ├── DIO_config.h ├── DIO_interface.h ├── DIO_private.h ├── DIO_program.c ├── Debug │ ├── ADC_Temperature_Sensor.elf │ ├── ADC_Temperature_Sensor.lss │ ├── ADC_Temperature_Sensor.map │ ├── ADC_program.d │ ├── ADC_program.o │ ├── CLCD_program.d │ ├── CLCD_program.o │ ├── DIO_program.d │ ├── DIO_program.o │ ├── LM35_program.d │ ├── LM35_program.o │ ├── main.d │ ├── main.o │ ├── makefile │ ├── objects.mk │ ├── sources.mk │ └── subdir.mk ├── LM35_config.h ├── LM35_interface.h ├── LM35_private.h ├── LM35_program.c ├── STD_TYPES.h └── main.c └── ADC_Temperature_Sensor_Simulation ├── ADC_Temperature_Sensor.elf ├── ADC_Temperature_Sensor_Simulation.pdsprj └── ADC_Temperature_Sensor_Simulation.pdsprj.DESKTOP-E2DRO4F.repair.workspace /README.md: -------------------------------------------------------------------------------- 1 | # Embedded_System_Online_Diploma 2 | 3 | ## Mahmoud Karem -------------------------------------------------------------------------------- /Unit_10_SW_Engineering (Testing & Validation)/Agile_JIRA_ScrumMethodology/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_10_SW_Engineering (Testing & Validation)/Agile_JIRA_ScrumMethodology/1.png -------------------------------------------------------------------------------- /Unit_10_SW_Engineering (Testing & Validation)/Agile_JIRA_ScrumMethodology/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_10_SW_Engineering (Testing & Validation)/Agile_JIRA_ScrumMethodology/2.png -------------------------------------------------------------------------------- /Unit_10_SW_Engineering (Testing & Validation)/Agile_JIRA_ScrumMethodology/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_10_SW_Engineering (Testing & Validation)/Agile_JIRA_ScrumMethodology/3.png -------------------------------------------------------------------------------- /Unit_10_SW_Engineering (Testing & Validation)/Agile_JIRA_ScrumMethodology/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_10_SW_Engineering (Testing & Validation)/Agile_JIRA_ScrumMethodology/4.png -------------------------------------------------------------------------------- /Unit_10_SW_Engineering (Testing & Validation)/Agile_JIRA_ScrumMethodology/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_10_SW_Engineering (Testing & Validation)/Agile_JIRA_ScrumMethodology/5.png -------------------------------------------------------------------------------- /Unit_10_SW_Engineering (Testing & Validation)/Agile_JIRA_ScrumMethodology/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_10_SW_Engineering (Testing & Validation)/Agile_JIRA_ScrumMethodology/6.png -------------------------------------------------------------------------------- /Unit_10_SW_Engineering (Testing & Validation)/Agile_JIRA_ScrumMethodology/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_10_SW_Engineering (Testing & Validation)/Agile_JIRA_ScrumMethodology/7.png -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/ReadMe.md -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/.cproject -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/.project -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/AFIO_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/AFIO_program.d -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/AFIO_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/AFIO_program.o -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/DIO_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/DIO_program.d -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/DIO_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/DIO_program.o -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/DIO_program.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/DIO_program.su -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/EXTI_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/EXTI_program.d -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/EXTI_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/EXTI_program.o -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/NVIC_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/NVIC_program.d -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/NVIC_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/NVIC_program.o -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/RCC_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/RCC_program.d -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/RCC_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/RCC_program.o -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/RCC_program.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/RCC_program.su -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/main.d -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/main.o -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/main.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/main.su -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/subdir.mk -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/syscalls.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/syscalls.d -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/syscalls.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/syscalls.o -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/syscalls.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/syscalls.su -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/sysmem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/sysmem.d -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/sysmem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/sysmem.o -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Src/sysmem.su: -------------------------------------------------------------------------------- 1 | sysmem.c:54:7:_sbrk 32 static 2 | -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Startup/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/Startup/subdir.mk -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/makefile -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/objects.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/objects.list -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/objects.mk -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Debug/sources.mk -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/AFIO_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/AFIO_config.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/AFIO_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/AFIO_interface.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/AFIO_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/AFIO_private.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/BIT_MATH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/BIT_MATH.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/DIO_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/DIO_config.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/DIO_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/DIO_interface.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/DIO_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/DIO_private.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/EXTI_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/EXTI_config.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/EXTI_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/EXTI_interface.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/EXTI_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/EXTI_private.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/NVIC_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/NVIC_config.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/NVIC_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/NVIC_interface.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/NVIC_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/NVIC_private.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/RCC_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/RCC_config.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/RCC_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/RCC_interface.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/RCC_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/RCC_private.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/STD_TYPES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Inc/STD_TYPES.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/STM32F103C6TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/STM32F103C6TX_FLASH.ld -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Src/AFIO_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Src/AFIO_program.c -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Src/DIO_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Src/DIO_program.c -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Src/EXTI_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Src/EXTI_program.c -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Src/NVIC_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Src/NVIC_program.c -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Src/RCC_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Src/RCC_program.c -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Src/main.c -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Src/syscalls.c -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_EXTI/Src/sysmem.c -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/.cproject -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/.project -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/main.d -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/main.o -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/main.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/main.su -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/subdir.mk -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/syscalls.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/syscalls.d -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/syscalls.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/syscalls.o -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/syscalls.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/syscalls.su -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/sysmem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/sysmem.d -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/sysmem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/sysmem.o -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/Src/sysmem.su: -------------------------------------------------------------------------------- 1 | sysmem.c:54:7:_sbrk 32 static 2 | -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/makefile -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/objects.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/objects.list -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/objects.mk -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Debug/sources.mk -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/AFIO_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/AFIO_config.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/AFIO_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/AFIO_interface.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/AFIO_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/AFIO_private.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/BIT_MATH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/BIT_MATH.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/DIO_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/DIO_config.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/DIO_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/DIO_interface.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/DIO_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/DIO_private.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/EXTI_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/EXTI_config.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/EXTI_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/EXTI_interface.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/EXTI_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/EXTI_private.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/NVIC_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/NVIC_config.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/NVIC_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/NVIC_interface.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/NVIC_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/NVIC_private.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/RCC_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/RCC_config.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/RCC_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/RCC_interface.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/RCC_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/RCC_private.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/STD_TYPES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/STD_TYPES.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/STK_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/STK_config.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/STK_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/STK_interface.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/STK_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Inc/STK_private.h -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Src/AFIO_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Src/AFIO_program.c -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Src/DIO_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Src/DIO_program.c -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Src/EXTI_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Src/EXTI_program.c -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Src/NVIC_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Src/NVIC_program.c -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Src/RCC_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Src/RCC_program.c -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Src/STK_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Src/STK_program.c -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Src/main.c -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Src/syscalls.c -------------------------------------------------------------------------------- /Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_14_ARM_Architecture/Simple_OS/STM32F103C6_OS_SYSTICK/Src/sysmem.c -------------------------------------------------------------------------------- /Unit_2_C_Language/1_C_Basics_ASSs/EX3_Add_Two_Integers/EX3_Add_Two_Integers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_2_C_Language/1_C_Basics_ASSs/EX3_Add_Two_Integers/EX3_Add_Two_Integers.c -------------------------------------------------------------------------------- /Unit_2_C_Language/1_C_Basics_ASSs/EX3_Add_Two_Integers/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_2_C_Language/1_C_Basics_ASSs/EX3_Add_Two_Integers/Screenshot.png -------------------------------------------------------------------------------- /Unit_2_C_Language/1_C_Basics_ASSs/EX6_Swap_Two_Numbers_With_Temp/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_2_C_Language/1_C_Basics_ASSs/EX6_Swap_Two_Numbers_With_Temp/Screenshot.png -------------------------------------------------------------------------------- /Unit_2_C_Language/3_Arrays_ASSs/EX1_Multidimentional_Array_in_C/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_2_C_Language/3_Arrays_ASSs/EX1_Multidimentional_Array_in_C/Screenshot.png -------------------------------------------------------------------------------- /Unit_2_C_Language/6_Mid_Term_Codes/.idea/6_Mid_Term_Codes.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_2_C_Language/6_Mid_Term_Codes/.idea/6_Mid_Term_Codes.iml -------------------------------------------------------------------------------- /Unit_2_C_Language/6_Mid_Term_Codes/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_2_C_Language/6_Mid_Term_Codes/.idea/modules.xml -------------------------------------------------------------------------------- /Unit_2_C_Language/6_Mid_Term_Codes/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_2_C_Language/6_Mid_Term_Codes/.idea/vcs.xml -------------------------------------------------------------------------------- /Unit_2_C_Language/6_Mid_Term_Codes/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_2_C_Language/6_Mid_Term_Codes/.idea/workspace.xml -------------------------------------------------------------------------------- /Unit_2_C_Language/6_Mid_Term_Codes/EX1_Sum_Digits_of_Number/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_2_C_Language/6_Mid_Term_Codes/EX1_Sum_Digits_of_Number/Screenshot.png -------------------------------------------------------------------------------- /Unit_2_C_Language/6_Mid_Term_Codes/EX2_Square_Root_of_integer/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_2_C_Language/6_Mid_Term_Codes/EX2_Square_Root_of_integer/Screenshot.png -------------------------------------------------------------------------------- /Unit_2_C_Language/6_Mid_Term_Codes/EX3_Prime_Numbers_in_Interval/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_2_C_Language/6_Mid_Term_Codes/EX3_Prime_Numbers_in_Interval/Screenshot.png -------------------------------------------------------------------------------- /Unit_2_C_Language/6_Mid_Term_Codes/EX4_Reverse_Number_Digits/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_2_C_Language/6_Mid_Term_Codes/EX4_Reverse_Number_Digits/Screenshot.png -------------------------------------------------------------------------------- /Unit_2_C_Language/6_Mid_Term_Codes/EX6_Unique_Number_in_Array/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_2_C_Language/6_Mid_Term_Codes/EX6_Unique_Number_in_Array/Screenshot.png -------------------------------------------------------------------------------- /Unit_2_C_Language/6_Mid_Term_Codes/EX7_Sum_from_1_to_N/EX7_Sum_from_1_to_N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_2_C_Language/6_Mid_Term_Codes/EX7_Sum_from_1_to_N/EX7_Sum_from_1_to_N.c -------------------------------------------------------------------------------- /Unit_2_C_Language/6_Mid_Term_Codes/EX7_Sum_from_1_to_N/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_2_C_Language/6_Mid_Term_Codes/EX7_Sum_from_1_to_N/Screenshot.png -------------------------------------------------------------------------------- /Unit_2_C_Language/6_Mid_Term_Codes/EX8_Reverse_an_Array/EX8_Reverse_an_Array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_2_C_Language/6_Mid_Term_Codes/EX8_Reverse_an_Array/EX8_Reverse_an_Array.c -------------------------------------------------------------------------------- /Unit_2_C_Language/6_Mid_Term_Codes/EX8_Reverse_an_Array/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_2_C_Language/6_Mid_Term_Codes/EX8_Reverse_an_Array/Screenshot.png -------------------------------------------------------------------------------- /Unit_2_C_Language/6_Mid_Term_Codes/EX9_Reverse_String_words/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_2_C_Language/6_Mid_Term_Codes/EX9_Reverse_String_words/Screenshot.png -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/Platform_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/Platform_Types.h -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/.cproject -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/.project -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/.settings/language.settings.xml -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/STM32F103C6_TOG_Led.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/STM32F103C6_TOG_Led.bin -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/STM32F103C6_TOG_Led.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/STM32F103C6_TOG_Led.elf -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/STM32F103C6_TOG_Led.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/STM32F103C6_TOG_Led.hex -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/STM32F103C6_TOG_Led.hex.asm: -------------------------------------------------------------------------------- 1 | ; Disassembled code 2 | -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/STM32F103C6_TOG_Led.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/STM32F103C6_TOG_Led.list -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/STM32F103C6_TOG_Led.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/STM32F103C6_TOG_Led.map -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Src/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Src/main.d -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Src/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Src/main.o -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Src/main.su: -------------------------------------------------------------------------------- 1 | main.c:31:5:main 16 static 2 | -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Src/subdir.mk -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Src/syscalls.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Src/syscalls.d -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Src/syscalls.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Src/syscalls.o -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Src/syscalls.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Src/syscalls.su -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Src/sysmem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Src/sysmem.d -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Src/sysmem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Src/sysmem.o -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Src/sysmem.su: -------------------------------------------------------------------------------- 1 | sysmem.c:54:7:_sbrk 32 static 2 | -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Startup/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/Startup/subdir.mk -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/makefile -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/objects.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/objects.list -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/objects.mk -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Debug/sources.mk -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/STM32F103C6TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/STM32F103C6TX_FLASH.ld -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Src/BIT_MATH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Src/BIT_MATH.h -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Src/Platform_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Src/Platform_Types.h -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Src/main.c -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Src/syscalls.c -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Src/sysmem.c -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Startup/startup_stm32f103c6tx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC1_ASSs/STM32F103C6_TOG_Led/Startup/startup_stm32f103c6tx.s -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC2_ASSs/LAB1_Explanation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC2_ASSs/LAB1_Explanation.pdf -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC2_ASSs/Lab1/Karem.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC2_ASSs/Lab1/Karem.bin -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC2_ASSs/Lab1/Karem.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC2_ASSs/Lab1/Karem.elf -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC2_ASSs/Lab1/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC2_ASSs/Lab1/app.c -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC2_ASSs/Lab1/app.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC2_ASSs/Lab1/app.o -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC2_ASSs/Lab1/app.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC2_ASSs/Lab1/app.s -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC2_ASSs/Lab1/linker_script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC2_ASSs/Lab1/linker_script.ld -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC2_ASSs/Lab1/startup.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC2_ASSs/Lab1/startup.o -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC2_ASSs/Lab1/startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC2_ASSs/Lab1/startup.s -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC2_ASSs/Lab1/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC2_ASSs/Lab1/uart.c -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC2_ASSs/Lab1/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC2_ASSs/Lab1/uart.h -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC2_ASSs/Lab1/uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC2_ASSs/Lab1/uart.o -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC2_ASSs/Lab1/uart.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC2_ASSs/Lab1/uart.s -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB1_Debugging_Using_GDB_and_Makefile/Makefile.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB1_Debugging_Using_GDB_and_Makefile/Makefile.pdf -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/BIT_MATH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/BIT_MATH.h -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/Karem.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/Karem.bin -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/Karem.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/Karem.elf -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/Makefile -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/Map_File.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/Map_File.map -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/Platform_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/Platform_Types.h -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/linker_script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/linker_script.ld -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/main.c -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/main.o -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/startup.c -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/startup.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_c/startup.o -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/BIT_MATH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/BIT_MATH.h -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/Karem.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/Karem.bin -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/Karem.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/Karem.elf -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/Karem.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/Karem.hex -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/Makefile -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/Map_File.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/Map_File.map -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/Platform_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/Platform_Types.h -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/karem.elf.asm: -------------------------------------------------------------------------------- 1 | ; Disassembled code 2 | -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/linker_script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/linker_script.ld -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/main.c -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/main.o -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/startup.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/startup.o -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB2_Cortex_M3/Lab2_startup_s/startup.s -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/LAB3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/LAB3.pdf -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/BIT_MATH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/BIT_MATH.h -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/Karem_Lab3.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/Karem_Lab3.axf -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/Karem_Lab3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/Karem_Lab3.bin -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/Karem_Lab3.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/Karem_Lab3.elf -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/Makefile -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/Map_File.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/Map_File.map -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/Platform_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/Platform_Types.h -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/Util.h -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/linker_script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/linker_script.ld -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/main.c -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/main.o -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/startup.c -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/startup.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC3_ASSs/LAB3_TM4C123/Lab/startup.o -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/LAB3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/LAB3.pdf -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/BIT_MATH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/BIT_MATH.h -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/Karem_Lab3.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/Karem_Lab3.axf -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/Karem_Lab3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/Karem_Lab3.bin -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/Karem_Lab3.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/Karem_Lab3.elf -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/Makefile -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/Map_File.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/Map_File.map -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/Platform_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/Platform_Types.h -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/Util.h -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/linker_script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/linker_script.ld -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/main.c -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/main.o -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/startup.c -------------------------------------------------------------------------------- /Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/startup.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_3_Embedded_C/LEC4_ASSs/LAB3_TM4C123/Lab/startup.o -------------------------------------------------------------------------------- /Unit_4_System_Architecture/Lec1_Data_Structures/1_Linked_List/Linked_List.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_4_System_Architecture/Lec1_Data_Structures/1_Linked_List/Linked_List.c -------------------------------------------------------------------------------- /Unit_4_System_Architecture/Lec1_Data_Structures/1_Linked_List/Linked_List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_4_System_Architecture/Lec1_Data_Structures/1_Linked_List/Linked_List.h -------------------------------------------------------------------------------- /Unit_4_System_Architecture/Lec1_Data_Structures/2_Stack/LIFO_Buffer/lifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_4_System_Architecture/Lec1_Data_Structures/2_Stack/LIFO_Buffer/lifo.c -------------------------------------------------------------------------------- /Unit_4_System_Architecture/Lec1_Data_Structures/2_Stack/LIFO_Buffer/lifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_4_System_Architecture/Lec1_Data_Structures/2_Stack/LIFO_Buffer/lifo.h -------------------------------------------------------------------------------- /Unit_4_System_Architecture/Lec1_Data_Structures/2_Stack/LIFO_Buffer/lifo_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_4_System_Architecture/Lec1_Data_Structures/2_Stack/LIFO_Buffer/lifo_cfg.h -------------------------------------------------------------------------------- /Unit_4_System_Architecture/Lec1_Data_Structures/2_Stack/LIFO_Buffer/lifo_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_4_System_Architecture/Lec1_Data_Structures/2_Stack/LIFO_Buffer/lifo_test.c -------------------------------------------------------------------------------- /Unit_4_System_Architecture/Lec1_Data_Structures/3_Queue/FIFO_Buffer/fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_4_System_Architecture/Lec1_Data_Structures/3_Queue/FIFO_Buffer/fifo.c -------------------------------------------------------------------------------- /Unit_4_System_Architecture/Lec1_Data_Structures/3_Queue/FIFO_Buffer/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_4_System_Architecture/Lec1_Data_Structures/3_Queue/FIFO_Buffer/fifo.h -------------------------------------------------------------------------------- /Unit_4_System_Architecture/Lec1_Data_Structures/3_Queue/FIFO_Buffer/fifo_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_4_System_Architecture/Lec1_Data_Structures/3_Queue/FIFO_Buffer/fifo_cfg.h -------------------------------------------------------------------------------- /Unit_4_System_Architecture/Lec1_Data_Structures/3_Queue/FIFO_Buffer/fifo_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_4_System_Architecture/Lec1_Data_Structures/3_Queue/FIFO_Buffer/fifo_test.c -------------------------------------------------------------------------------- /Unit_5_First_Term_Projects/Proj1_Pressure_Detection/Pressure_Detection_Final_Project/Code_and_Proteus_STM32F103C6/Pressure_Detection_Karem.elf.asm: -------------------------------------------------------------------------------- 1 | ; Disassembled code 2 | -------------------------------------------------------------------------------- /Unit_5_First_Term_Projects/Proj2_Student_Database_Using_Queue/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_5_First_Term_Projects/Proj2_Student_Database_Using_Queue/main.c -------------------------------------------------------------------------------- /Unit_5_First_Term_Projects/Proj2_Student_Database_Using_Queue/students_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_5_First_Term_Projects/Proj2_Student_Database_Using_Queue/students_file.txt -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec3_MCU_Clocks/LAB1_STM32F103C6/LAB1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec3_MCU_Clocks/LAB1_STM32F103C6/LAB1.pdf -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec3_MCU_Clocks/LAB1_STM32F103C6/Lab1_Unit6_Lec3/Debug/Src/main.su: -------------------------------------------------------------------------------- 1 | main.c:34:5:main 16 static 2 | -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec3_MCU_Clocks/LAB1_STM32F103C6/Lab1_Unit6_Lec3/Debug/Src/sysmem.su: -------------------------------------------------------------------------------- 1 | sysmem.c:54:7:_sbrk 32 static 2 | -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec3_MCU_Clocks/LAB2_STM32F103C6/LAB2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec3_MCU_Clocks/LAB2_STM32F103C6/LAB2.pdf -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec3_MCU_Clocks/LAB2_STM32F103C6/Unit6_Lec3_Lab2/Debug/Src/main.su: -------------------------------------------------------------------------------- 1 | main.c:20:5:main 16 static 2 | -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec3_MCU_Clocks/LAB2_STM32F103C6/Unit6_Lec3_Lab2/Debug/Src/sysmem.su: -------------------------------------------------------------------------------- 1 | sysmem.c:54:7:_sbrk 32 static 2 | -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec3_MCU_Clocks/LAB3_STM32F103C6/LAB3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec3_MCU_Clocks/LAB3_STM32F103C6/LAB3.pdf -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec3_MCU_Clocks/LAB3_STM32F103C6/Unit6_Lec3_Lab3/Debug/Src/main.su: -------------------------------------------------------------------------------- 1 | main.c:26:5:main 16 static 2 | -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec3_MCU_Clocks/LAB3_STM32F103C6/Unit6_Lec3_Lab3/Debug/Src/sysmem.su: -------------------------------------------------------------------------------- 1 | sysmem.c:54:7:_sbrk 32 static 2 | -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB2/Unit6_Lec4_Lab2/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB2/Unit6_Lec4_Lab2/.cproject -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB2/Unit6_Lec4_Lab2/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB2/Unit6_Lec4_Lab2/.project -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB2/Unit6_Lec4_Lab2/Debug/Src/sysmem.su: -------------------------------------------------------------------------------- 1 | sysmem.c:54:7:_sbrk 32 static 2 | -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB2/Unit6_Lec4_Lab2/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB2/Unit6_Lec4_Lab2/Debug/makefile -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB2/Unit6_Lec4_Lab2/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB2/Unit6_Lec4_Lab2/Src/main.c -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB2/Unit6_Lec4_Lab2/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB2/Unit6_Lec4_Lab2/Src/syscalls.c -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB2/Unit6_Lec4_Lab2/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB2/Unit6_Lec4_Lab2/Src/sysmem.c -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/.cproject -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/.project -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/BIT_MATH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/BIT_MATH.h -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/Debug/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/Debug/main.d -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/Debug/main.o -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/Debug/makefile -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/Debug/objects.mk -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/Debug/sources.mk -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/Debug/subdir.mk -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/Platform_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/Platform_Types.h -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/EXTI0_Lab2/main.c -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/Simmulation_Video/EXTI.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/Simmulation_Video/EXTI.mp4 -------------------------------------------------------------------------------- /Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/Simulation/LED_Flashing.DSN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_6_MCU_Fundamentals/Lec4_MCU_Interrupts/LAB3/Simulation/LED_Flashing.DSN -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/GPIO_ASS1_Led_Animation/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/GPIO_ASS1_Led_Animation/main.c -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/.cproject -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/.project -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/LAB1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/LAB1.bin -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/LAB1.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/LAB1.elf -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/LAB1.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/LAB1.list -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/LAB1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/LAB1.map -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/main.d -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/main.o -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/main.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/main.su -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/subdir.mk -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/syscalls.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/syscalls.d -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/syscalls.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/syscalls.o -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/syscalls.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/syscalls.su -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/sysmem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/sysmem.d -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/sysmem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/sysmem.o -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Src/sysmem.su: -------------------------------------------------------------------------------- 1 | sysmem.c:54:7:_sbrk 32 static 2 | -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Startup/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/Startup/subdir.mk -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/makefile -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/objects.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/objects.list -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/objects.mk -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Debug/sources.mk -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Inc/Platform_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Inc/Platform_Types.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/STM32F103C6TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/STM32F103C6TX_FLASH.ld -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Src/main.c -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Src/syscalls.c -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1/Src/sysmem.c -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1_Simulation/LAB1.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1_Simulation/LAB1.elf -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec1_GPIO_Part1/LAB1_Simulation/LAB1.elf.asm: -------------------------------------------------------------------------------- 1 | ; Disassembled code 2 | -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/CLCD_Driver/CLCD_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/CLCD_Driver/CLCD_config.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/CLCD_Driver/CLCD_extrachar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/CLCD_Driver/CLCD_extrachar.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/CLCD_Driver/CLCD_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/CLCD_Driver/CLCD_interface.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/CLCD_Driver/CLCD_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/CLCD_Driver/CLCD_private.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/CLCD_Driver/CLCD_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/CLCD_Driver/CLCD_program.c -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/KPD_Driver/KPD_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/KPD_Driver/KPD_config.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/KPD_Driver/KPD_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/KPD_Driver/KPD_interface.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/KPD_Driver/KPD_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/KPD_Driver/KPD_private.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/KPD_Driver/KPD_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/KPD_Driver/KPD_program.c -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/.cproject -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/.project -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/BIT_MATH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/BIT_MATH.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/CLCD_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/CLCD_config.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/CLCD_extrachar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/CLCD_extrachar.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/CLCD_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/CLCD_interface.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/CLCD_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/CLCD_private.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/CLCD_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/CLCD_program.c -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/DIO_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/DIO_config.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/DIO_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/DIO_interface.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/DIO_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/DIO_private.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/DIO_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/DIO_program.c -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/CLCD_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/CLCD_program.d -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/CLCD_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/CLCD_program.o -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/DIO_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/DIO_program.d -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/DIO_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/DIO_program.o -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/KPD_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/KPD_program.d -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/KPD_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/KPD_program.o -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/LAB_Code.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/LAB_Code.elf -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/LAB_Code.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/LAB_Code.lss -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/LAB_Code.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/LAB_Code.map -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/main.d -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/main.o -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/makefile -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/objects.mk -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/sources.mk -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/Debug/subdir.mk -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/KPD_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/KPD_config.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/KPD_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/KPD_interface.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/KPD_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/KPD_private.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/KPD_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/KPD_program.c -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/STD_TYPES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/STD_TYPES.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Code/main.c -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Simulation/LAB_Code.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Simulation/LAB_Code.elf -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Simulation/LCD_KPD.pdsprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec2_GPIO_Part2/LAB_Simulation/LCD_KPD.pdsprj -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec3_GPIO_Part3/LAB1_using_drivers_Sol1/LAB1/Debug/Inc/DIO_program.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec3_GPIO_Part3/LAB1_using_drivers_Sol1/LAB1/Debug/Inc/RCC_program.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec3_GPIO_Part3/LAB1_using_drivers_Sol1/LAB1/Debug/Src/sysmem.su: -------------------------------------------------------------------------------- 1 | sysmem.c:54:7:_sbrk 32 static 2 | -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec3_GPIO_Part3/LAB1_using_drivers_Sol1/LAB1_Simulation/LAB1.elf.asm: -------------------------------------------------------------------------------- 1 | ; Disassembled code 2 | -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec3_GPIO_Part3/LAB1_using_drivers_Sol2/STM32F103C6_Driver/Debug/Src/sysmem.su: -------------------------------------------------------------------------------- 1 | sysmem.c:53:7:_sbrk 32 static 2 | -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec3_GPIO_Part3/LAB1_using_drivers_Sol2/STM32F103C6_Driver_Simulation/STM32F103C6_Driver.elf.asm: -------------------------------------------------------------------------------- 1 | ; Disassembled code 2 | -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec3_GPIO_Part3/Section/LAB_Drivers/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec3_GPIO_Part3/Section/LAB_Drivers/.cproject -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec3_GPIO_Part3/Section/LAB_Drivers/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec3_GPIO_Part3/Section/LAB_Drivers/.project -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec3_GPIO_Part3/Section/LAB_Drivers/Debug/Drivers1.elf.asm: -------------------------------------------------------------------------------- 1 | ; Disassembled code 2 | -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec3_GPIO_Part3/Section/LAB_Drivers/Debug/Drivers1.hex.asm: -------------------------------------------------------------------------------- 1 | ; Disassembled code 2 | -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec3_GPIO_Part3/Section/LAB_Drivers/Debug/Src/sysmem.su: -------------------------------------------------------------------------------- 1 | sysmem.c:54:7:_sbrk 32 static 2 | -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec3_GPIO_Part3/Section/LAB_Drivers/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec3_GPIO_Part3/Section/LAB_Drivers/Src/main.c -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/LAB_STM32F103C6/STM32F103C6_Driver/Debug/STM32F103C6_Driver.elf.asm: -------------------------------------------------------------------------------- 1 | ; Disassembled code 2 | -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/LAB_STM32F103C6/STM32F103C6_Driver/Debug/STM32F103C6_Driver.hex.asm: -------------------------------------------------------------------------------- 1 | ; Disassembled code 2 | -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/LAB_STM32F103C6/STM32F103C6_Driver/Debug/Src/main.su: -------------------------------------------------------------------------------- 1 | main.c:14:5:main 8 static 2 | -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/LAB_STM32F103C6/STM32F103C6_Driver/Debug/Src/sysmem.su: -------------------------------------------------------------------------------- 1 | sysmem.c:53:7:_sbrk 32 static 2 | -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/LAB_STM32F103C6/Simulation/STM32F103C6_Driver.elf.asm: -------------------------------------------------------------------------------- 1 | ; Disassembled code 2 | -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/.cproject -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/.project -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/BIT_MATH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/BIT_MATH.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/CLCD_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/CLCD_config.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/CLCD_extrachar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/CLCD_extrachar.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/CLCD_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/CLCD_interface.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/CLCD_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/CLCD_private.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/CLCD_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/CLCD_program.c -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/DIO_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/DIO_config.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/DIO_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/DIO_interface.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/DIO_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/DIO_private.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/DIO_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/DIO_program.c -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/CLCD_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/CLCD_program.d -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/CLCD_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/CLCD_program.o -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/Code.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/Code.elf -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/Code.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/Code.lss -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/Code.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/Code.map -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/DIO_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/DIO_program.d -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/DIO_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/DIO_program.o -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/EXTI_Code.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/EXTI_Code.map -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/KPD_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/KPD_program.d -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/KPD_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/KPD_program.o -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/LAB_Code.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/LAB_Code.lss -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/LAB_Code.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/LAB_Code.map -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/main.d -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/main.o -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/makefile -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/objects.mk -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/sources.mk -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/Debug/subdir.mk -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/STD_TYPES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/STD_TYPES.h -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Code/main.c -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Screenshot.png -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Simulation/AMITKIT.pdsprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Simulation/AMITKIT.pdsprj -------------------------------------------------------------------------------- /Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Simulation/Code.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_7_MCU_Essential_Peripherals/Lec4_EXTI/Section/Simulation/Code.elf -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec1_I_O_Characteristics/I_O_Characteristics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec1_I_O_Characteristics/I_O_Characteristics.pdf -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/.cproject -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/.project -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/BIT_MATH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/BIT_MATH.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/CLCD_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/CLCD_config.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/CLCD_extrachar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/CLCD_extrachar.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/CLCD_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/CLCD_interface.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/CLCD_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/CLCD_private.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/CLCD_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/CLCD_program.c -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/DIO_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/DIO_config.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/DIO_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/DIO_interface.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/DIO_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/DIO_private.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/DIO_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/DIO_program.c -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/CLCD_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/CLCD_program.d -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/CLCD_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/CLCD_program.o -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/Code.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/Code.elf -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/Code.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/Code.lss -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/Code.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/Code.map -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/DIO_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/DIO_program.d -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/DIO_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/DIO_program.o -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/EXTI_Code.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/EXTI_Code.map -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/KPD_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/KPD_program.d -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/KPD_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/KPD_program.o -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/LAB_Code.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/LAB_Code.lss -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/LAB_Code.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/LAB_Code.map -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/USART_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/USART_program.d -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/USART_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/USART_program.o -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/main.d -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/main.o -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/makefile -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/objects.mk -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/sources.mk -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/Debug/subdir.mk -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/STD_TYPES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/STD_TYPES.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/USART_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/USART_config.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/USART_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/USART_interface.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/USART_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/USART_private.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/USART_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/USART_program.c -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Code/main.c -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Simulation/Code.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Simulation/Code.elf -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Simulation/USART_Tx_Rx.pdsprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec2_UART_Protocol/Sec/Simulation/USART_Tx_Rx.pdsprj -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/.cproject -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/.project -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Drivers.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Drivers.bin -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Drivers.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Drivers.elf -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Drivers.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Drivers.list -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Drivers.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Drivers.map -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/HAL/keypad.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/HAL/keypad.d -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/HAL/keypad.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/HAL/keypad.o -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/HAL/keypad.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/HAL/keypad.su -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/HAL/lcd.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/HAL/lcd.d -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/HAL/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/HAL/lcd.o -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/HAL/lcd.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/HAL/lcd.su -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/HAL/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/HAL/subdir.mk -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/main.d -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/main.o -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/main.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/main.su -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/subdir.mk -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/syscalls.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/syscalls.d -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/syscalls.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/syscalls.o -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/syscalls.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/syscalls.su -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/sysmem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/sysmem.d -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/sysmem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/sysmem.o -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Src/sysmem.su: -------------------------------------------------------------------------------- 1 | sysmem.c:54:7:_sbrk 32 static 2 | -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Startup/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/Startup/subdir.mk -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/makefile -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/objects.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/objects.list -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/objects.mk -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Debug/sources.mk -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/HAL/includes/keypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/HAL/includes/keypad.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/HAL/includes/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/HAL/includes/lcd.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/HAL/keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/HAL/keypad.c -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/HAL/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/HAL/lcd.c -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/STM32F103C6TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/STM32F103C6TX_FLASH.ld -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Src/main.c -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Src/syscalls.c -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Lecture/Drivers/Src/sysmem.c -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/.cproject -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/.project -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/BIT_MATH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/BIT_MATH.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/CLCD_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/CLCD_config.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/CLCD_extrachar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/CLCD_extrachar.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/CLCD_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/CLCD_interface.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/CLCD_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/CLCD_private.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/CLCD_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/CLCD_program.c -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/DIO_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/DIO_config.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/DIO_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/DIO_interface.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/DIO_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/DIO_private.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/DIO_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/DIO_program.c -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/CLCD_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/CLCD_program.d -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/CLCD_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/CLCD_program.o -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/Code.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/Code.elf -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/Code.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/Code.lss -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/Code.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/Code.map -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/DIO_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/DIO_program.d -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/DIO_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/DIO_program.o -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/EXTI_Code.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/EXTI_Code.map -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/GIE_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/GIE_program.d -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/GIE_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/GIE_program.o -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/KPD_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/KPD_program.d -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/KPD_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/KPD_program.o -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/LAB_Code.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/LAB_Code.lss -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/LAB_Code.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/LAB_Code.map -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/USART_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/USART_program.d -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/USART_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/USART_program.o -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/main.d -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/main.o -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/makefile -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/objects.mk -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/sources.mk -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/Debug/subdir.mk -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/GIE_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/GIE_interface.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/GIE_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/GIE_program.c -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/GIE_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/GIE_register.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/STD_TYPES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/STD_TYPES.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/USART_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/USART_config.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/USART_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/USART_interface.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/USART_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/USART_private.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/USART_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/USART_program.c -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Code/main.c -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Simulation/Code.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Simulation/Code.elf -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Simulation/USART_Rx_INT.pdsprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/Section/Simulation/USART_Rx_INT.pdsprj -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/USART_ATMega32/USART_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/USART_ATMega32/USART_config.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/USART_ATMega32/USART_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/USART_ATMega32/USART_interface.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/USART_ATMega32/USART_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/USART_ATMega32/USART_private.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/USART_ATMega32/USART_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/USART_ATMega32/USART_program.c -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/USART_STM32F103C6/USART_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/USART_STM32F103C6/USART_config.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/USART_STM32F103C6/USART_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/USART_STM32F103C6/USART_interface.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/USART_STM32F103C6/USART_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/USART_STM32F103C6/USART_private.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec3_UART_Driver/USART_STM32F103C6/USART_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec3_UART_Driver/USART_STM32F103C6/USART_program.c -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec5_SPI_Driver/SPI_ATMega32/SPI_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec5_SPI_Driver/SPI_ATMega32/SPI_config.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec5_SPI_Driver/SPI_ATMega32/SPI_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec5_SPI_Driver/SPI_ATMega32/SPI_interface.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec5_SPI_Driver/SPI_ATMega32/SPI_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec5_SPI_Driver/SPI_ATMega32/SPI_private.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec5_SPI_Driver/SPI_ATMega32/SPI_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec5_SPI_Driver/SPI_ATMega32/SPI_program.c -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec5_SPI_Driver/SPI_STM32F103C6/SPI_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec5_SPI_Driver/SPI_STM32F103C6/SPI_config.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec5_SPI_Driver/SPI_STM32F103C6/SPI_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec5_SPI_Driver/SPI_STM32F103C6/SPI_interface.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec5_SPI_Driver/SPI_STM32F103C6/SPI_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec5_SPI_Driver/SPI_STM32F103C6/SPI_private.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec5_SPI_Driver/SPI_STM32F103C6/SPI_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec5_SPI_Driver/SPI_STM32F103C6/SPI_program.c -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec7_I2C_Driver/TWI_ATMega32/TWI_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec7_I2C_Driver/TWI_ATMega32/TWI_config.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec7_I2C_Driver/TWI_ATMega32/TWI_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec7_I2C_Driver/TWI_ATMega32/TWI_interface.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec7_I2C_Driver/TWI_ATMega32/TWI_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec7_I2C_Driver/TWI_ATMega32/TWI_private.h -------------------------------------------------------------------------------- /Unit_8_MCU_Interfacing/Lec7_I2C_Driver/TWI_ATMega32/TWI_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_8_MCU_Interfacing/Lec7_I2C_Driver/TWI_ATMega32/TWI_program.c -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_ATMega32/TIMER_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_ATMega32/TIMER_config.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_ATMega32/TIMER_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_ATMega32/TIMER_interface.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_ATMega32/TIMER_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_ATMega32/TIMER_private.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_ATMega32/TIMER_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_ATMega32/TIMER_program.c -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_ATMega32/TIMER_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_ATMega32/TIMER_register.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/Simulation/Simulation.pdsprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/Simulation/Simulation.pdsprj -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/Simulation/TIMER_DELAY.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/Simulation/TIMER_DELAY.elf -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/.cproject -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/.project -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/BIT_MATH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/BIT_MATH.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/DIO_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/DIO_config.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/DIO_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/DIO_interface.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/DIO_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/DIO_private.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/DIO_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/DIO_program.c -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/DIO_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/DIO_program.d -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/DIO_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/DIO_program.o -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/GIE_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/GIE_program.d -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/GIE_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/GIE_program.o -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/LED_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/LED_program.d -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/LED_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/LED_program.o -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/TIMER_DELAY.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/TIMER_DELAY.elf -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/TIMER_DELAY.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/TIMER_DELAY.hex -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/TIMER_DELAY.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/TIMER_DELAY.lss -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/TIMER_DELAY.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/TIMER_DELAY.map -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/TIMER_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/TIMER_program.d -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/TIMER_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/TIMER_program.o -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/main.d -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/main.o -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/makefile -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/objects.mk -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/sources.mk -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/Debug/subdir.mk -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/GIE_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/GIE_interface.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/GIE_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/GIE_program.c -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/GIE_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/GIE_register.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/LED_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/LED_config.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/LED_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/LED_interface.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/LED_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/LED_private.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/LED_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/LED_program.c -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/STD_TYPES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/STD_TYPES.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/TIMER_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/TIMER_config.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/TIMER_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/TIMER_interface.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/TIMER_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/TIMER_private.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/TIMER_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/TIMER_program.c -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/TIMER_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/TIMER_register.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/TIMER_DELAY/TIMER_DELAY/main.c -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/Simulation/Simulation.pdsprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/Simulation/Simulation.pdsprj -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/Simulation/WatchDog_Timer.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/Simulation/WatchDog_Timer.elf -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/.cproject -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/.project -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/BIT_MATH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/BIT_MATH.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/DIO_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/DIO_config.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/DIO_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/DIO_interface.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/DIO_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/DIO_private.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/DIO_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/DIO_program.c -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/Debug/DIO_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/Debug/DIO_program.d -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/Debug/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/Debug/main.d -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/Debug/main.o -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/Debug/makefile -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/Debug/objects.mk -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/Debug/sources.mk -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/Debug/subdir.mk -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/LED_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/LED_config.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/LED_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/LED_interface.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/LED_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/LED_private.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/LED_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/LED_program.c -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/STD_TYPES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/STD_TYPES.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/TIMER_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/TIMER_config.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/TIMER_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/TIMER_interface.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/TIMER_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/TIMER_private.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/TIMER_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/TIMER_program.c -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/TIMER_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/TIMER_register.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec1_TIMER/WD_Timer/WatchDog_Timer/main.c -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/.cproject -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/.project -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/ADC_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/ADC_config.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/ADC_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/ADC_interface.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/ADC_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/ADC_private.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/ADC_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/ADC_program.c -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/BIT_MATH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/BIT_MATH.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/CLCD_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/CLCD_config.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/CLCD_extrachar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/CLCD_extrachar.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/CLCD_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/CLCD_interface.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/CLCD_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/CLCD_private.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/CLCD_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/CLCD_program.c -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/DIO_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/DIO_config.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/DIO_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/DIO_interface.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/DIO_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/DIO_private.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/DIO_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/DIO_program.c -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/ADC_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/ADC_program.d -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/ADC_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/ADC_program.o -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/CLCD_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/CLCD_program.d -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/CLCD_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/CLCD_program.o -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/DIO_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/DIO_program.d -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/DIO_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/DIO_program.o -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/LM35_program.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/LM35_program.d -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/LM35_program.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/LM35_program.o -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/main.d -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/main.o -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/makefile -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/objects.mk -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/sources.mk -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/Debug/subdir.mk -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/LM35_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/LM35_config.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/LM35_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/LM35_interface.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/LM35_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/LM35_private.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/LM35_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/LM35_program.c -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/STD_TYPES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/STD_TYPES.h -------------------------------------------------------------------------------- /Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Karem/Embedded_System_Online_Diploma/HEAD/Unit_9_MCU_Timer_&_ADC/Lec2_ADC/ADC_Temperature_Sensor/main.c --------------------------------------------------------------------------------