├── ECU.jpg ├── UCOS_II_MPC5744 ├── src │ ├── bsp_int.c │ ├── flashrchw.c │ ├── intc_sw_handlers.S │ ├── cpu_cache_powerpc_e200z4204n3.c │ ├── Vector.c │ ├── bsp_smpu.c │ ├── cpu_a.S │ └── main.c ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.cdt.codan.core.prefs │ ├── com.processorexpert.core.ide.newprojectwizard.prefs │ ├── com.freescale.s32ds.cross.wizard.prefs │ ├── org.eclipse.cdt.core.prefs │ └── language.settings.xml ├── Debug │ ├── src │ │ ├── Vector.o │ │ ├── bsp_os.o │ │ ├── cpu_a.o │ │ ├── main.o │ │ ├── os_mem.o │ │ ├── os_q.o │ │ ├── os_sem.o │ │ ├── os_tmr.o │ │ ├── bsp_clk.o │ │ ├── bsp_cpu.o │ │ ├── bsp_int.o │ │ ├── bsp_led.o │ │ ├── bsp_smpu.o │ │ ├── cpu_core.o │ │ ├── lib_math.o │ │ ├── lib_mem.o │ │ ├── lib_str.o │ │ ├── os_core.o │ │ ├── os_cpu_a.o │ │ ├── os_cpu_c.o │ │ ├── os_dbg_r.o │ │ ├── os_flag.o │ │ ├── os_mbox.o │ │ ├── os_mutex.o │ │ ├── os_task.o │ │ ├── os_time.o │ │ ├── app_hooks.o │ │ ├── flashrchw.o │ │ ├── lib_ascii.o │ │ ├── intc_sw_handlers.o │ │ ├── MPC57xx__Interrupt_Init.o │ │ ├── cpu_cache_powerpc_e200z4204n3.o │ │ ├── cpu_cache_powerpc_e200z4204n3_a.o │ │ ├── intc_SW_mode_isr_vectors_MPC5744P.o │ │ ├── cpu_a.args │ │ ├── os_cpu_a.args │ │ ├── intc_sw_handlers.args │ │ ├── cpu_cache_powerpc_e200z4204n3_a.args │ │ ├── Vector.args │ │ ├── bsp_clk.args │ │ ├── bsp_cpu.args │ │ ├── bsp_int.args │ │ ├── bsp_led.args │ │ ├── bsp_os.args │ │ ├── bsp_smpu.args │ │ ├── cpu_core.args │ │ ├── lib_math.args │ │ ├── lib_mem.args │ │ ├── lib_str.args │ │ ├── main.args │ │ ├── os_core.args │ │ ├── os_cpu_c.args │ │ ├── os_dbg_r.args │ │ ├── os_flag.args │ │ ├── os_mbox.args │ │ ├── os_mem.args │ │ ├── os_mutex.args │ │ ├── os_q.args │ │ ├── os_sem.args │ │ ├── os_task.args │ │ ├── os_time.args │ │ ├── os_tmr.args │ │ ├── app_hooks.args │ │ ├── flashrchw.args │ │ ├── lib_ascii.args │ │ ├── MPC57xx__Interrupt_Init.args │ │ ├── Vector.d │ │ ├── cpu_cache_powerpc_e200z4204n3.args │ │ ├── intc_SW_mode_isr_vectors_MPC5744P.args │ │ ├── lib_ascii.d │ │ ├── cpu_cache_powerpc_e200z4204n3.d │ │ ├── cpu_core.d │ │ ├── lib_math.d │ │ ├── lib_str.d │ │ ├── lib_mem.d │ │ ├── flashrchw.d │ │ ├── intc_SW_mode_isr_vectors_MPC5744P.d │ │ ├── bsp_smpu.d │ │ ├── bsp_led.d │ │ ├── MPC57xx__Interrupt_Init.d │ │ ├── bsp_clk.d │ │ ├── bsp_cpu.d │ │ ├── os_q.d │ │ ├── os_mem.d │ │ ├── os_sem.d │ │ ├── os_tmr.d │ │ ├── os_core.d │ │ ├── os_dbg_r.d │ │ ├── os_flag.d │ │ ├── os_mbox.d │ │ ├── os_mutex.d │ │ ├── os_task.d │ │ ├── os_time.d │ │ ├── os_cpu_c.d │ │ ├── app_hooks.d │ │ ├── bsp_int.d │ │ ├── bsp_os.d │ │ └── main.d │ ├── UCOS_II_MPC5744.elf │ ├── Project_Settings │ │ ├── Startup_Code │ │ │ ├── startup.o │ │ │ ├── startup.args │ │ │ └── subdir.mk │ │ └── Linker_Files │ │ │ └── subdir.mk │ ├── objects.mk │ ├── makefile.local │ ├── UCOS_II_MPC5744.args │ ├── sources.mk │ └── makefile ├── include │ ├── MPC5744P.h │ ├── derivative.h │ ├── compiler_api.h │ ├── os.h │ ├── bsp_os.h │ ├── app_cfg.h │ ├── bsp_smpu.h │ ├── typedefs.h │ ├── bsp_led.h │ ├── bsp_int.h │ └── cpu_cache.h ├── Project_Settings │ └── Linker_Files │ │ ├── libs.ld │ │ ├── 57xx_ram.ld │ │ └── 57xx_flash.ld └── .project └── README.md /ECU.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/ECU.jpg -------------------------------------------------------------------------------- /UCOS_II_MPC5744/src/bsp_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/src/bsp_int.c -------------------------------------------------------------------------------- /UCOS_II_MPC5744/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/bsp_clk.c=UTF-8 3 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/Vector.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/Vector.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/bsp_os.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/bsp_os.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/cpu_a.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/cpu_a.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/main.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_mem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/os_mem.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_q.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/os_q.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_sem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/os_sem.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_tmr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/os_tmr.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/include/MPC5744P.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/include/MPC5744P.h -------------------------------------------------------------------------------- /UCOS_II_MPC5744/.settings/org.eclipse.cdt.codan.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | inEditor=false 3 | onBuild=false 4 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/bsp_clk.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/bsp_clk.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/bsp_cpu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/bsp_cpu.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/bsp_int.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/bsp_int.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/bsp_led.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/bsp_led.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/bsp_smpu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/bsp_smpu.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/cpu_core.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/cpu_core.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/lib_math.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/lib_math.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/lib_mem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/lib_mem.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/lib_str.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/lib_str.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_core.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/os_core.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_cpu_a.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/os_cpu_a.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_cpu_c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/os_cpu_c.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_dbg_r.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/os_dbg_r.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_flag.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/os_flag.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_mbox.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/os_mbox.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_mutex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/os_mutex.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_task.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/os_task.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_time.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/os_time.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/app_hooks.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/app_hooks.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/flashrchw.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/flashrchw.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/lib_ascii.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/lib_ascii.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/UCOS_II_MPC5744.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/UCOS_II_MPC5744.elf -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/intc_sw_handlers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/intc_sw_handlers.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/MPC57xx__Interrupt_Init.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/MPC57xx__Interrupt_Init.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/.settings/com.processorexpert.core.ide.newprojectwizard.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | versionGenerated/versionGenerated=1.8.4.RT7_b1725-0712 3 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Project_Settings/Linker_Files/libs.ld: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Placeholder to list other libraries required by the application. 4 | 5 | GROUP( 6 | ) 7 | 8 | */ 9 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/cpu_cache_powerpc_e200z4204n3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/cpu_cache_powerpc_e200z4204n3.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/cpu_cache_powerpc_e200z4204n3_a.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/cpu_cache_powerpc_e200z4204n3_a.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/Project_Settings/Startup_Code/startup.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/Project_Settings/Startup_Code/startup.o -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/intc_SW_mode_isr_vectors_MPC5744P.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuaxinLu/MPC5744P_UCOSII/HEAD/UCOS_II_MPC5744/Debug/src/intc_SW_mode_isr_vectors_MPC5744P.o -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MPC5744P_UCOSII 2 | 3 | UCOS-II在MPC5744P单片机上的移植,基于micirum官网MPC5748G例程修改。总体改动不大,主要修改的是硬件驱动部分。使用NXP的s32 design studio导入即可,目前中断和任务调度已经在本人开发的ECU中测试通过。 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/include/derivative.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Note: This file is recreated by the project wizard whenever the MCU is 3 | * changed and should not be edited by hand 4 | */ 5 | 6 | /* Include the derivative-specific header file */ 7 | #include 8 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/objects.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit! 3 | ################################################################################ 4 | 5 | USER_OBJS := 6 | 7 | USER_OBJS_QUOTED := 8 | 9 | LIBS := 10 | 11 | LIBS_QUOTED := -------------------------------------------------------------------------------- /UCOS_II_MPC5744/.settings/com.freescale.s32ds.cross.wizard.prefs: -------------------------------------------------------------------------------- 1 | core=MPC5744P_Z4_1 2 | coreType=MPC5744P_Z4 3 | eclipse.preferences.version=1 4 | flashSize=200000 5 | flashStart=1000000 6 | fpu=None 7 | io=noio 8 | language=c 9 | library=ewl_c9x 10 | pinSet= 11 | processor=MPC5744P 12 | productVersion=v1.2 b170613 13 | ramSize=60000 14 | ramStart=40000000 15 | toolchainVersion= 16 | wizardVersion=1.0.0.201705041237 17 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/makefile.local: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # These macros are used by makefiles and argument files. 3 | # When a space is included in the path and quotes (") cannot be used, 4 | # a _ESCAPE version of the macro is added that escapes the space with backslash (\). 5 | ################################################################################ 6 | 7 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/cpu_a.args: -------------------------------------------------------------------------------- 1 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 2 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 3 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 4 | -x assembler-with-cpp 5 | -DSTART_FROM_FLASH 6 | -DMPC574xP 7 | -O0 8 | -g3 9 | -mcpu=e200z4 10 | -specs=ewl_c9x_noio.specs 11 | -mbig 12 | -mvle 13 | -mregnames 14 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_cpu_a.args: -------------------------------------------------------------------------------- 1 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 2 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 3 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 4 | -x assembler-with-cpp 5 | -DSTART_FROM_FLASH 6 | -DMPC574xP 7 | -O0 8 | -g3 9 | -mcpu=e200z4 10 | -specs=ewl_c9x_noio.specs 11 | -mbig 12 | -mvle 13 | -mregnames 14 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/intc_sw_handlers.args: -------------------------------------------------------------------------------- 1 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 2 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 3 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 4 | -x assembler-with-cpp 5 | -DSTART_FROM_FLASH 6 | -DMPC574xP 7 | -O0 8 | -g3 9 | -mcpu=e200z4 10 | -specs=ewl_c9x_noio.specs 11 | -mbig 12 | -mvle 13 | -mregnames 14 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/Project_Settings/Startup_Code/startup.args: -------------------------------------------------------------------------------- 1 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 2 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 3 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 4 | -x assembler-with-cpp 5 | -DSTART_FROM_FLASH 6 | -DMPC574xP 7 | -O0 8 | -g3 9 | -mcpu=e200z4 10 | -specs=ewl_c9x_noio.specs 11 | -mbig 12 | -mvle 13 | -mregnames 14 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/cpu_cache_powerpc_e200z4204n3_a.args: -------------------------------------------------------------------------------- 1 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 2 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 3 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 4 | -x assembler-with-cpp 5 | -DSTART_FROM_FLASH 6 | -DMPC574xP 7 | -O0 8 | -g3 9 | -mcpu=e200z4 10 | -specs=ewl_c9x_noio.specs 11 | -mbig 12 | -mvle 13 | -mregnames 14 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/Vector.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/bsp_clk.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/bsp_cpu.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/bsp_int.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/bsp_led.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/bsp_os.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/bsp_smpu.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/cpu_core.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/lib_math.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/lib_mem.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/lib_str.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/main.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_core.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_cpu_c.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_dbg_r.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_flag.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_mbox.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_mem.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_mutex.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_q.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_sem.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_task.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_time.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_tmr.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/app_hooks.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/flashrchw.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/lib_ascii.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/MPC57xx__Interrupt_Init.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/Vector.d: -------------------------------------------------------------------------------- 1 | src/Vector.o: ../src/Vector.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h 5 | 6 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 7 | 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 9 | 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 11 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/cpu_cache_powerpc_e200z4204n3.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/intc_SW_mode_isr_vectors_MPC5744P.args: -------------------------------------------------------------------------------- 1 | -DSTART_FROM_FLASH 2 | -DMPC574xP 3 | -I"C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include" 4 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include" 5 | -I"D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa" 6 | -O0 7 | -g3 8 | -Wall 9 | -c 10 | -fmessage-length=0 11 | -ffunction-sections 12 | -fdata-sections 13 | -mcpu=e200z4 14 | -specs=ewl_c9x_noio.specs 15 | -mbig 16 | -mvle 17 | -mregnames 18 | -mhard-float 19 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/Project_Settings/Linker_Files/subdir.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit! 3 | ################################################################################ 4 | 5 | -include ../../makefile.local 6 | 7 | # Add inputs and outputs from these tool invocations to the build variables 8 | LD_SRCS += \ 9 | ../Project_Settings/Linker_Files/57xx_flash.ld \ 10 | ../Project_Settings/Linker_Files/libs.ld \ 11 | 12 | LD_SRCS_QUOTED += \ 13 | "../Project_Settings/Linker_Files/57xx_flash.ld" \ 14 | "../Project_Settings/Linker_Files/libs.ld" \ 15 | 16 | 17 | # Each subdirectory must supply rules for building sources it contributes 18 | 19 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | UCOS_II_MPC5744 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.cdt.managedbuilder.core.genmakebuilder 10 | clean,full,incremental, 11 | 12 | 13 | 14 | 15 | org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder 16 | full,incremental, 17 | 18 | 19 | 20 | 21 | 22 | org.eclipse.cdt.core.cnature 23 | org.eclipse.cdt.managedbuilder.core.managedBuildNature 24 | org.eclipse.cdt.managedbuilder.core.ScannerConfigNature 25 | org.eclipse.cdt.core.ccnature 26 | 27 | 28 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/lib_ascii.d: -------------------------------------------------------------------------------- 1 | src/lib_ascii.o: ../src/lib_ascii.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_ascii.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h \ 7 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h \ 8 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h \ 9 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h 10 | 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 12 | 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 14 | 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 16 | 17 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_ascii.h: 18 | 19 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h: 20 | 21 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h: 22 | 23 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h: 24 | 25 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h: 26 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/Project_Settings/Startup_Code/subdir.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit! 3 | ################################################################################ 4 | 5 | -include ../../makefile.local 6 | 7 | # Add inputs and outputs from these tool invocations to the build variables 8 | S_UPPER_SRCS_QUOTED += \ 9 | "../Project_Settings/Startup_Code/startup.S" \ 10 | 11 | S_UPPER_SRCS += \ 12 | ../Project_Settings/Startup_Code/startup.S \ 13 | 14 | OBJS_OS_FORMAT += \ 15 | ./Project_Settings/Startup_Code/startup.o \ 16 | 17 | OBJS += \ 18 | ./Project_Settings/Startup_Code/startup.o \ 19 | 20 | OBJS_QUOTED += \ 21 | "./Project_Settings/Startup_Code/startup.o" \ 22 | 23 | 24 | # Each subdirectory must supply rules for building sources it contributes 25 | Project_Settings/Startup_Code/startup.o: ../Project_Settings/Startup_Code/startup.S 26 | @echo 'Building file: $<' 27 | @echo 'Executing target #35 $<' 28 | @echo 'Invoking: Standard S32DS Assembler' 29 | powerpc-eabivle-gcc "@Project_Settings/Startup_Code/startup.args" -c -o "Project_Settings/Startup_Code/startup.o" "$<" 30 | @echo 'Finished building: $<' 31 | @echo ' ' 32 | 33 | 34 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/cpu_cache_powerpc_e200z4204n3.d: -------------------------------------------------------------------------------- 1 | src/cpu_cache_powerpc_e200z4204n3.o: \ 2 | ../src/cpu_cache_powerpc_e200z4204n3.c \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 5 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h \ 7 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h \ 8 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h \ 9 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cache.h \ 10 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h 11 | 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 13 | 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 15 | 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 17 | 18 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h: 19 | 20 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h: 21 | 22 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h: 23 | 24 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cache.h: 25 | 26 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h: 27 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/UCOS_II_MPC5744.args: -------------------------------------------------------------------------------- 1 | "./Project_Settings/Startup_Code/startup.o" 2 | "./src/os_tmr.o" 3 | "./src/os_time.o" 4 | "./src/os_task.o" 5 | "./src/os_sem.o" 6 | "./src/os_q.o" 7 | "./src/os_mutex.o" 8 | "./src/os_mem.o" 9 | "./src/os_mbox.o" 10 | "./src/os_flag.o" 11 | "./src/os_dbg_r.o" 12 | "./src/os_cpu_c.o" 13 | "./src/os_cpu_a.o" 14 | "./src/os_core.o" 15 | "./src/main.o" 16 | "./src/lib_str.o" 17 | "./src/lib_mem.o" 18 | "./src/lib_math.o" 19 | "./src/lib_ascii.o" 20 | "./src/intc_sw_handlers.o" 21 | "./src/intc_SW_mode_isr_vectors_MPC5744P.o" 22 | "./src/flashrchw.o" 23 | "./src/cpu_core.o" 24 | "./src/cpu_cache_powerpc_e200z4204n3_a.o" 25 | "./src/cpu_cache_powerpc_e200z4204n3.o" 26 | "./src/cpu_a.o" 27 | "./src/bsp_smpu.o" 28 | "./src/bsp_os.o" 29 | "./src/bsp_led.o" 30 | "./src/bsp_int.o" 31 | "./src/bsp_cpu.o" 32 | "./src/bsp_clk.o" 33 | "./src/app_hooks.o" 34 | "./src/Vector.o" 35 | "./src/MPC57xx__Interrupt_Init.o" 36 | -T 37 | "C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/Project_Settings/Linker_Files/57xx_flash.ld" 38 | -T 39 | "C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/Project_Settings/Linker_Files/libs.ld" 40 | -Wl,-Map,"UCOS_II_MPC5744.map" 41 | -Xlinker 42 | --gc-sections 43 | -mcpu=e200z4 44 | -specs=ewl_c9x_noio.specs 45 | -mhard-float 46 | --sysroot="D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2" -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/cpu_core.d: -------------------------------------------------------------------------------- 1 | src/cpu_core.o: ../src/cpu_core.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_core.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h \ 7 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h \ 8 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h \ 9 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h \ 10 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cache.h 11 | 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 13 | 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 15 | 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 17 | 18 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_core.h: 19 | 20 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h: 21 | 22 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h: 23 | 24 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h: 25 | 26 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h: 27 | 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cache.h: 29 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/lib_math.d: -------------------------------------------------------------------------------- 1 | src/lib_math.o: ../src/lib_math.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_math.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h \ 7 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h \ 8 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h \ 9 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_core.h \ 10 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h 11 | 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 13 | 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 15 | 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 17 | 18 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_math.h: 19 | 20 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h: 21 | 22 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h: 23 | 24 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h: 25 | 26 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_core.h: 27 | 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h: 29 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/.settings/org.eclipse.cdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | environment/project/com.freescale.s32ds.cross.gnu.e200.exe.Debug_RAM/PATH/delimiter=; 3 | environment/project/com.freescale.s32ds.cross.gnu.e200.exe.Debug_RAM/PATH/operation=prepend 4 | environment/project/com.freescale.s32ds.cross.gnu.e200.exe.Debug_RAM/PATH/value= 5 | environment/project/com.freescale.s32ds.cross.gnu.e200.exe.Debug_RAM/append=true 6 | environment/project/com.freescale.s32ds.cross.gnu.e200.exe.Debug_RAM/appendContributed=true 7 | environment/project/com.freescale.s32ds.cross.gnu.e200.exe.debug.1145507658/PATH/delimiter=; 8 | environment/project/com.freescale.s32ds.cross.gnu.e200.exe.debug.1145507658/PATH/operation=prepend 9 | environment/project/com.freescale.s32ds.cross.gnu.e200.exe.debug.1145507658/PATH/value= 10 | environment/project/com.freescale.s32ds.cross.gnu.e200.exe.debug.1145507658/append=true 11 | environment/project/com.freescale.s32ds.cross.gnu.e200.exe.debug.1145507658/appendContributed=true 12 | environment/project/com.freescale.s32ds.cross.gnu.e200.exe.release.1718822164/PATH/delimiter=; 13 | environment/project/com.freescale.s32ds.cross.gnu.e200.exe.release.1718822164/PATH/operation=prepend 14 | environment/project/com.freescale.s32ds.cross.gnu.e200.exe.release.1718822164/PATH/value= 15 | environment/project/com.freescale.s32ds.cross.gnu.e200.exe.release.1718822164/append=true 16 | environment/project/com.freescale.s32ds.cross.gnu.e200.exe.release.1718822164/appendContributed=true 17 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/lib_str.d: -------------------------------------------------------------------------------- 1 | src/lib_str.o: ../src/lib_str.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_str.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h \ 7 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h \ 8 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h \ 9 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h \ 10 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_ascii.h \ 11 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_cfg.h 12 | 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 14 | 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 16 | 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 18 | 19 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_str.h: 20 | 21 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h: 22 | 23 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h: 24 | 25 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h: 26 | 27 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h: 28 | 29 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_ascii.h: 30 | 31 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_cfg.h: 32 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/sources.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit! 3 | ################################################################################ 4 | 5 | TODISASSEMBLE_SRCS_QUOTED := 6 | OBJ_SRCS_OS_FORMAT := 7 | S_UPPER_SRCS_QUOTED := 8 | TODISASSEMBLE_SRCS := 9 | O_SRCS_QUOTED := 10 | LD_SRCS_OS_FORMAT := 11 | ASM_UPPER_SRCS := 12 | TODISASSEMBLE_SRCS_OS_FORMAT := 13 | O_SRCS_OS_FORMAT := 14 | ASM_UPPER_SRCS_QUOTED := 15 | TOPREPROCESS_SRCS_OS_FORMAT := 16 | OSPT_SRCS := 17 | O_SRCS := 18 | ELF_SRCS := 19 | TOPREPROCESS_SRCS_QUOTED := 20 | S_SRCS_OS_FORMAT := 21 | C_SRCS_QUOTED := 22 | S_SRCS_QUOTED := 23 | ELF_SRCS_QUOTED := 24 | ELF_SRCS_OS_FORMAT := 25 | ASM_SRCS_OS_FORMAT := 26 | C_SRCS_OS_FORMAT := 27 | ASM_SRCS := 28 | S_UPPER_SRCS_OS_FORMAT := 29 | S_UPPER_SRCS := 30 | ASM_SRCS_QUOTED := 31 | OBJ_SRCS_QUOTED := 32 | LD_SRCS := 33 | OSPT_SRCS_QUOTED := 34 | LD_SRCS_QUOTED := 35 | OBJ_SRCS := 36 | S_SRCS := 37 | TOPREPROCESS_SRCS := 38 | C_SRCS := 39 | ASM_UPPER_SRCS_OS_FORMAT := 40 | OSPT_SRCS_OS_FORMAT := 41 | C_DEPS_OS_FORMAT := 42 | OBJS_OS_FORMAT := 43 | EXECUTABLES_OS_FORMAT := 44 | SECONDARY_SIZE_OS_FORMAT := 45 | C_DEPS_QUOTED := 46 | EXECUTABLES := 47 | OBJS := 48 | SECONDARY_SIZE := 49 | SECONDARY_SIZE_QUOTED := 50 | OBJS_QUOTED := 51 | EXECUTABLES_QUOTED := 52 | C_DEPS := 53 | 54 | # Every subdirectory with source files must be described here 55 | SUBDIRS := \ 56 | src \ 57 | Project_Settings/Startup_Code \ 58 | Project_Settings/Linker_Files \ 59 | 60 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/include/compiler_api.h: -------------------------------------------------------------------------------- 1 | /************************************************************************** 2 | * FILE NAME: compiler_api.h COPYRIGHT (c) Freescale 2016 * 3 | * All Rights Reserved * 4 | * DESCRIPTION: MPC57xx compiler specific file * 5 | * * 6 | ***************************************************************************/ 7 | #ifndef _COMPILER_API_H_ 8 | #define _COMPILER_API_H_ 9 | 10 | #if !defined(__GNUC__) && !defined(__ghs__) && !defined (__DCC__) 11 | #error "Compiler is not defined" 12 | #endif 13 | 14 | #define stringify(s) tostring(s) 15 | #define tostring(s) #s 16 | 17 | /* definitions for assembler functions */ 18 | 19 | #ifdef __GNUC__ /* GCC */ 20 | #define PPCASM __asm__ 21 | #define MFSPR( rn ) ({unsigned int rval; PPCASM volatile("mfspr %0," stringify(rn) : "=r" (rval)); rval;}) 22 | #define MTSPR(rn, v) PPCASM volatile("mtspr " stringify(rn) ",%0" : : "r" (v)) 23 | #endif 24 | 25 | #ifdef __ghs__ /* GreenHills */ 26 | #include /* for intrinsic functions only */ 27 | #define PPCASM asm 28 | #define MFSPR( spr ) __MFSPR( spr ) 29 | #define MTSPR( spr, val ) __MTSPR( spr, val ) 30 | #endif 31 | 32 | #ifdef __DCC__ /* Diab */ 33 | #include /* for intrinsic functions only */ 34 | #define PPCASM asm 35 | #define MFSPR( spr ) __mfspr( spr ) 36 | #define MTSPR( spr, val ) __mtspr( spr, val ) 37 | #endif 38 | 39 | #define VEC_ALIGN PPCASM (" .align 4 ") 40 | 41 | #endif 42 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/include/os.h: -------------------------------------------------------------------------------- 1 | /* 2 | ********************************************************************************************************* 3 | * uC/OS-II 4 | * The Real-Time Kernel 5 | * 6 | * (c) Copyright 1992-2017; Micrium, Inc.; Weston; FL 7 | * All Rights Reserved 8 | * 9 | * File : os.h 10 | * By : Jean J. Labrosse 11 | * Version : V2.92.14 12 | * 13 | * LICENSING TERMS: 14 | * --------------- 15 | * uC/OS-II is provided in source form for FREE evaluation, for educational use or for peaceful research. 16 | * If you plan on using uC/OS-II in a commercial product you need to contact Micrium to properly license 17 | * its use in your product. We provide ALL the source code for your convenience and to help you experience 18 | * uC/OS-II. The fact that the source is provided does NOT mean that you can use it without paying a 19 | * licensing fee. 20 | * 21 | * Knowledge of the source code may NOT be used to develop a similar product. 22 | * 23 | * Please help us continue to provide the embedded community with the finest software available. 24 | * Your honesty is greatly appreciated. 25 | * 26 | * You can find our product's user manual, API reference, release notes and 27 | * more information at https://doc.micrium.com. 28 | * You can contact us at www.micrium.com. 29 | * 30 | * Note : This file is included in the uC/OS-II for compatibility with uC/OS-III and should not be used 31 | * in normal circumstances. 32 | ********************************************************************************************************* 33 | */ 34 | 35 | #include "ucos_ii.h" 36 | 37 | 38 | typedef INT8U OS_ERR; 39 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/lib_mem.d: -------------------------------------------------------------------------------- 1 | src/lib_mem.o: ../src/lib_mem.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_mem.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h \ 7 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h \ 8 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h \ 9 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_core.h \ 10 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h \ 11 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_cfg.h \ 12 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_math.h \ 13 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_str.h \ 14 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_ascii.h 15 | 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 17 | 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 19 | 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 21 | 22 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_mem.h: 23 | 24 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h: 25 | 26 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h: 27 | 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h: 29 | 30 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_core.h: 31 | 32 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h: 33 | 34 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_cfg.h: 35 | 36 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_math.h: 37 | 38 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_str.h: 39 | 40 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_ascii.h: 41 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/flashrchw.d: -------------------------------------------------------------------------------- 1 | src/flashrchw.o: ../src/flashrchw.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/typedefs.h \ 6 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdint.h \ 7 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdint \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/limits_api.h \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h 15 | 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 17 | 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 19 | 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 21 | 22 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/typedefs.h: 23 | 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdint.h: 25 | 26 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 27 | 28 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 29 | 30 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 31 | 32 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 33 | 34 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdint: 35 | 36 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/limits_api.h: 37 | 38 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 39 | 40 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 41 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/intc_SW_mode_isr_vectors_MPC5744P.d: -------------------------------------------------------------------------------- 1 | src/intc_SW_mode_isr_vectors_MPC5744P.o: \ 2 | ../src/intc_SW_mode_isr_vectors_MPC5744P.c \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 5 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/typedefs.h \ 7 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdint.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdint \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/limits_api.h \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h 16 | 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 18 | 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 20 | 21 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 22 | 23 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/typedefs.h: 24 | 25 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdint.h: 26 | 27 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 28 | 29 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 30 | 31 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 32 | 33 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 34 | 35 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdint: 36 | 37 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/limits_api.h: 38 | 39 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 40 | 41 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 42 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/bsp_smpu.d: -------------------------------------------------------------------------------- 1 | src/bsp_smpu.o: ../src/bsp_smpu.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/MPC5744P.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/typedefs.h \ 7 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdint.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdint \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/limits_api.h \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h 16 | 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 18 | 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 20 | 21 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 22 | 23 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/MPC5744P.h: 24 | 25 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/typedefs.h: 26 | 27 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdint.h: 28 | 29 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 30 | 31 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 32 | 33 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 34 | 35 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 36 | 37 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdint: 38 | 39 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/limits_api.h: 40 | 41 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 42 | 43 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 44 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/src/flashrchw.c: -------------------------------------------------------------------------------- 1 | #if defined(START_FROM_FLASH) 2 | #include "typedefs.h" 3 | 4 | #define MPC57xx_ID 0x005A0000 /* RCHW boot ID for MPC57xx devices */ 5 | #define VLE_ENABLE 0x01000000 /* VLE is enabled */ 6 | 7 | #define CPU2_ENABLED 0x00000001 8 | #define CPU0_ENABLED 0x00000002 9 | #define CPUC_ENABLED 0x00000004 10 | #define CPU1_ENABLED 0x00000008 11 | 12 | #if defined(MPC574xP) || defined(MPC5777C) || defined(MPC577xK) 13 | extern void _start(void); 14 | #define ENTRY_POINT _start 15 | #define RCHW_VAL (VLE_ENABLE | MPC57xx_ID) 16 | #else 17 | #if defined(TURN_ON_CPU0) && defined(TURN_ON_CPU1) && defined(TURN_ON_CPU2) 18 | #define TARGET_CORES (CPU0_ENABLED | CPU1_ENABLED | CPU2_ENABLED) 19 | #elif defined(TURN_ON_CPU0) && defined(TURN_ON_CPU1) 20 | #define TARGET_CORES (CPU0_ENABLED | CPU1_ENABLED) 21 | #elif defined(TURN_ON_CPU0) && defined(TURN_ON_CPU2) 22 | #define TARGET_CORES (CPU0_ENABLED | CPU2_ENABLED) 23 | #elif defined(TURN_ON_CPU1) && defined(TURN_ON_CPU2) 24 | #define TARGET_CORES (CPU1_ENABLED | CPU2_ENABLED) 25 | #elif defined(TURN_ON_CPU0) 26 | #define TARGET_CORES (CPU0_ENABLED) 27 | #elif defined(TURN_ON_CPU1) 28 | #define TARGET_CORES (CPU1_ENABLED) 29 | #elif defined(TURN_ON_CPU2) 30 | #define TARGET_CORES (CPU2_ENABLED) 31 | #else 32 | #error "Neither core is selected" 33 | #endif /* defined(CPU0) && defined(CPU1) && defined(CPU2) */ 34 | #define RCHW_VAL (MPC57xx_ID | TARGET_CORES) 35 | #endif 36 | 37 | const uint32_t __attribute__ ((section(".rchw"))) RCHW1 = RCHW_VAL; 38 | #if defined(MPC574xP) || defined(MPC5777C) || defined(MPC577xK) 39 | const uint32_t __attribute__ ((section(".cpu0_reset_vector"))) RCHW2 = (uint32_t)ENTRY_POINT; 40 | #else 41 | #if defined(TURN_ON_CPU0) 42 | const uint32_t __attribute__ ((section(".cpu0_reset_vector"))) RCHW2_0 = (uint32_t)0x1000000; 43 | #endif 44 | #if defined(TURN_ON_CPU1) 45 | const uint32_t __attribute__ ((section(".cpu1_reset_vector"))) RCHW2_1 = (uint32_t)$(FLASH_START_2); 46 | #endif 47 | #if defined(TURN_ON_CPU2) 48 | const uint32_t __attribute__ ((section(".cpu2_reset_vector"))) RCHW2_2 = (uint32_t)$(FLASH_START_3); 49 | #endif 50 | #endif 51 | #endif /* defined(START_FROM_FLASH) */ 52 | 53 | 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/bsp_led.d: -------------------------------------------------------------------------------- 1 | src/bsp_led.o: ../src/bsp_led.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_led.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/MPC5744P.h \ 7 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/typedefs.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdint.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdint \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/limits_api.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h 17 | 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 19 | 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 21 | 22 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 23 | 24 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_led.h: 25 | 26 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/MPC5744P.h: 27 | 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/typedefs.h: 29 | 30 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdint.h: 31 | 32 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 33 | 34 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 35 | 36 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 37 | 38 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 39 | 40 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdint: 41 | 42 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/limits_api.h: 43 | 44 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 45 | 46 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 47 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/MPC57xx__Interrupt_Init.d: -------------------------------------------------------------------------------- 1 | src/MPC57xx__Interrupt_Init.o: ../src/MPC57xx__Interrupt_Init.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/derivative.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/MPC5744P.h \ 7 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/typedefs.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdint.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdint \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/limits_api.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h \ 17 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/compiler_api.h 18 | 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 20 | 21 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 22 | 23 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 24 | 25 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/derivative.h: 26 | 27 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/MPC5744P.h: 28 | 29 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/typedefs.h: 30 | 31 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdint.h: 32 | 33 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 34 | 35 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 36 | 37 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 38 | 39 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 40 | 41 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdint: 42 | 43 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/limits_api.h: 44 | 45 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 46 | 47 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 48 | 49 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/compiler_api.h: 50 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/makefile: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit! 3 | ################################################################################ 4 | 5 | #Progress monitor hint: 35 6 | first : all 7 | -include ../makefile.init 8 | 9 | # This file contains definitions of environment variables used in the makefiles and .args files if exist. 10 | -include makefile.local 11 | 12 | RM := rm -rf 13 | 14 | # All of the sources participating in the build are defined here 15 | -include sources.mk 16 | -include subdir.mk 17 | -include src/subdir.mk 18 | -include Project_Settings/Startup_Code/subdir.mk 19 | -include Project_Settings/Linker_Files/subdir.mk 20 | -include objects.mk 21 | 22 | ifneq ($(MAKECMDGOALS),clean) 23 | ifneq ($(strip $(C_DEPS)),) 24 | -include $(C_DEPS) 25 | endif 26 | endif 27 | 28 | -include ../makefile.defs 29 | 30 | # Add inputs and outputs from these tool invocations to the build variables 31 | EXECUTABLES += \ 32 | UCOS_II_MPC5744.elf \ 33 | 34 | EXECUTABLES_QUOTED += \ 35 | "UCOS_II_MPC5744.elf" \ 36 | 37 | EXECUTABLES_OS_FORMAT += \ 38 | UCOS_II_MPC5744.elf \ 39 | 40 | SECONDARY_SIZE += \ 41 | UCOS_II_MPC5744.siz \ 42 | 43 | SECONDARY_SIZE_QUOTED += \ 44 | "UCOS_II_MPC5744.siz" \ 45 | 46 | SECONDARY_SIZE_OS_FORMAT += \ 47 | UCOS_II_MPC5744.siz \ 48 | 49 | 50 | # All Target 51 | all: warning-messages explicit-dependencies UCOS_II_MPC5744.elf secondary-outputs 52 | 53 | # Tool invocations 54 | UCOS_II_MPC5744.elf: $(OBJS) C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/Project_Settings/Linker_Files/57xx_flash.ld C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/Project_Settings/Linker_Files/libs.ld $(OSPT) $(USER_OBJS) 55 | @echo 'Building target: $@' 56 | @echo 'Executing target #36 $@' 57 | @echo 'Invoking: Standard S32DS C Linker' 58 | powerpc-eabivle-gcc -o "UCOS_II_MPC5744.elf" "@UCOS_II_MPC5744.args" $(USER_OBJS_QUOTED) $(LIBS_QUOTED) $(OSPT) 59 | @echo 'Finished building target: $@' 60 | @echo ' ' 61 | 62 | UCOS_II_MPC5744.siz: $(EXECUTABLES) 63 | @echo 'Executing target #37 $@' 64 | @echo 'Invoking: Standard S32DS Print Size' 65 | powerpc-eabivle-size --format=berkeley $(EXECUTABLES) 66 | @echo 'Finished building: $@' 67 | @echo ' ' 68 | 69 | # Other Targets 70 | clean: 71 | -$(RM) ./*/*.d ./*/*/*.o ./*/*.o $(SECONDARY_SIZE_QUOTED) $(EXECUTABLES_QUOTED) 72 | -@echo ' ' 73 | 74 | secondary-outputs: $(SECONDARY_SIZE) 75 | 76 | .PHONY: all clean dependents explicit-dependencies warning-messages 77 | .SECONDARY: 78 | 79 | -include ../makefile.targets 80 | 81 | explicit-dependencies: 82 | 83 | warning-messages: 84 | 85 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/bsp_clk.d: -------------------------------------------------------------------------------- 1 | src/bsp_clk.o: ../src/bsp_clk.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h \ 7 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h \ 8 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h \ 9 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_clk.h \ 10 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/MPC5744P.h \ 11 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/typedefs.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdint.h \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdint \ 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/limits_api.h \ 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h 21 | 22 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 23 | 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 25 | 26 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 27 | 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h: 29 | 30 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h: 31 | 32 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h: 33 | 34 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h: 35 | 36 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_clk.h: 37 | 38 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/MPC5744P.h: 39 | 40 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/typedefs.h: 41 | 42 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdint.h: 43 | 44 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 45 | 46 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 47 | 48 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 49 | 50 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 51 | 52 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdint: 53 | 54 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/limits_api.h: 55 | 56 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 57 | 58 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 59 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/bsp_cpu.d: -------------------------------------------------------------------------------- 1 | src/bsp_cpu.o: ../src/bsp_cpu.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_core.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h \ 7 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h \ 8 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h \ 9 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h \ 10 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/MPC5744P.h \ 11 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/typedefs.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdint.h \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdint \ 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/limits_api.h \ 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h 21 | 22 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 23 | 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 25 | 26 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 27 | 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_core.h: 29 | 30 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h: 31 | 32 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h: 33 | 34 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h: 35 | 36 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h: 37 | 38 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/MPC5744P.h: 39 | 40 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/typedefs.h: 41 | 42 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdint.h: 43 | 44 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 45 | 46 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 47 | 48 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 49 | 50 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 51 | 52 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdint: 53 | 54 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/limits_api.h: 55 | 56 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 57 | 58 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 59 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/src/intc_sw_handlers.S: -------------------------------------------------------------------------------- 1 | ;#**************************************************************************/ 2 | ;#* FILE NAME: intc_sw_handlers.s COPYRIGHT (c) Freescale 2016 */ 3 | ;#* All Rights Reserved */ 4 | ;#* DESCRIPTION: */ 5 | ;#* This file creates prolog, epilog for C ISR and enables nested */ 6 | ;#* interrupts. */ 7 | ;#* WARNING: This stack frame does not save the SPEs Accumulator, which */ 8 | ;#* is required if SPE instructions are used in ISRs. If SPE */ 9 | ;#* instructions are used, the stack frame must include the */ 10 | ;#* accumulator, and prologue and epilogue must be modified. */ 11 | ;#=========================================================================*/ 12 | .globl IVOR4_Handler 13 | 14 | #ifdef __ghs__ 15 | .section .vletext, axv 16 | .vle 17 | #endif 18 | 19 | .equ INTC_IACKR, 0xfc040020 ;# Interrupt Acknowledge Register address 20 | .equ INTC_EOIR, 0xfc040030 ;# End Of Interrupt Register address 21 | 22 | .align 4 23 | 24 | IVOR4_Handler: 25 | prologue: 26 | e_stwu r1,-0x50 (r1) ;# Create stack frame and store back chain 27 | e_stmvsrrw 0x0c (r1) ;# Save SRR[0-1] (must be done before enabling MSR[EE]) 28 | se_stw r3, 0x08 (r1) ;# Save working register (r3) 29 | e_lis r3, INTC_IACKR@ha ;# Save address of INTC_IACKR in r3 30 | e_lwz r3, INTC_IACKR@l(r3) ;# Save contents of INTC_IACKR in r3 (this is vector table address) 31 | wrteei 1 ;# Set MSR[EE] (must wait a couple clocks after reading IACKR) 32 | se_lwz r3, 0x0(r3) ;# Read ISR address from Interrupt Vector Table using pointer 33 | e_stmvsprw 0x14 (r1) ;# Save CR, LR, CTR, XER 34 | se_mtLR r3 ;# Copy ISR address (from IACKR) to LR for next branch 35 | e_stmvgprw 0x24 (r1) ;# Save GPRs, r[0,3-12] 36 | se_blrl ;# Branch to ISR, with return to next instruction (epilogue) 37 | 38 | epilogue: 39 | e_lmvsprw 0x14 (r1) ;# Restore CR, LR, CTR, XER 40 | e_lmvgprw 0x24 (r1) ;# Restore GPRs, r[0,3-12] 41 | e_lis r3, INTC_EOIR@ha ;# Load upper half of INTC_EOIR address to r3 42 | mbar ;# Ensure prior clearing of interrupt flag conmpleted. 43 | wrteei 0 ;# Disable interrupts 44 | e_stw r3, INTC_EOIR@l(r3) ;# Load lower half of INTC_EOIR address to r3 and 45 | ;# write contents of r3 to INTC_EOIR 46 | se_lwz r3, 0x08 (r1) ;# Restore working register (r3) (original value) 47 | e_lmvsrrw 0x0c (r1) ;# Restore SRR[0-1] 48 | e_add16i r1, r1, 0x50 ;# Reclaim stack space 49 | se_rfi ;# End of Interrupt Handler - re-enables interrupts 50 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/.settings/language.settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/include/bsp_os.h: -------------------------------------------------------------------------------- 1 | /* 2 | ********************************************************************************************************* 3 | * EXAMPLE CODE 4 | * 5 | * This file is provided as an example on how to use Micrium products. 6 | * 7 | * Please feel free to use any application code labeled as 'EXAMPLE CODE' in 8 | * your application products. Example code may be used as is, in whole or in 9 | * part, or may be used as a reference only. This file can be modified as 10 | * required to meet the end-product requirements. 11 | * 12 | * Please help us continue to provide the Embedded community with the finest 13 | * software available. Your honesty is greatly appreciated. 14 | * 15 | * You can find our product's user manual, API reference, release notes and 16 | * more information at https://doc.micrium.com. 17 | * You can contact us at www.micrium.com. 18 | ********************************************************************************************************* 19 | */ 20 | 21 | /* 22 | ********************************************************************************************************* 23 | * 24 | * MICRIUM BOARD SUPPORT PACKAGE 25 | * MPC574xG-324DS 26 | * 27 | * Filename : bsp_os.h 28 | ********************************************************************************************************* 29 | */ 30 | 31 | /* 32 | ********************************************************************************************************* 33 | * MODULE 34 | ********************************************************************************************************* 35 | */ 36 | 37 | #ifndef BSP_OS_PRESENT 38 | #define BSP_OS_PRESENT 39 | 40 | 41 | /* 42 | ********************************************************************************************************* 43 | * EXTERNAL C LANGUAGE LINKAGE 44 | * 45 | * Note(s) : (1) C++ compilers MUST 'extern'ally declare ALL C function prototypes & variable/object 46 | * declarations for correct C language linkage. 47 | ********************************************************************************************************* 48 | */ 49 | 50 | #ifdef __cplusplus 51 | extern "C" { /* See Note #1. */ 52 | #endif 53 | 54 | 55 | /* 56 | ********************************************************************************************************* 57 | * FUNCTION PROTOTYPES 58 | ********************************************************************************************************* 59 | */ 60 | 61 | void BSP_OS_TickInit (void); 62 | 63 | void BSP_OS_TickEnable (void); 64 | 65 | void BSP_OS_TickDisable(void); 66 | 67 | 68 | /* 69 | ********************************************************************************************************* 70 | * EXTERNAL C LANGUAGE LINKAGE END 71 | ********************************************************************************************************* 72 | */ 73 | 74 | #ifdef __cplusplus 75 | } /* End of 'extern'al C lang linkage. */ 76 | #endif 77 | 78 | 79 | /* 80 | ********************************************************************************************************* 81 | * MODULE END 82 | ********************************************************************************************************* 83 | */ 84 | 85 | #endif /* End of module include. */ 86 | 87 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/src/cpu_cache_powerpc_e200z4204n3.c: -------------------------------------------------------------------------------- 1 | /* 2 | ********************************************************************************************************* 3 | * uC/CPU 4 | * CPU CONFIGURATION & PORT LAYER 5 | * 6 | * (c) Copyright 2004-2017; Micrium, Inc.; Weston, FL 7 | * 8 | * All rights reserved. Protected by international copyright laws. 9 | * 10 | * uC/CPU is provided in source form to registered licensees ONLY. It is 11 | * illegal to distribute this source code to any third party unless you receive 12 | * written permission by an authorized Micrium representative. Knowledge of 13 | * the source code may NOT be used to develop a similar product. 14 | * 15 | * Please help us continue to provide the Embedded community with the finest 16 | * software available. Your honesty is greatly appreciated. 17 | * 18 | * You can find our product's user manual, API reference, release notes and 19 | * more information at doc.micrium.com. 20 | * You can contact us at www.micrium.com. 21 | ********************************************************************************************************* 22 | */ 23 | 24 | /* 25 | ********************************************************************************************************* 26 | * 27 | * CPU CACHE IMPLEMENTATION 28 | * PowerPC e200z4204n3 29 | * L1 Cache 30 | * 31 | * Filename : cpu_cache_powerpc_e200z4204n3.c 32 | * Version : V1.31.02 33 | * Programmer(s) : SB 34 | ********************************************************************************************************* 35 | */ 36 | 37 | 38 | /* 39 | ********************************************************************************************************* 40 | * INCLUDE FILES 41 | ********************************************************************************************************* 42 | */ 43 | #include 44 | #include "cpu_cache.h" 45 | #include 46 | 47 | 48 | #ifdef __cplusplus 49 | extern "C" { 50 | #endif 51 | 52 | /* 53 | ********************************************************************************************************* 54 | * EXTERNAL DECLARATIONS 55 | ********************************************************************************************************* 56 | */ 57 | 58 | CPU_INT32U CPU_DCache_LineSizeGet(void); 59 | 60 | 61 | /* 62 | ********************************************************************************************************* 63 | * LOCAL GLOBAL VARIABLES 64 | ********************************************************************************************************* 65 | */ 66 | 67 | CPU_INT32U CPU_Cache_Linesize; /* Cache line size. */ 68 | 69 | 70 | /* 71 | ********************************************************************************************************* 72 | * CPU_CacheMGMTInit() 73 | * 74 | * Description : Initialize cpu cache module. 75 | * 76 | * Argument(s) : none. 77 | * 78 | * Return(s) : none. 79 | * 80 | * Caller(s) : CPU_Init(). 81 | * 82 | * This function is an INTERNAL CPU module function & MUST NOT be called by application 83 | * function(s). 84 | * 85 | * Note(s) : none. 86 | ********************************************************************************************************* 87 | */ 88 | 89 | void CPU_Cache_Init(void) 90 | { 91 | CPU_Cache_Linesize = CPU_DCache_LineSizeGet(); 92 | } 93 | 94 | #ifdef __cplusplus 95 | } 96 | #endif 97 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_q.d: -------------------------------------------------------------------------------- 1 | src/os_q.o: ../src/os_q.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h \ 7 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio \ 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef \ 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h \ 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h \ 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h \ 21 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 22 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h \ 23 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h \ 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h \ 25 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h \ 26 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h \ 27 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h \ 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h 29 | 30 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 31 | 32 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 33 | 34 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 35 | 36 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h: 37 | 38 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h: 39 | 40 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h: 41 | 42 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 43 | 44 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 45 | 46 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 47 | 48 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 49 | 50 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg: 51 | 52 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h: 53 | 54 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h: 55 | 56 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h: 57 | 58 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio: 59 | 60 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef: 61 | 62 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h: 63 | 64 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h: 65 | 66 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 67 | 68 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 69 | 70 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h: 71 | 72 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h: 73 | 74 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h: 75 | 76 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h: 77 | 78 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h: 79 | 80 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h: 81 | 82 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h: 83 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_mem.d: -------------------------------------------------------------------------------- 1 | src/os_mem.o: ../src/os_mem.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h \ 7 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio \ 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef \ 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h \ 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h \ 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h \ 21 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 22 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h \ 23 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h \ 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h \ 25 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h \ 26 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h \ 27 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h \ 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h 29 | 30 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 31 | 32 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 33 | 34 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 35 | 36 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h: 37 | 38 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h: 39 | 40 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h: 41 | 42 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 43 | 44 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 45 | 46 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 47 | 48 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 49 | 50 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg: 51 | 52 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h: 53 | 54 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h: 55 | 56 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h: 57 | 58 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio: 59 | 60 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef: 61 | 62 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h: 63 | 64 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h: 65 | 66 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 67 | 68 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 69 | 70 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h: 71 | 72 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h: 73 | 74 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h: 75 | 76 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h: 77 | 78 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h: 79 | 80 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h: 81 | 82 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h: 83 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_sem.d: -------------------------------------------------------------------------------- 1 | src/os_sem.o: ../src/os_sem.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h \ 7 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio \ 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef \ 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h \ 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h \ 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h \ 21 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 22 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h \ 23 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h \ 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h \ 25 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h \ 26 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h \ 27 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h \ 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h 29 | 30 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 31 | 32 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 33 | 34 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 35 | 36 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h: 37 | 38 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h: 39 | 40 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h: 41 | 42 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 43 | 44 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 45 | 46 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 47 | 48 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 49 | 50 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg: 51 | 52 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h: 53 | 54 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h: 55 | 56 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h: 57 | 58 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio: 59 | 60 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef: 61 | 62 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h: 63 | 64 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h: 65 | 66 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 67 | 68 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 69 | 70 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h: 71 | 72 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h: 73 | 74 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h: 75 | 76 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h: 77 | 78 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h: 79 | 80 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h: 81 | 82 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h: 83 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_tmr.d: -------------------------------------------------------------------------------- 1 | src/os_tmr.o: ../src/os_tmr.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h \ 7 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio \ 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef \ 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h \ 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h \ 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h \ 21 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 22 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h \ 23 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h \ 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h \ 25 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h \ 26 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h \ 27 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h \ 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h 29 | 30 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 31 | 32 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 33 | 34 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 35 | 36 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h: 37 | 38 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h: 39 | 40 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h: 41 | 42 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 43 | 44 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 45 | 46 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 47 | 48 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 49 | 50 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg: 51 | 52 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h: 53 | 54 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h: 55 | 56 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h: 57 | 58 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio: 59 | 60 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef: 61 | 62 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h: 63 | 64 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h: 65 | 66 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 67 | 68 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 69 | 70 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h: 71 | 72 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h: 73 | 74 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h: 75 | 76 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h: 77 | 78 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h: 79 | 80 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h: 81 | 82 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h: 83 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_core.d: -------------------------------------------------------------------------------- 1 | src/os_core.o: ../src/os_core.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h \ 7 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio \ 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef \ 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h \ 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h \ 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h \ 21 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 22 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h \ 23 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h \ 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h \ 25 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h \ 26 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h \ 27 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h \ 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h 29 | 30 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 31 | 32 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 33 | 34 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 35 | 36 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h: 37 | 38 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h: 39 | 40 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h: 41 | 42 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 43 | 44 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 45 | 46 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 47 | 48 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 49 | 50 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg: 51 | 52 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h: 53 | 54 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h: 55 | 56 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h: 57 | 58 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio: 59 | 60 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef: 61 | 62 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h: 63 | 64 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h: 65 | 66 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 67 | 68 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 69 | 70 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h: 71 | 72 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h: 73 | 74 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h: 75 | 76 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h: 77 | 78 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h: 79 | 80 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h: 81 | 82 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h: 83 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_dbg_r.d: -------------------------------------------------------------------------------- 1 | src/os_dbg_r.o: ../src/os_dbg_r.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h \ 7 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio \ 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef \ 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h \ 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h \ 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h \ 21 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 22 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h \ 23 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h \ 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h \ 25 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h \ 26 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h \ 27 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h \ 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h 29 | 30 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 31 | 32 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 33 | 34 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 35 | 36 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h: 37 | 38 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h: 39 | 40 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h: 41 | 42 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 43 | 44 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 45 | 46 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 47 | 48 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 49 | 50 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg: 51 | 52 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h: 53 | 54 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h: 55 | 56 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h: 57 | 58 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio: 59 | 60 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef: 61 | 62 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h: 63 | 64 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h: 65 | 66 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 67 | 68 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 69 | 70 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h: 71 | 72 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h: 73 | 74 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h: 75 | 76 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h: 77 | 78 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h: 79 | 80 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h: 81 | 82 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h: 83 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_flag.d: -------------------------------------------------------------------------------- 1 | src/os_flag.o: ../src/os_flag.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h \ 7 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio \ 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef \ 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h \ 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h \ 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h \ 21 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 22 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h \ 23 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h \ 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h \ 25 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h \ 26 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h \ 27 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h \ 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h 29 | 30 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 31 | 32 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 33 | 34 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 35 | 36 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h: 37 | 38 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h: 39 | 40 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h: 41 | 42 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 43 | 44 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 45 | 46 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 47 | 48 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 49 | 50 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg: 51 | 52 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h: 53 | 54 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h: 55 | 56 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h: 57 | 58 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio: 59 | 60 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef: 61 | 62 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h: 63 | 64 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h: 65 | 66 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 67 | 68 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 69 | 70 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h: 71 | 72 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h: 73 | 74 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h: 75 | 76 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h: 77 | 78 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h: 79 | 80 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h: 81 | 82 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h: 83 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_mbox.d: -------------------------------------------------------------------------------- 1 | src/os_mbox.o: ../src/os_mbox.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h \ 7 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio \ 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef \ 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h \ 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h \ 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h \ 21 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 22 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h \ 23 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h \ 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h \ 25 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h \ 26 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h \ 27 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h \ 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h 29 | 30 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 31 | 32 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 33 | 34 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 35 | 36 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h: 37 | 38 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h: 39 | 40 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h: 41 | 42 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 43 | 44 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 45 | 46 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 47 | 48 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 49 | 50 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg: 51 | 52 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h: 53 | 54 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h: 55 | 56 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h: 57 | 58 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio: 59 | 60 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef: 61 | 62 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h: 63 | 64 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h: 65 | 66 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 67 | 68 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 69 | 70 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h: 71 | 72 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h: 73 | 74 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h: 75 | 76 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h: 77 | 78 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h: 79 | 80 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h: 81 | 82 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h: 83 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_mutex.d: -------------------------------------------------------------------------------- 1 | src/os_mutex.o: ../src/os_mutex.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h \ 7 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio \ 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef \ 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h \ 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h \ 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h \ 21 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 22 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h \ 23 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h \ 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h \ 25 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h \ 26 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h \ 27 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h \ 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h 29 | 30 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 31 | 32 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 33 | 34 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 35 | 36 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h: 37 | 38 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h: 39 | 40 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h: 41 | 42 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 43 | 44 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 45 | 46 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 47 | 48 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 49 | 50 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg: 51 | 52 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h: 53 | 54 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h: 55 | 56 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h: 57 | 58 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio: 59 | 60 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef: 61 | 62 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h: 63 | 64 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h: 65 | 66 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 67 | 68 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 69 | 70 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h: 71 | 72 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h: 73 | 74 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h: 75 | 76 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h: 77 | 78 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h: 79 | 80 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h: 81 | 82 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h: 83 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_task.d: -------------------------------------------------------------------------------- 1 | src/os_task.o: ../src/os_task.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h \ 7 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio \ 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef \ 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h \ 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h \ 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h \ 21 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 22 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h \ 23 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h \ 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h \ 25 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h \ 26 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h \ 27 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h \ 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h 29 | 30 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 31 | 32 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 33 | 34 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 35 | 36 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h: 37 | 38 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h: 39 | 40 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h: 41 | 42 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 43 | 44 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 45 | 46 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 47 | 48 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 49 | 50 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg: 51 | 52 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h: 53 | 54 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h: 55 | 56 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h: 57 | 58 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio: 59 | 60 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef: 61 | 62 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h: 63 | 64 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h: 65 | 66 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 67 | 68 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 69 | 70 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h: 71 | 72 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h: 73 | 74 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h: 75 | 76 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h: 77 | 78 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h: 79 | 80 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h: 81 | 82 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h: 83 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_time.d: -------------------------------------------------------------------------------- 1 | src/os_time.o: ../src/os_time.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h \ 7 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio \ 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef \ 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h \ 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h \ 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h \ 21 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 22 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h \ 23 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h \ 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h \ 25 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h \ 26 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h \ 27 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h \ 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h 29 | 30 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 31 | 32 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 33 | 34 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 35 | 36 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h: 37 | 38 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h: 39 | 40 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h: 41 | 42 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 43 | 44 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 45 | 46 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 47 | 48 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 49 | 50 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg: 51 | 52 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h: 53 | 54 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h: 55 | 56 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h: 57 | 58 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio: 59 | 60 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef: 61 | 62 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h: 63 | 64 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h: 65 | 66 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 67 | 68 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 69 | 70 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h: 71 | 72 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h: 73 | 74 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h: 75 | 76 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h: 77 | 78 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h: 79 | 80 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h: 81 | 82 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h: 83 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/os_cpu_c.d: -------------------------------------------------------------------------------- 1 | src/os_cpu_c.o: ../src/os_cpu_c.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h \ 7 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h \ 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio \ 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef \ 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h \ 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h \ 21 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h \ 22 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 23 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h \ 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h \ 25 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h \ 26 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h \ 27 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h \ 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h \ 29 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h 30 | 31 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 32 | 33 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 34 | 35 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 36 | 37 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os.h: 38 | 39 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h: 40 | 41 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h: 42 | 43 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h: 44 | 45 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 46 | 47 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 48 | 49 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 50 | 51 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 52 | 53 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg: 54 | 55 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h: 56 | 57 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h: 58 | 59 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h: 60 | 61 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio: 62 | 63 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef: 64 | 65 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h: 66 | 67 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h: 68 | 69 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 70 | 71 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 72 | 73 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h: 74 | 75 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h: 76 | 77 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h: 78 | 79 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h: 80 | 81 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h: 82 | 83 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h: 84 | 85 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h: 86 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/app_hooks.d: -------------------------------------------------------------------------------- 1 | src/app_hooks.o: ../src/app_hooks.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h \ 7 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h \ 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio \ 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef \ 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h \ 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h \ 21 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h \ 22 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 23 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h \ 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h \ 25 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h \ 26 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h \ 27 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h \ 28 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h \ 29 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h 30 | 31 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 32 | 33 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 34 | 35 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 36 | 37 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os.h: 38 | 39 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h: 40 | 41 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h: 42 | 43 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h: 44 | 45 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 46 | 47 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 48 | 49 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 50 | 51 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 52 | 53 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg: 54 | 55 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h: 56 | 57 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h: 58 | 59 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h: 60 | 61 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio: 62 | 63 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef: 64 | 65 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h: 66 | 67 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h: 68 | 69 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 70 | 71 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 72 | 73 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h: 74 | 75 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h: 76 | 77 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h: 78 | 79 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h: 80 | 81 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h: 82 | 83 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h: 84 | 85 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h: 86 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/include/app_cfg.h: -------------------------------------------------------------------------------- 1 | /* 2 | ********************************************************************************************************* 3 | * EXAMPLE CODE 4 | * 5 | * This file is provided as an example on how to use Micrium products. 6 | * 7 | * Please feel free to use any application code labeled as 'EXAMPLE CODE' in 8 | * your application products. Example code may be used as is, in whole or in 9 | * part, or may be used as a reference only. This file can be modified as 10 | * required to meet the end-product requirements. 11 | * 12 | * Please help us continue to provide the Embedded community with the finest 13 | * software available. Your honesty is greatly appreciated. 14 | * 15 | * You can find our product's user manual, API reference, release notes and 16 | * more information at https://doc.micrium.com. 17 | * You can contact us at www.micrium.com. 18 | ********************************************************************************************************* 19 | */ 20 | 21 | /* 22 | ********************************************************************************************************* 23 | * 24 | * APPLICATION CONFIGURATION 25 | * 26 | * Filename : app_cfg.h 27 | ********************************************************************************************************* 28 | */ 29 | 30 | #ifndef _APP_CFG_H_ 31 | #define _APP_CFG_H_ 32 | 33 | 34 | /* 35 | ********************************************************************************************************* 36 | * INCLUDE FILES 37 | ********************************************************************************************************* 38 | */ 39 | 40 | #include 41 | #include 42 | 43 | 44 | /* 45 | ********************************************************************************************************* 46 | * MODULE ENABLE / DISABLE 47 | ********************************************************************************************************* 48 | */ 49 | 50 | 51 | /* 52 | ********************************************************************************************************* 53 | * TASK PRIORITIES 54 | ********************************************************************************************************* 55 | */ 56 | 57 | #define OS_TASK_TMR_PRIO (OS_LOWEST_PRIO - 2u) /* Only required for uC/OS-II */ 58 | 59 | #define APP_CFG_STARTUP_TASK_PRIO 3u 60 | 61 | 62 | /* 63 | ********************************************************************************************************* 64 | * TASK STACK SIZES 65 | * Size of the task stacks (# of OS_STK entries) 66 | ********************************************************************************************************* 67 | */ 68 | 69 | #define APP_CFG_STARTUP_TASK_STK_SIZE 256u 70 | 71 | 72 | /* 73 | ********************************************************************************************************* 74 | * TRACE / DEBUG CONFIGURATION 75 | ********************************************************************************************************* 76 | */ 77 | 78 | #define APP_TRACE_LEVEL TRACE_LEVEL_OFF 79 | #define APP_TRACE printf 80 | 81 | #define APP_TRACE_INFO(x) ((APP_TRACE_LEVEL >= TRACE_LEVEL_INFO) ? (void)(APP_TRACE x) : (void)0) 82 | #define APP_TRACE_DBG(x) ((APP_TRACE_LEVEL >= TRACE_LEVEL_DBG) ? (void)(APP_TRACE x) : (void)0) 83 | 84 | 85 | /* 86 | ********************************************************************************************************* 87 | * MODULE END 88 | ********************************************************************************************************* 89 | */ 90 | 91 | #endif /* End of module include. */ 92 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/src/Vector.c: -------------------------------------------------------------------------------- 1 | /**************************************************************************/ 2 | /* */ 3 | /* DESCRIPTION: */ 4 | /* This is a generic base template for all core exceptions, excluding */ 5 | /* the IVOR4 exception which has a seperate handler */ 6 | /* */ 7 | /* This file starts in memory at the beginning of the */ 8 | /* .core_exceptions_table_c2" section. */ 9 | /**************************************************************************/ 10 | 11 | #define PPCASM __asm__ 12 | #define PPCASM_STR(x) #x 13 | #define PPCASMF(x) PPCASM (" " PPCASM_STR(x) " ") 14 | #define PPCASMF2(x,x1) PPCASM (" " PPCASM_STR(x) "," PPCASM_STR(x1) " ") 15 | 16 | PPCASMF( .globl VTABLE ); 17 | PPCASMF( .globl IVOR0_Vector ); 18 | PPCASMF( .globl IVOR1_Vector ); 19 | PPCASMF( .globl IVOR2_Vector ); 20 | PPCASMF( .globl IVOR3_Vector ); 21 | PPCASMF( .globl IVOR4_Vector ); 22 | PPCASMF( .globl IVOR5_Vector ); 23 | PPCASMF( .globl IVOR6_Vector ); 24 | PPCASMF( .globl IVOR7_Vector ); 25 | PPCASMF( .globl IVOR8_Vector ); 26 | PPCASMF( .globl IVOR9_Vector ); 27 | PPCASMF( .globl IVOR10_Vector ); 28 | PPCASMF( .globl IVOR11_Vector ); 29 | PPCASMF( .globl IVOR12_Vector ); 30 | PPCASMF( .globl IVOR13_Vector ); 31 | PPCASMF( .globl IVOR14_Vector ); 32 | PPCASMF( .globl IVOR15_Vector ); 33 | 34 | PPCASMF( .extern OS_ExceptHandler_CriticalInput ); 35 | PPCASMF( .extern OS_ExceptHandler_MachineCheck ); 36 | PPCASMF( .extern OS_ExceptHandler_DataStorage ); 37 | PPCASMF( .extern OS_ExceptHandler_InstructionStorage ); 38 | PPCASMF( .extern OS_ExceptHandler_ExternalInput ); 39 | PPCASMF( .extern OS_ExceptHandler_Alignment ); 40 | PPCASMF( .extern OS_ExceptHandler_Program ); 41 | PPCASMF( .extern OS_ExceptHandler_PerformanceMonitor ); 42 | PPCASMF( .extern OS_ExceptHandler_SystemCall ); 43 | PPCASMF( .extern OS_ExceptHandler_Debug ); 44 | PPCASMF( .extern OS_ExceptHandler_EFPUDataException ); 45 | PPCASMF( .extern OS_ExceptHandler_EFPURoundException ); 46 | PPCASMF( .extern OS_ExceptHandler_EFPUUnavailable ); 47 | PPCASMF( .extern OS_ExceptHandler_IVOR13 ); 48 | PPCASMF( .extern OS_ExceptHandler_IVOR14 ); 49 | PPCASMF( .extern OS_ExceptHandler_IVOR15 ); 50 | 51 | PPCASMF2( .section .core_exceptions_table, "ax" ); 52 | 53 | PPCASMF(.align 4); 54 | PPCASMF( VTABLE: ); 55 | PPCASMF( IVOR0_Vector: ); 56 | PPCASMF( e_b OS_ExceptHandler_CriticalInput ); 57 | 58 | PPCASMF(.align 4); 59 | PPCASMF( IVOR1_Vector: ); 60 | PPCASMF( e_b OS_ExceptHandler_MachineCheck ); 61 | 62 | PPCASMF(.align 4); 63 | PPCASMF( IVOR2_Vector: ); 64 | PPCASMF( e_b OS_ExceptHandler_DataStorage ); 65 | 66 | PPCASMF(.align 4); 67 | PPCASMF( IVOR3_Vector: ); 68 | PPCASMF( e_b OS_ExceptHandler_InstructionStorage ); 69 | 70 | PPCASMF(.align 4); 71 | PPCASMF( IVOR4_Vector: ); 72 | PPCASMF( e_b OS_ExceptHandler_ExternalInput ); 73 | 74 | PPCASMF(.align 4); 75 | PPCASMF( IVOR5_Vector: ); 76 | PPCASMF( e_b OS_ExceptHandler_Alignment ); 77 | 78 | PPCASMF(.align 4); 79 | PPCASMF( IVOR6_Vector: ); 80 | PPCASMF( e_b OS_ExceptHandler_Program ); 81 | 82 | PPCASMF(.align 4); 83 | PPCASMF( IVOR7_Vector: ); 84 | PPCASMF( e_b OS_ExceptHandler_PerformanceMonitor ); 85 | 86 | PPCASMF(.align 4); 87 | PPCASMF( IVOR8_Vector: ); 88 | PPCASMF( e_b OS_ExceptHandler_SystemCall ); 89 | 90 | PPCASMF(.align 4); 91 | PPCASMF( IVOR9_Vector: ); 92 | PPCASMF( e_b OS_ExceptHandler_Debug ); 93 | 94 | PPCASMF(.align 4); 95 | PPCASMF( IVOR10_Vector: ); 96 | PPCASMF( e_b OS_ExceptHandler_EFPUDataException ); 97 | 98 | PPCASMF(.align 4); 99 | PPCASMF( IVOR11_Vector: ); 100 | PPCASMF( e_b OS_ExceptHandler_EFPURoundException ); 101 | 102 | PPCASMF(.align 4); 103 | PPCASMF( IVOR12_Vector: ); 104 | PPCASMF( e_b OS_ExceptHandler_EFPUUnavailable ); 105 | 106 | PPCASMF(.align 4); 107 | PPCASMF( IVOR13_Vector: ); 108 | PPCASMF( e_b OS_ExceptHandler_IVOR13 ); 109 | 110 | PPCASMF(.align 4); 111 | PPCASMF( IVOR14_Vector: ); 112 | PPCASMF( e_b OS_ExceptHandler_IVOR14 ); 113 | 114 | PPCASMF(.align 4); 115 | PPCASMF( IVOR15_Vector: ); 116 | PPCASMF( e_b OS_ExceptHandler_IVOR15 ); 117 | 118 | 119 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/include/bsp_smpu.h: -------------------------------------------------------------------------------- 1 | /* 2 | ********************************************************************************************************* 3 | * EXAMPLE CODE 4 | * 5 | * This file is provided as an example on how to use Micrium products. 6 | * 7 | * Please feel free to use any application code labeled as 'EXAMPLE CODE' in 8 | * your application products. Example code may be used as is, in whole or in 9 | * part, or may be used as a reference only. This file can be modified as 10 | * required to meet the end-product requirements. 11 | * 12 | * Please help us continue to provide the Embedded community with the finest 13 | * software available. Your honesty is greatly appreciated. 14 | * 15 | * You can find our product's user manual, API reference, release notes and 16 | * more information at https://doc.micrium.com. 17 | * You can contact us at www.micrium.com. 18 | ********************************************************************************************************* 19 | */ 20 | 21 | /* 22 | ********************************************************************************************************* 23 | * 24 | * MICRIUM BOARD SUPPORT PACKAGE 25 | * MPC574xG-324DS 26 | * 27 | * Filename : bsp_smpu.h 28 | ********************************************************************************************************* 29 | */ 30 | 31 | /* 32 | ********************************************************************************************************* 33 | * MODULE 34 | * 35 | * Note(s) : (1) This header file is protected from multiple pre-processor inclusion through use of the 36 | * BSP present pre-processor macro definition. 37 | ********************************************************************************************************* 38 | */ 39 | 40 | #ifndef BSP_SMPU_PRESENT 41 | #define BSP_SMPU_PRESENT 42 | 43 | 44 | /* 45 | ********************************************************************************************************* 46 | * INCLUDE FILES 47 | ********************************************************************************************************* 48 | */ 49 | 50 | 51 | /* 52 | ********************************************************************************************************* 53 | * EXTERNAL C LANGUAGE LINKAGE 54 | * 55 | * Note(s) : (1) C++ compilers MUST 'extern'ally declare ALL C function prototypes & variable/object 56 | * declarations for correct C language linkage. 57 | ********************************************************************************************************* 58 | */ 59 | 60 | #ifdef __cplusplus 61 | extern "C" { /* See Note #1. */ 62 | #endif 63 | 64 | 65 | /* 66 | ********************************************************************************************************* 67 | * DEFINES 68 | ********************************************************************************************************* 69 | */ 70 | 71 | 72 | /* 73 | ********************************************************************************************************* 74 | * DATA TYPES 75 | ********************************************************************************************************* 76 | */ 77 | 78 | 79 | /* 80 | ********************************************************************************************************* 81 | * FUNCTION PROTOTYPES 82 | ********************************************************************************************************* 83 | */ 84 | 85 | void BSP_SMPU_Init(void); 86 | 87 | 88 | /* 89 | ********************************************************************************************************* 90 | * EXTERNAL C LANGUAGE LINKAGE END 91 | ********************************************************************************************************* 92 | */ 93 | 94 | #ifdef __cplusplus 95 | } /* End of 'extern'al C lang linkage. */ 96 | #endif 97 | 98 | 99 | /* 100 | ********************************************************************************************************* 101 | * MODULE END 102 | ********************************************************************************************************* 103 | */ 104 | 105 | #endif /* End of module include. */ 106 | 107 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/src/bsp_smpu.c: -------------------------------------------------------------------------------- 1 | /* 2 | ********************************************************************************************************* 3 | * EXAMPLE CODE 4 | * 5 | * This file is provided as an example on how to use Micrium products. 6 | * 7 | * Please feel free to use any application code labeled as 'EXAMPLE CODE' in 8 | * your application products. Example code may be used as is, in whole or in 9 | * part, or may be used as a reference only. This file can be modified as 10 | * required to meet the end-product requirements. 11 | * 12 | * Please help us continue to provide the Embedded community with the finest 13 | * software available. Your honesty is greatly appreciated. 14 | * 15 | * You can find our product's user manual, API reference, release notes and 16 | * more information at https://doc.micrium.com. 17 | * You can contact us at www.micrium.com. 18 | ********************************************************************************************************* 19 | */ 20 | 21 | /* 22 | ********************************************************************************************************* 23 | * 24 | * MICRIUM BOARD SUPPORT PACKAGE 25 | * MPC574xG-324DS 26 | * 27 | * Filename : bsp_smpu.c 28 | ********************************************************************************************************* 29 | */ 30 | 31 | /* 32 | ********************************************************************************************************* 33 | * INCLUDE FILES 34 | ********************************************************************************************************* 35 | */ 36 | 37 | #include "MPC5744P.h" 38 | 39 | 40 | /* 41 | ********************************************************************************************************* 42 | * EXTERNS 43 | ********************************************************************************************************* 44 | */ 45 | /* Normal SRAM. */ 46 | extern int __SRAM_BASE_ADDR; 47 | extern int __SRAM_SIZE; 48 | 49 | /* Caching inhibited SRAM. */ 50 | extern int __MPU_NOCACHE_BASE_ADDR; 51 | extern int __MPU_NOCACHE_SIZE; 52 | 53 | 54 | /* 55 | ********************************************************************************************************* 56 | * BSP_SMPU_Init() 57 | * 58 | * Description : Set up memory regions for the application. 59 | * 60 | * Argument(s) : none. 61 | * 62 | * Return(s) : none. 63 | * 64 | * Note(s) : None. 65 | ********************************************************************************************************* 66 | */ 67 | 68 | void BSP_SMPU_Init (void) 69 | { 70 | int start_addr; 71 | int end_addr; 72 | 73 | start_addr = (int)&__SRAM_BASE_ADDR; 74 | end_addr = (int)&__SRAM_BASE_ADDR + (int)&__SRAM_SIZE - (int)&__MPU_NOCACHE_SIZE - 1u; 75 | 76 | SMPU_0.RGD[0u].WORD0.R = start_addr; /* Start Address. */ 77 | SMPU_0.RGD[0u].WORD1.R = end_addr; /* End Address. */ 78 | SMPU_0.RGD[0u].WORD3.R = 0u; /* Use FMT 0 for the access permissions. */ 79 | SMPU_0.RGD[0u].WORD2.R = 0xFFFFFFFFu; /* R/W access for all bus masters. */ 80 | SMPU_0.RGD[0u].WORD3.B.CI = 0u; /* Enable caching for this region. */ 81 | SMPU_0.RGD[0u].WORD3.B.VLD = 1u; /* The region descriptor is valid. */ 82 | 83 | start_addr = (int)&__MPU_NOCACHE_BASE_ADDR; 84 | end_addr = (int)&__MPU_NOCACHE_BASE_ADDR + (int)&__MPU_NOCACHE_SIZE - 1u; 85 | 86 | SMPU_0.RGD[1u].WORD0.R = start_addr; /* Start Address. */ 87 | SMPU_0.RGD[1u].WORD1.R = end_addr; /* End Address. */ 88 | SMPU_0.RGD[1u].WORD3.R = 0u; /* Use FMT 0 for the access permissions. */ 89 | SMPU_0.RGD[1u].WORD2.R = 0xFFFFFFFFu; /* R/W access for all bus masters. */ 90 | SMPU_0.RGD[1u].WORD3.B.CI = 1u; /* Disable caching for this region. */ 91 | SMPU_0.RGD[1u].WORD3.B.VLD = 1u; /* The region descriptor is valid. */ 92 | 93 | SMPU_0.CESR0.B.GVLD = 1u; /* Enable the MPU. */ 94 | } 95 | 96 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/include/typedefs.h: -------------------------------------------------------------------------------- 1 | /************************************************************************** 2 | * FILE NAME: $RCSfile: typedefs.h,v $ COPYRIGHT (c) Freescale 2005 * 3 | * DESCRIPTION: All Rights Reserved * 4 | * This file defines all of the data types for the Motorola header file. * 5 | *========================================================================* 6 | * ORIGINAL AUTHOR: r12110 * 7 | * $Log: typedefs.h,v $ 8 | * Revision 1.5 2016/05/23 11:20:19 b47769 9 | * Diab compiler compatibility 10 | * 11 | * Revision 1.4 2008/02/19 11:10:09 b04629 12 | * Fixed previous comment. 13 | * 14 | * Revision 1.3 2008/02/19 11:01:43 b04629 15 | * Replaced // comments for MISRA. 16 | * 17 | * Revision 1.2 2007/11/22 13:18:55 b04629 18 | * Removed original author name and replaced with author ID. 19 | * 20 | * Revision 1.1 2007/03/22 08:55:15 b04629 21 | * Imported and updated from MPC55xx Headers Rev 1.9 22 | * * 23 | * * 24 | **************************************************************************/ 25 | 26 | #ifndef _TYPEDEFS_H_ 27 | #define _TYPEDEFS_H_ 28 | #if defined (__GNUC__) /* GCC compiler*/ 29 | #include 30 | /* Short names for volatiles used by header files, based on ISO C standard */ 31 | typedef volatile int8_t vint8_t; 32 | typedef volatile uint8_t vuint8_t; 33 | 34 | typedef volatile int16_t vint16_t; 35 | typedef volatile uint16_t vuint16_t; 36 | 37 | typedef volatile int32_t vint32_t; 38 | typedef volatile uint32_t vuint32_t; 39 | 40 | #elif defined (__MWERKS__) /* Metrowerk CodeWarrior */ 41 | #include 42 | 43 | /* Standard typedefs used by header files, based on ISO C standard */ 44 | typedef volatile int8_t vint8_t; 45 | typedef volatile uint8_t vuint8_t; 46 | 47 | typedef volatile int16_t vint16_t; 48 | typedef volatile uint16_t vuint16_t; 49 | 50 | typedef volatile int32_t vint32_t; 51 | typedef volatile uint32_t vuint32_t; 52 | 53 | #elif defined (__ghs__) /* GreenHills */ 54 | #include 55 | 56 | /* Standard typedefs used by header files, based on ISO C standard */ 57 | typedef volatile int8_t vint8_t; 58 | typedef volatile uint8_t vuint8_t; 59 | 60 | typedef volatile int16_t vint16_t; 61 | typedef volatile uint16_t vuint16_t; 62 | 63 | typedef volatile int32_t vint32_t; 64 | typedef volatile uint32_t vuint32_t; 65 | #else 66 | /* This is needed for compilers that don't have a stdint.h file i.e. DIAB */ 67 | 68 | typedef signed char int8_t; 69 | typedef unsigned char uint8_t; 70 | typedef volatile signed char vint8_t; 71 | typedef volatile unsigned char vuint8_t; 72 | 73 | typedef signed short int16_t; 74 | typedef unsigned short uint16_t; 75 | typedef volatile signed short vint16_t; 76 | typedef volatile unsigned short vuint16_t; 77 | 78 | typedef signed long int32_t; 79 | typedef unsigned long uint32_t; 80 | typedef volatile signed long vint32_t; 81 | typedef volatile unsigned long vuint32_t; 82 | 83 | /* 8-byte Extended type, supported by DIAB */ 84 | typedef long long int64_t; 85 | typedef unsigned long long uint64_t; 86 | 87 | #endif 88 | #endif 89 | 90 | /********************************************************************* 91 | * 92 | * Copyright: 93 | * Freescale Semiconductor, INC. All Rights Reserved. 94 | * You are hereby granted a copyright license to use, modify, and 95 | * distribute the SOFTWARE so long as this entire notice is 96 | * retained without alteration in any modified and/or redistributed 97 | * versions, and that such modified versions are clearly identified 98 | * as such. No licenses are granted by implication, estoppel or 99 | * otherwise under any patents or trademarks of Freescale 100 | * Semiconductor, Inc. This software is provided on an "AS IS" 101 | * basis and without warranty. 102 | * 103 | * To the maximum extent permitted by applicable law, Freescale 104 | * Semiconductor DISCLAIMS ALL WARRANTIES WHETHER EXPRESS OR IMPLIED, 105 | * INCLUDING IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A 106 | * PARTICULAR PURPOSE AND ANY WARRANTY AGAINST INFRINGEMENT WITH 107 | * REGARD TO THE SOFTWARE (INCLUDING ANY MODIFIED VERSIONS THEREOF) 108 | * AND ANY ACCOMPANYING WRITTEN MATERIALS. 109 | * 110 | * To the maximum extent permitted by applicable law, IN NO EVENT 111 | * SHALL Freescale Semiconductor BE LIABLE FOR ANY DAMAGES WHATSOEVER 112 | * (INCLUDING WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, 113 | * BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER 114 | * PECUNIARY LOSS) ARISING OF THE USE OR INABILITY TO USE THE SOFTWARE. 115 | * 116 | * Freescale Semiconductor assumes no responsibility for the 117 | * maintenance and support of this software 118 | * 119 | ********************************************************************/ 120 | 121 | 122 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Project_Settings/Linker_Files/57xx_ram.ld: -------------------------------------------------------------------------------- 1 | /* Entry Point */ 2 | ENTRY(_start) 3 | 4 | /* define heap and stack size */ 5 | __HEAP_SIZE = 0 ; 6 | __STACK_SIZE = 4096 ; 7 | 8 | SRAM_SIZE = 384K; 9 | /* Define SRAM Base Address */ 10 | SRAM_BASE_ADDR = 0x40000000; 11 | 12 | /* Define CPU0 Local Data SRAM Allocation */ 13 | LOCALDMEM_SIZE = 64K; 14 | /* Define CPU0 Local Data SRAM Base Address */ 15 | LOCALDMEM_BASE_ADDR = 0x50800000; 16 | 17 | MEMORY 18 | { 19 | 20 | SRAM : org = 0x40000000, len = 384K 21 | 22 | local_dmem : org = 0x50800000, len = 64K 23 | } 24 | 25 | 26 | SECTIONS 27 | { 28 | .startup : ALIGN(0x400) 29 | { 30 | __start = . ; 31 | *(.startup) 32 | } > SRAM 33 | 34 | .core_exceptions_table : ALIGN(4096) 35 | { 36 | __IVPR_VALUE = . ; 37 | KEEP(*(.core_exceptions_table)) 38 | } > SRAM 39 | 40 | .intc_vector_table : ALIGN(4096) 41 | { 42 | KEEP(*(.intc_vector_table)) 43 | } > SRAM 44 | 45 | .text : 46 | { 47 | *(.text.startup) 48 | *(.text) 49 | *(.text.*) 50 | KEEP (*(.init)) 51 | KEEP (*(.fini)) 52 | . = ALIGN(16); 53 | } > SRAM 54 | 55 | .ctors : 56 | { 57 | __CTOR_LIST__ = .; 58 | /* gcc uses crtbegin.o to find the start of 59 | the constructors, so we make sure it is 60 | first. Because this is a wildcard, it 61 | doesn't matter if the user does not 62 | actually link against crtbegin.o; the 63 | linker won't look for a file to match a 64 | wildcard. The wildcard also means that it 65 | doesn't matter which directory crtbegin.o 66 | is in. */ 67 | KEEP (*crtbegin.o(.ctors)) 68 | KEEP (*crtbegin?.o(.ctors)) 69 | /* We don't want to include the .ctor section from 70 | from the crtend.o file until after the sorted ctors. 71 | The .ctor section from the crtend file contains the 72 | end of ctors marker and it must be last */ 73 | KEEP (*(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)) 74 | KEEP (*(SORT(.ctors.*))) 75 | KEEP (*(.ctors)) 76 | __CTOR_END__ = .; 77 | } > SRAM 78 | 79 | .dtors : 80 | { 81 | __DTOR_LIST__ = .; 82 | KEEP (*crtbegin.o(.dtors)) 83 | KEEP (*crtbegin?.o(.dtors)) 84 | KEEP (*(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)) 85 | KEEP (*(SORT(.dtors.*))) 86 | KEEP (*(.dtors)) 87 | __DTOR_END__ = .; 88 | } > SRAM 89 | 90 | .preinit_array : 91 | { 92 | PROVIDE_HIDDEN (__preinit_array_start = .); 93 | KEEP (*(.preinit_array*)) 94 | PROVIDE_HIDDEN (__preinit_array_end = .); 95 | } > SRAM 96 | 97 | .init_array : 98 | { 99 | PROVIDE_HIDDEN (__init_array_start = .); 100 | KEEP (*(SORT(.init_array.*))) 101 | KEEP (*(.init_array*)) 102 | PROVIDE_HIDDEN (__init_array_end = .); 103 | } > SRAM 104 | 105 | .fini_array : 106 | { 107 | PROVIDE_HIDDEN (__fini_array_start = .); 108 | KEEP (*(SORT(.fini_array.*))) 109 | KEEP (*(.fini_array*)) 110 | PROVIDE_HIDDEN (__fini_array_end = .); 111 | } > SRAM 112 | 113 | .rodata : 114 | { 115 | *(.rodata) 116 | *(.rodata.*) 117 | } > SRAM 118 | 119 | .eh_frame_hdr : { *(.eh_frame_hdr) } > SRAM 120 | .eh_frame : { KEEP (*(.eh_frame)) } > SRAM 121 | 122 | .data : 123 | { 124 | *(.data) 125 | *(.data.*) 126 | } > SRAM 127 | 128 | .sdata2 : 129 | { 130 | *(.sdata2) 131 | *(.sdata2.*) 132 | } > SRAM 133 | 134 | .sbss2 (NOLOAD) : 135 | { 136 | /* _SDA2_BASE_ = .; */ 137 | *(.sbss2) 138 | *(.sbss2.*) 139 | } > SRAM 140 | 141 | .sdata : 142 | { 143 | *(.sdata) 144 | *(.sdata.*) 145 | } > SRAM 146 | 147 | .bss (NOLOAD) : 148 | { 149 | __BSS_START = .; 150 | *(.sbss) 151 | *(.sbss.*) 152 | *(.bss) 153 | *(.bss.*) 154 | *(COMMON) 155 | __BSS_END = .; 156 | } > SRAM 157 | 158 | .stack (NOLOAD) : ALIGN(16) 159 | { 160 | __HEAP = . ; 161 | PROVIDE (_end = . ); 162 | PROVIDE (end = . ); 163 | . += __HEAP_SIZE ; 164 | __HEAP_END = . ; 165 | _stack_end = . ; 166 | . += __STACK_SIZE ; 167 | _stack_addr = . ; 168 | __SP_INIT = . ; 169 | . += 4; 170 | } > local_dmem 171 | 172 | /*-------- LABELS USED IN CODE -------------------------------*/ 173 | 174 | /* Labels for Copying Initialised Data from Flash to RAM */ 175 | __DATA_SRAM_ADDR = ADDR(.data); 176 | __SDATA_SRAM_ADDR = ADDR(.sdata); 177 | 178 | __DATA_SIZE = SIZEOF(.data); 179 | __SDATA_SIZE = SIZEOF(.sdata); 180 | 181 | __DATA_ROM_ADDR = LOADADDR(.data); 182 | __SDATA_ROM_ADDR = LOADADDR(.sdata); 183 | 184 | /* Labels Used for Initialising SRAM ECC */ 185 | __SRAM_SIZE = SRAM_SIZE; 186 | __SRAM_BASE_ADDR = SRAM_BASE_ADDR; 187 | 188 | __LOCAL_DMEM_SIZE = LOCALDMEM_SIZE; 189 | __LOCAL_DMEM_BASE_ADDR = LOCALDMEM_BASE_ADDR; 190 | 191 | __BSS_SIZE = __BSS_END - __BSS_START; 192 | 193 | } 194 | 195 | 196 | 197 | 198 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/include/bsp_led.h: -------------------------------------------------------------------------------- 1 | /* 2 | ********************************************************************************************************* 3 | * EXAMPLE CODE 4 | * 5 | * This file is provided as an example on how to use Micrium products. 6 | * 7 | * Please feel free to use any application code labeled as 'EXAMPLE CODE' in 8 | * your application products. Example code may be used as is, in whole or in 9 | * part, or may be used as a reference only. This file can be modified as 10 | * required to meet the end-product requirements. 11 | * 12 | * Please help us continue to provide the Embedded community with the finest 13 | * software available. Your honesty is greatly appreciated. 14 | * 15 | * You can find our product's user manual, API reference, release notes and 16 | * more information at https://doc.micrium.com. 17 | * You can contact us at www.micrium.com. 18 | ********************************************************************************************************* 19 | */ 20 | 21 | /* 22 | ********************************************************************************************************* 23 | * 24 | * MICRIUM BOARD SUPPORT PACKAGE 25 | * MPC574xG-324DS 26 | * 27 | * Filename : bsp_led.h 28 | ********************************************************************************************************* 29 | */ 30 | 31 | /* 32 | ********************************************************************************************************* 33 | * MODULE 34 | * 35 | * Note(s) : (1) This header file is protected from multiple pre-processor inclusion through use of the 36 | * BSP present pre-processor macro definition. 37 | ********************************************************************************************************* 38 | */ 39 | 40 | #ifndef BSP_LED_PRESENT 41 | #define BSP_LED_PRESENT 42 | 43 | 44 | /* 45 | ********************************************************************************************************* 46 | * INCLUDE FILES 47 | ********************************************************************************************************* 48 | */ 49 | 50 | 51 | /* 52 | ********************************************************************************************************* 53 | * EXTERNAL C LANGUAGE LINKAGE 54 | * 55 | * Note(s) : (1) C++ compilers MUST 'extern'ally declare ALL C function prototypes & variable/object 56 | * declarations for correct C language linkage. 57 | ********************************************************************************************************* 58 | */ 59 | 60 | #ifdef __cplusplus 61 | extern "C" { /* See Note #1. */ 62 | #endif 63 | 64 | 65 | /* 66 | ********************************************************************************************************* 67 | * DEFINES 68 | ********************************************************************************************************* 69 | */ 70 | 71 | 72 | /* 73 | ********************************************************************************************************* 74 | * DATA TYPES 75 | ********************************************************************************************************* 76 | */ 77 | /* Board LEDs. */ 78 | typedef enum bsp_led { 79 | USR_LED_ALL, 80 | USR_LED1, 81 | USR_LED2, 82 | USR_LED3, 83 | USR_LED4 84 | } BSP_LED; 85 | 86 | 87 | /* 88 | ********************************************************************************************************* 89 | * FUNCTION PROTOTYPES 90 | ********************************************************************************************************* 91 | */ 92 | 93 | void BSP_LED_Init (void); 94 | 95 | void BSP_LED_On (BSP_LED led); 96 | 97 | void BSP_LED_Off (BSP_LED led); 98 | 99 | void BSP_LED_Toggle(BSP_LED led); 100 | 101 | 102 | /* 103 | ********************************************************************************************************* 104 | * EXTERNAL C LANGUAGE LINKAGE END 105 | ********************************************************************************************************* 106 | */ 107 | 108 | #ifdef __cplusplus 109 | } /* End of 'extern'al C lang linkage. */ 110 | #endif 111 | 112 | 113 | /* 114 | ********************************************************************************************************* 115 | * MODULE END 116 | ********************************************************************************************************* 117 | */ 118 | 119 | #endif /* End of module include. */ 120 | 121 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/include/bsp_int.h: -------------------------------------------------------------------------------- 1 | /* 2 | ********************************************************************************************************* 3 | * EXAMPLE CODE 4 | * 5 | * This file is provided as an example on how to use Micrium products. 6 | * 7 | * Please feel free to use any application code labeled as 'EXAMPLE CODE' in 8 | * your application products. Example code may be used as is, in whole or in 9 | * part, or may be used as a reference only. This file can be modified as 10 | * required to meet the end-product requirements. 11 | * 12 | * Please help us continue to provide the Embedded community with the finest 13 | * software available. Your honesty is greatly appreciated. 14 | * 15 | * You can find our product's user manual, API reference, release notes and 16 | * more information at https://doc.micrium.com. 17 | * You can contact us at www.micrium.com. 18 | ********************************************************************************************************* 19 | */ 20 | 21 | /* 22 | ********************************************************************************************************* 23 | * 24 | * MICRIUM BOARD SUPPORT PACKAGE 25 | * MPC574xG-324DS 26 | * 27 | * Filename : bsp_int.h 28 | ********************************************************************************************************* 29 | */ 30 | 31 | /* 32 | ********************************************************************************************************* 33 | * MODULE 34 | * 35 | * Note(s) : (1) This header file is protected from multiple pre-processor inclusion through use of the 36 | * BSP present pre-processor macro definition. 37 | ********************************************************************************************************* 38 | */ 39 | 40 | #ifndef BSP_INT_PRESENT 41 | #define BSP_INT_PRESENT 42 | 43 | 44 | /* 45 | ********************************************************************************************************* 46 | * INCLUDE FILES 47 | ********************************************************************************************************* 48 | */ 49 | 50 | #include 51 | #include 52 | #include 53 | 54 | 55 | /* 56 | ********************************************************************************************************* 57 | * EXTERNS 58 | ********************************************************************************************************* 59 | */ 60 | 61 | #ifdef BSP_INT_MODULE 62 | #define BSP_INT_EXT 63 | #else 64 | #define BSP_INT_EXT extern 65 | #endif 66 | 67 | 68 | /* 69 | ********************************************************************************************************* 70 | * DEFINES 71 | ********************************************************************************************************* 72 | */ 73 | 74 | 75 | /* 76 | ********************************************************************************************************* 77 | * GLOBAL VARIABLES 78 | ********************************************************************************************************* 79 | */ 80 | 81 | 82 | /* 83 | ********************************************************************************************************* 84 | * STRUCTURES 85 | ********************************************************************************************************* 86 | */ 87 | 88 | 89 | /* 90 | ********************************************************************************************************* 91 | * FUNCTION PROTOTYPES 92 | ********************************************************************************************************* 93 | */ 94 | 95 | 96 | /* 97 | ********************************************************************************************************* 98 | * INTERRUPT SERVICES 99 | ********************************************************************************************************* 100 | */ 101 | 102 | void BSP_IntInit (void); 103 | 104 | void BSP_IntEn (CPU_INT16U int_id); 105 | void BSP_IntDis (CPU_INT16U int_id); 106 | void BSP_IntClr (CPU_INT16U int_id); 107 | 108 | void BSP_IntVectSet (CPU_INT16U int_id, 109 | CPU_FNCT_VOID isr, 110 | CPU_BOOLEAN isKA); 111 | 112 | void BSP_IntPrioSet (CPU_INT16U int_id, 113 | CPU_INT08U prio); 114 | 115 | void BSP_IntPrioMaskSet(CPU_INT08U prio); 116 | 117 | 118 | /* 119 | ********************************************************************************************************* 120 | * MODULE END 121 | ********************************************************************************************************* 122 | */ 123 | 124 | #endif /* End of module include. */ 125 | 126 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/src/cpu_a.S: -------------------------------------------------------------------------------- 1 | #******************************************************************************************************** 2 | #* uC/CPU 3 | #* CPU CONFIGURATION & PORT LAYER 4 | #* 5 | #* (c) Copyright 2004-2017; Micrium, Inc.; Weston, FL 6 | #* 7 | #* All rights reserved. Protected by international copyright laws. 8 | #* 9 | #* uC/CPU is provided in source form to registered licensees ONLY. It is 10 | #* illegal to distribute this source code to any third party unless you receive 11 | #* written permission by an authorized Micrium representative. Knowledge of 12 | #* the source code may NOT be used to develop a similar product. 13 | #* 14 | #* Please help us continue to provide the Embedded community with the finest 15 | #* software available. Your honesty is greatly appreciated. 16 | #* 17 | #* You can find our product's user manual, API reference, release notes and 18 | #* more information at https://doc.micrium.com. 19 | #* You can contact us at www.micrium.com. 20 | #******************************************************************************************************** 21 | 22 | #******************************************************************************************************** 23 | #* 24 | #* CPU PORT FILE 25 | #* 26 | #* NXP MPC57xx-VLE 27 | #* 28 | #* Filename : cpu_a.s 29 | #* Version : V1.31.02 30 | #* Programmer(s) : FGK 31 | #* ITJ 32 | #* SB 33 | #******************************************************************************************************** 34 | 35 | 36 | #******************************************************************************************************** 37 | #* ASM HEADER 38 | #******************************************************************************************************** 39 | 40 | .text 41 | 42 | #******************************************************************************************************** 43 | # PUBLIC DECLARATIONS 44 | #******************************************************************************************************** 45 | 46 | .global CPU_SR_Save 47 | .global CPU_SR_Restore 48 | .global CPU_SR_Rd 49 | .global CPU_IntDis 50 | .global CPU_IntEn 51 | 52 | 53 | #******************************************************************************************************** 54 | #* CRITICAL SECTION FUNCTIONS 55 | #* 56 | #* Description : These functions are used to enter and exit critical sections using Critical Method #3. 57 | #* 58 | #* CPU_SR CPU_SR_Save (void) 59 | #* Get current global interrupt mask bit value from MSR 60 | #* Disable interrupts 61 | #* Return global interrupt mask bit 62 | #* 63 | #* void CPU_SR_Restore (CPU_SR cpu_sr) 64 | #* Set global interrupt mask bit on MSR according to parameter cpu_sr 65 | #* Return 66 | #* 67 | #* Argument(s) : cpu_sr global interrupt mask status. 68 | #******************************************************************************************************** 69 | 70 | CPU_SR_Save: 71 | mfmsr r3 72 | wrteei 0 73 | se_blr 74 | 75 | CPU_SR_Restore: 76 | wrtee r3 77 | se_blr 78 | 79 | 80 | #******************************************************************************************************** 81 | #* READ STATUS REGISTER FUNCTION 82 | #* 83 | #* Description : This function is used to retrieve the status register value. 84 | #* 85 | #* CPU_SR CPU_SR_Rd (void) 86 | #* Get current MSR value 87 | #* Return 88 | #******************************************************************************************************** 89 | 90 | CPU_SR_Rd: 91 | mfmsr r3 92 | se_blr 93 | 94 | 95 | #******************************************************************************************************** 96 | #* DISABLE/ENABLE INTERRUPTS 97 | #* 98 | #* Description : Disable/Enable interrupts by setting or clearing the global interrupt mask in the cpu 99 | #* status register. 100 | #* 101 | #* void CPU_IntDis (void) 102 | #* Set global interrupt mask bit on MSR 103 | #* Return 104 | #* 105 | #* void CPU_IntEn (void) 106 | #* Clear global interrupt mask bit on MSR 107 | #* Return 108 | #******************************************************************************************************** 109 | 110 | CPU_IntDis: 111 | wrteei 0 112 | se_blr 113 | 114 | 115 | CPU_IntEn: 116 | wrteei 1 117 | se_blr 118 | 119 | 120 | #******************************************************************************************************** 121 | #* CPU ASSEMBLY PORT FILE END 122 | #******************************************************************************************************** 123 | .end 124 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/bsp_int.d: -------------------------------------------------------------------------------- 1 | src/bsp_int.o: ../src/bsp_int.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/MPC5744P.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/typedefs.h \ 7 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdint.h \ 8 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 9 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 10 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdint \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/limits_api.h \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h \ 16 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_int.h \ 17 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h \ 18 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h \ 19 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h \ 20 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h \ 21 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os.h \ 22 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h \ 23 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h \ 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h \ 25 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg \ 26 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h \ 27 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h \ 28 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h \ 29 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio \ 30 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef \ 31 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h \ 32 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h \ 33 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h \ 34 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h \ 35 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h \ 36 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h \ 37 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h \ 38 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h \ 39 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h \ 40 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_os.h 41 | 42 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 43 | 44 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 45 | 46 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 47 | 48 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/MPC5744P.h: 49 | 50 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/typedefs.h: 51 | 52 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdint.h: 53 | 54 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 55 | 56 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 57 | 58 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 59 | 60 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 61 | 62 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdint: 63 | 64 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/limits_api.h: 65 | 66 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 67 | 68 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 69 | 70 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_int.h: 71 | 72 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h: 73 | 74 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h: 75 | 76 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h: 77 | 78 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h: 79 | 80 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os.h: 81 | 82 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h: 83 | 84 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h: 85 | 86 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h: 87 | 88 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg: 89 | 90 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h: 91 | 92 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h: 93 | 94 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h: 95 | 96 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio: 97 | 98 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef: 99 | 100 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h: 101 | 102 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h: 103 | 104 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h: 105 | 106 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h: 107 | 108 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h: 109 | 110 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h: 111 | 112 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h: 113 | 114 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h: 115 | 116 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h: 117 | 118 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_os.h: 119 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/bsp_os.d: -------------------------------------------------------------------------------- 1 | src/bsp_os.o: ../src/bsp_os.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h \ 7 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h \ 8 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os.h \ 9 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h \ 10 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h \ 11 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h \ 12 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 13 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 14 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg \ 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h \ 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h \ 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h \ 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio \ 21 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef \ 22 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h \ 23 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h \ 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h \ 25 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 26 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h \ 27 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h \ 28 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h \ 29 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h \ 30 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h \ 31 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h \ 32 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h \ 33 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h \ 34 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_os.h \ 35 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_int.h \ 36 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/MPC5744P.h \ 37 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/typedefs.h \ 38 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdint.h \ 39 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdint \ 40 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/limits_api.h 41 | 42 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 43 | 44 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 45 | 46 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 47 | 48 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h: 49 | 50 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h: 51 | 52 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h: 53 | 54 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os.h: 55 | 56 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h: 57 | 58 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h: 59 | 60 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h: 61 | 62 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 63 | 64 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 65 | 66 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 67 | 68 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 69 | 70 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg: 71 | 72 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h: 73 | 74 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h: 75 | 76 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h: 77 | 78 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio: 79 | 80 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef: 81 | 82 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h: 83 | 84 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h: 85 | 86 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 87 | 88 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 89 | 90 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h: 91 | 92 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h: 93 | 94 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h: 95 | 96 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h: 97 | 98 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h: 99 | 100 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h: 101 | 102 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h: 103 | 104 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h: 105 | 106 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_os.h: 107 | 108 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_int.h: 109 | 110 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/MPC5744P.h: 111 | 112 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/typedefs.h: 113 | 114 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdint.h: 115 | 116 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdint: 117 | 118 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/limits_api.h: 119 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Debug/src/main.d: -------------------------------------------------------------------------------- 1 | src/main.o: ../src/main.c \ 2 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix \ 3 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix \ 4 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h \ 5 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h \ 6 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h \ 7 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h \ 8 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_mem.h \ 9 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_core.h \ 10 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h \ 11 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_cfg.h \ 12 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os.h \ 13 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h \ 14 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h \ 15 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h \ 16 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h \ 17 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h \ 18 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h \ 19 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h \ 20 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg \ 21 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h \ 22 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h \ 23 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h \ 24 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio \ 25 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef \ 26 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h \ 27 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h \ 28 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h \ 29 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h \ 30 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h \ 31 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h \ 32 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h \ 33 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h \ 34 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h \ 35 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h \ 36 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h \ 37 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_clk.h \ 38 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_os.h \ 39 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_led.h \ 40 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_int.h \ 41 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_smpu.h 42 | 43 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/lib_c99.prefix: 44 | 45 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/common.prefix: 46 | 47 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_c_version.h: 48 | 49 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu.h: 50 | 51 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_def.h: 52 | 53 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_cfg.h: 54 | 55 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_mem.h: 56 | 57 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/cpu_core.h: 58 | 59 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_def.h: 60 | 61 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/lib_cfg.h: 62 | 63 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os.h: 64 | 65 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/ucos_ii.h: 66 | 67 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/app_cfg.h: 68 | 69 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdarg.h: 70 | 71 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ansi_parms.h: 72 | 73 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewlGlobals.h: 74 | 75 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/ansi_prefix.PA_EABI.bare.h: 76 | 77 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/os_enum.h: 78 | 79 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdarg: 80 | 81 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/va_list.h: 82 | 83 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/pa/stdarg.EPPC.h: 84 | 85 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio.h: 86 | 87 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstdio: 88 | 89 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/cstddef: 90 | 91 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/null.h: 92 | 93 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/size_t.h: 94 | 95 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/wchar_t.h: 96 | 97 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_lib_ext1.h: 98 | 99 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/ewl_rsize_t.h: 100 | 101 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/eof.h: 102 | 103 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/file_struc.h: 104 | 105 | D:/NXP/S32DS_Power_v1.2/S32DS/e200_ewl2/EWL_C/include/stdio_api.h: 106 | 107 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cfg.h: 108 | 109 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_cpu.h: 110 | 111 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/os_trace.h: 112 | 113 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_clk.h: 114 | 115 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_os.h: 116 | 117 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_led.h: 118 | 119 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_int.h: 120 | 121 | C:/Users/uu/Desktop/MPC5744/UCOS_II_MPC5744/include/bsp_smpu.h: 122 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/include/cpu_cache.h: -------------------------------------------------------------------------------- 1 | /* 2 | ********************************************************************************************************* 3 | * uC/CPU 4 | * CPU CONFIGURATION & PORT LAYER 5 | * 6 | * (c) Copyright 2004-2017; Micrium, Inc.; Weston, FL 7 | * 8 | * All rights reserved. Protected by international copyright laws. 9 | * 10 | * uC/CPU is provided in source form to registered licensees ONLY. It is 11 | * illegal to distribute this source code to any third party unless you receive 12 | * written permission by an authorized Micrium representative. Knowledge of 13 | * the source code may NOT be used to develop a similar product. 14 | * 15 | * Please help us continue to provide the Embedded community with the finest 16 | * software available. Your honesty is greatly appreciated. 17 | * 18 | * You can find our product's user manual, API reference, release notes and 19 | * more information at doc.micrium.com. 20 | * You can contact us at www.micrium.com. 21 | ********************************************************************************************************* 22 | */ 23 | 24 | /* 25 | ********************************************************************************************************* 26 | * 27 | * CACHE CPU MODULE 28 | * 29 | * Filename : cpu_cache.h 30 | * Version : V1.31.02 31 | * Programmer(s) : JBL 32 | ********************************************************************************************************* 33 | */ 34 | 35 | 36 | /* 37 | ********************************************************************************************************* 38 | * MODULE 39 | * 40 | * Note(s) : (1) This cache CPU header file is protected from multiple pre-processor inclusion through use of 41 | * the cache CPU module present pre-processor macro definition. 42 | ********************************************************************************************************* 43 | */ 44 | 45 | #ifndef CPU_CACHE_MODULE_PRESENT /* See Note #1. */ 46 | #define CPU_CACHE_MODULE_PRESENT 47 | 48 | 49 | /* 50 | ********************************************************************************************************* 51 | * EXTERNS 52 | ********************************************************************************************************* 53 | */ 54 | 55 | #ifdef CPU_CACHE_MODULE 56 | #define CPU_CACHE_EXT 57 | #else 58 | #define CPU_CACHE_EXT extern 59 | #endif 60 | 61 | 62 | /* 63 | ********************************************************************************************************* 64 | * INCLUDE FILES 65 | ********************************************************************************************************* 66 | */ 67 | 68 | #include 69 | #include 70 | #include 71 | 72 | 73 | /* 74 | ********************************************************************************************************* 75 | * CACHE CONFIGURATION 76 | ********************************************************************************************************* 77 | */ 78 | 79 | #ifndef CPU_CFG_CACHE_MGMT_EN 80 | #define CPU_CFG_CACHE_MGMT_EN DEF_DISABLED 81 | #endif 82 | 83 | 84 | /* 85 | ********************************************************************************************************* 86 | * CACHE OPERATIONS DEFINES 87 | ********************************************************************************************************* 88 | */ 89 | 90 | #if (CPU_CFG_CACHE_MGMT_EN == DEF_ENABLED) 91 | #ifndef CPU_DCACHE_RANGE_FLUSH 92 | #define CPU_DCACHE_RANGE_FLUSH(addr_start, len) CPU_DCache_RangeFlush(addr_start, len) 93 | #endif /* CPU_DCACHE_RANGE_FLUSH */ 94 | #else 95 | #define CPU_DCACHE_RANGE_FLUSH(addr_start, len) 96 | #endif /* CPU_CFG_CACHE_MGMT_EN) */ 97 | 98 | 99 | #if (CPU_CFG_CACHE_MGMT_EN == DEF_ENABLED) 100 | #ifndef CPU_DCACHE_RANGE_INV 101 | #define CPU_DCACHE_RANGE_INV(addr_start, len) CPU_DCache_RangeInv(addr_start, len) 102 | #endif /* CPU_DCACHE_RANGE_INV */ 103 | #else 104 | #define CPU_DCACHE_RANGE_INV(addr_start, len) 105 | #endif /* CPU_CFG_CACHE_MGMT_EN) */ 106 | 107 | 108 | /* 109 | ********************************************************************************************************* 110 | * FUNCTION PROTOTYPES 111 | ********************************************************************************************************* 112 | */ 113 | 114 | #if (CPU_CFG_CACHE_MGMT_EN == DEF_ENABLED) 115 | 116 | #ifdef __cplusplus 117 | extern "C" { 118 | #endif 119 | 120 | void CPU_Cache_Init (void); 121 | 122 | void CPU_DCache_RangeFlush(void *addr_start, 123 | CPU_ADDR len); 124 | 125 | void CPU_DCache_RangeInv (void *addr_start, 126 | CPU_ADDR len); 127 | 128 | #ifdef __cplusplus 129 | } 130 | #endif 131 | 132 | #endif /* CPU_CFG_CACHE_MGMT_EN */ 133 | 134 | 135 | /* 136 | ********************************************************************************************************* 137 | * MODULE END 138 | * 139 | * Note(s) : (1) See 'cpu_core.h MODULE'. 140 | ********************************************************************************************************* 141 | */ 142 | 143 | #endif /* End of CPU core module include. */ 144 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/Project_Settings/Linker_Files/57xx_flash.ld: -------------------------------------------------------------------------------- 1 | /* Entry Point */ 2 | ENTRY(_start) 3 | 4 | /* define heap and stack size */ 5 | __HEAP_SIZE = 0 ; 6 | __STACK_SIZE = 4096 ; 7 | 8 | SRAM_SIZE = 384K; 9 | /* Define SRAM Base Address */ 10 | SRAM_BASE_ADDR = 0x40000000; 11 | 12 | /* Define CPU0 Local Data SRAM Allocation */ 13 | LOCALDMEM_SIZE = 64K; 14 | /* Define CPU0 Local Data SRAM Base Address */ 15 | LOCALDMEM_BASE_ADDR = 0x50800000; 16 | /* Define Caching Inhibited RAM Base Address */ 17 | MPU_NOCACHE_BASE_ADDR = 0x4003E000; 18 | MPU_NOCACHE_SIZE = 8K; 19 | 20 | MEMORY 21 | { 22 | 23 | flash_rchw : org = 0x00FA0000, len = 0x4 24 | cpu0_reset_vec : org = 0x00FA0004, len = 0x4 25 | 26 | m_text : org = 0x1000000, len = 2048K 27 | m_data : org = 0x40000000, len = 384K 28 | 29 | local_dmem : org = 0x50800000, len = 64K 30 | } 31 | 32 | 33 | SECTIONS 34 | { 35 | .rchw : 36 | { 37 | KEEP(*(.rchw)) 38 | } > flash_rchw 39 | 40 | .cpu0_reset_vector : 41 | { 42 | KEEP(*(.cpu0_reset_vector)) 43 | } > cpu0_reset_vec 44 | 45 | .startup : ALIGN(0x400) 46 | { 47 | __start = . ; 48 | *(.startup) 49 | } > m_text 50 | 51 | .core_exceptions_table : ALIGN(4096) 52 | { 53 | __IVPR_VALUE = . ; 54 | KEEP(*(.core_exceptions_table)) 55 | } > m_text 56 | 57 | .intc_vector_table : ALIGN(4096) 58 | { 59 | KEEP(*(.intc_vector_table)) 60 | } > m_text 61 | 62 | .text : 63 | { 64 | *(.text.startup) 65 | *(.text) 66 | *(.text.*) 67 | KEEP (*(.init)) 68 | KEEP (*(.fini)) 69 | . = ALIGN(16); 70 | } > m_text 71 | 72 | .ctors : 73 | { 74 | __CTOR_LIST__ = .; 75 | /* gcc uses crtbegin.o to find the start of 76 | the constructors, so we make sure it is 77 | first. Because this is a wildcard, it 78 | doesn't matter if the user does not 79 | actually link against crtbegin.o; the 80 | linker won't look for a file to match a 81 | wildcard. The wildcard also means that it 82 | doesn't matter which directory crtbegin.o 83 | is in. */ 84 | KEEP (*crtbegin.o(.ctors)) 85 | KEEP (*crtbegin?.o(.ctors)) 86 | /* We don't want to include the .ctor section from 87 | from the crtend.o file until after the sorted ctors. 88 | The .ctor section from the crtend file contains the 89 | end of ctors marker and it must be last */ 90 | KEEP (*(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)) 91 | KEEP (*(SORT(.ctors.*))) 92 | KEEP (*(.ctors)) 93 | __CTOR_END__ = .; 94 | } > m_text 95 | 96 | .dtors : 97 | { 98 | __DTOR_LIST__ = .; 99 | KEEP (*crtbegin.o(.dtors)) 100 | KEEP (*crtbegin?.o(.dtors)) 101 | KEEP (*(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)) 102 | KEEP (*(SORT(.dtors.*))) 103 | KEEP (*(.dtors)) 104 | __DTOR_END__ = .; 105 | } > m_text 106 | 107 | .preinit_array : 108 | { 109 | PROVIDE_HIDDEN (__preinit_array_start = .); 110 | KEEP (*(.preinit_array*)) 111 | PROVIDE_HIDDEN (__preinit_array_end = .); 112 | } > m_text 113 | 114 | .init_array : 115 | { 116 | PROVIDE_HIDDEN (__init_array_start = .); 117 | KEEP (*(SORT(.init_array.*))) 118 | KEEP (*(.init_array*)) 119 | PROVIDE_HIDDEN (__init_array_end = .); 120 | } > m_text 121 | 122 | .fini_array : 123 | { 124 | PROVIDE_HIDDEN (__fini_array_start = .); 125 | KEEP (*(SORT(.fini_array.*))) 126 | KEEP (*(.fini_array*)) 127 | PROVIDE_HIDDEN (__fini_array_end = .); 128 | } > m_text 129 | 130 | .rodata : 131 | { 132 | *(.rodata) 133 | *(.rodata.*) 134 | } > m_text 135 | 136 | .eh_frame_hdr : { *(.eh_frame_hdr) } > m_text 137 | .eh_frame : { KEEP (*(.eh_frame)) } > m_text 138 | 139 | .data : 140 | { 141 | *(.data) 142 | *(.data.*) 143 | } > m_data AT>m_text 144 | 145 | .sdata2 : 146 | { 147 | *(.sdata2) 148 | *(.sdata2.*) 149 | } > m_data AT>m_text 150 | 151 | .sbss2 (NOLOAD) : 152 | { 153 | /* _SDA2_BASE_ = .; */ 154 | *(.sbss2) 155 | *(.sbss2.*) 156 | } > m_data 157 | 158 | .sdata : 159 | { 160 | *(.sdata) 161 | *(.sdata.*) 162 | } > m_data AT>m_text 163 | 164 | .bss (NOLOAD) : 165 | { 166 | __BSS_START = .; 167 | *(.sbss) 168 | *(.sbss.*) 169 | *(.bss) 170 | *(.bss.*) 171 | *(COMMON) 172 | __BSS_END = .; 173 | } > m_data 174 | 175 | .stack (NOLOAD) : ALIGN(16) 176 | { 177 | __HEAP = . ; 178 | PROVIDE (_end = . ); 179 | PROVIDE (end = . ); 180 | . += __HEAP_SIZE ; 181 | __HEAP_END = . ; 182 | _stack_end = . ; 183 | . += __STACK_SIZE ; 184 | _stack_addr = . ; 185 | __SP_INIT = . ; 186 | . += 4; 187 | } > local_dmem 188 | 189 | /*-------- LABELS USED IN CODE -------------------------------*/ 190 | 191 | /* Labels for Copying Initialised Data from Flash to RAM */ 192 | __DATA_SRAM_ADDR = ADDR(.data); 193 | __SDATA_SRAM_ADDR = ADDR(.sdata); 194 | 195 | __DATA_SIZE = SIZEOF(.data); 196 | __SDATA_SIZE = SIZEOF(.sdata); 197 | 198 | __DATA_ROM_ADDR = LOADADDR(.data); 199 | __SDATA_ROM_ADDR = LOADADDR(.sdata); 200 | 201 | /* Labels Used for Initialising SRAM ECC */ 202 | __SRAM_SIZE = SRAM_SIZE; 203 | __SRAM_BASE_ADDR = SRAM_BASE_ADDR; 204 | 205 | __LOCAL_DMEM_SIZE = LOCALDMEM_SIZE; 206 | __LOCAL_DMEM_BASE_ADDR = LOCALDMEM_BASE_ADDR; 207 | 208 | __MPU_NOCACHE_BASE_ADDR = MPU_NOCACHE_BASE_ADDR; 209 | __MPU_NOCACHE_SIZE = MPU_NOCACHE_SIZE; 210 | 211 | __BSS_SIZE = __BSS_END - __BSS_START; 212 | 213 | } 214 | 215 | 216 | 217 | 218 | -------------------------------------------------------------------------------- /UCOS_II_MPC5744/src/main.c: -------------------------------------------------------------------------------- 1 | /* 2 | ********************************************************************************************************* 3 | * EXAMPLE CODE 4 | * 5 | * This file is provided as an example on how to use Micrium products. 6 | * 7 | * Please feel free to use any application code labeled as 'EXAMPLE CODE' in 8 | * your application products. Example code may be used as is, in whole or in 9 | * part, or may be used as a reference only. This file can be modified as 10 | * required to meet the end-product requirements. 11 | * 12 | * Please help us continue to provide the Embedded community with the finest 13 | * software available. Your honesty is greatly appreciated. 14 | * 15 | * You can find our product's user manual, API reference, release notes and 16 | * more information at https://doc.micrium.com. 17 | * You can contact us at www.micrium.com. 18 | ********************************************************************************************************* 19 | */ 20 | 21 | /* 22 | ********************************************************************************************************* 23 | * 24 | * uC/OS-II 25 | * EXAMPLE CODE 26 | * 27 | * Filename : main.c 28 | ********************************************************************************************************* 29 | */ 30 | 31 | /* 32 | ********************************************************************************************************* 33 | * INCLUDE FILES 34 | ********************************************************************************************************* 35 | */ 36 | 37 | #include 38 | #include 39 | #include 40 | #include 41 | #include 42 | #include 43 | #include 44 | #include 45 | 46 | #include "app_cfg.h" 47 | 48 | 49 | /* 50 | ********************************************************************************************************* 51 | * LOCAL DEFINES 52 | ********************************************************************************************************* 53 | */ 54 | 55 | 56 | /* 57 | ********************************************************************************************************* 58 | * LOCAL GLOBAL VARIABLES 59 | ********************************************************************************************************* 60 | */ 61 | 62 | static OS_STK StartupTaskStk[APP_CFG_STARTUP_TASK_STK_SIZE]; 63 | 64 | 65 | /* 66 | ********************************************************************************************************* 67 | * FUNCTION PROTOTYPES 68 | ********************************************************************************************************* 69 | */ 70 | 71 | static void StartupTask(void *p_arg); 72 | extern void xcptn_xmpl(void); 73 | 74 | 75 | /* 76 | ********************************************************************************************************* 77 | * main() 78 | * 79 | * Description : This is the standard entry point for C code. It is assumed that your code will call 80 | * main() once you have performed all necessary initialization. 81 | * 82 | * Arguments : none 83 | * 84 | * Returns : none 85 | * 86 | * Notes : none 87 | ********************************************************************************************************* 88 | */ 89 | 90 | int main (void) 91 | { 92 | #if OS_TASK_NAME_EN > 0u 93 | CPU_INT08U os_err; 94 | #endif 95 | 96 | //BSP_SMPU_Init(); /* Set up MPU memory regions. */ 97 | 98 | BSP_ClkInit(); /* Initialize the main clock */ 99 | BSP_IntInit(); /* Initialize the interrupt controller. */ 100 | BSP_OS_TickInit(); /* Initialize kernel tick timer */ 101 | 102 | Mem_Init(); /* Initialize Memory Managment Module */ 103 | CPU_IntDis(); /* Disable all Interrupts */ 104 | CPU_Init(); /* Initialize the uC/CPU services */ 105 | 106 | xcptn_xmpl(); 107 | 108 | OSInit(); /* Initialize uC/OS-II */ 109 | 110 | OSTaskCreateExt( StartupTask, /* Create the startup task */ 111 | 0, 112 | &StartupTaskStk[APP_CFG_STARTUP_TASK_STK_SIZE - 1u], 113 | APP_CFG_STARTUP_TASK_PRIO, 114 | APP_CFG_STARTUP_TASK_PRIO, 115 | &StartupTaskStk[0u], 116 | APP_CFG_STARTUP_TASK_STK_SIZE, 117 | 0u, 118 | (OS_TASK_OPT_STK_CHK | OS_TASK_OPT_STK_CLR)); 119 | 120 | #if OS_TASK_NAME_EN > 0u 121 | OSTaskNameSet( APP_CFG_STARTUP_TASK_PRIO, 122 | (INT8U *)"Startup Task", 123 | &os_err); 124 | #endif 125 | OSStart(); /* Start multitasking (i.e. give control to uC/OS-II) */ 126 | 127 | while (DEF_ON) { /* Should Never Get Here. */ 128 | ; 129 | } 130 | } 131 | 132 | 133 | /* 134 | ********************************************************************************************************* 135 | * STARTUP TASK 136 | * 137 | * Description : This is an example of a startup task. As mentioned in the book's text, you MUST 138 | * initialize the ticker only once multitasking has started. 139 | * 140 | * Arguments : p_arg is the argument passed to 'StartupTask()' by 'OSTaskCreate()'. 141 | * 142 | * Returns : none 143 | * 144 | * Notes : 1) The first line of code is used to prevent a compiler warning because 'p_arg' is not 145 | * used. The compiler should not generate any code for this statement. 146 | ********************************************************************************************************* 147 | */ 148 | 149 | static void StartupTask (void *p_arg) 150 | { 151 | (void)p_arg; 152 | 153 | 154 | //OS_TRACE_INIT(); /* Initialize the uC/OS-III Trace recorder */ 155 | 156 | BSP_OS_TickEnable(); /* Enable the tick timer and interrupt */ 157 | 158 | #if (OS_TASK_STAT_EN > 0u) 159 | OSStatInit(); /* Determine CPU capacity */ 160 | #endif 161 | 162 | #ifdef CPU_CFG_INT_DIS_MEAS_EN 163 | CPU_IntDisMeasMaxCurReset(); 164 | #endif 165 | 166 | BSP_LED_Init(); 167 | 168 | while (DEF_TRUE) { /* Task body, always written as an infinite loop. */ 169 | BSP_LED_Toggle(USR_LED_ALL); 170 | OSTimeDlyHMSM(0u, 0u, 0, 10); 171 | } 172 | } 173 | 174 | --------------------------------------------------------------------------------