source: trunk/firmware/smartProtect.emProject@ 9

Last change on this file since 9 was 9, checked in by f.jahn, 10 months ago

Firmware Erstellung begonnen:

  • Relais schaltet
  • Mode wird eingelesen
  • Button auf Platine getestet
  • Buzzer Funktionen erstellt
File size: 8.4 KB
RevLine 
[9]1<!DOCTYPE CrossStudio_Project_File>
2<solution Name="smartProtect" version="2" target="8">
3 <configuration
4 Name="Debug"
5 c_preprocessor_definitions="DEBUG"
6 gcc_debugging_level="Level 3"
7 gcc_omit_frame_pointer="Yes"
8 gcc_optimization_level="None" />
9 <configuration
10 Name="Release"
11 c_preprocessor_definitions="NDEBUG"
12 gcc_c_language_standard="c17"
13 gcc_debugging_level="Level 2"
14 gcc_omit_frame_pointer="Yes"
15 gcc_optimization_level="Level 2 balanced" />
16 <project Name="smartProtect">
17 <configuration
18 LIBRARY_IO_TYPE="RTT"
19 Name="Common"
20 Target="STM32C011F4Px"
21 arm_architecture="v6M"
22 arm_compiler_variant="SEGGER"
23 arm_core_type="Cortex-M0+"
24 arm_endian="Little"
25 arm_fp_abi="Soft"
26 arm_fpu_type="None"
27 arm_linker_heap_size="1024"
28 arm_linker_process_stack_size="0"
29 arm_linker_stack_size="2048"
30 arm_linker_variant="SEGGER"
31 arm_simulator_memory_simulation_parameter="ROM;0x08000000;0x00004000;RAM;0x20000000;0x00001800"
32 arm_target_device_name="STM32C011F4"
33 arm_target_interface_type="SWD"
34 c_preprocessor_definitions="ARM_MATH_CM0PLUS;STM32C011xx;__STM32C011_SUBFAMILY;__STM32C0XX_FAMILY;__NO_FPU_ENABLE"
35 c_user_include_directories="$(ProjectDir)/CMSIS_5/CMSIS/Core/Include;$(ProjectDir)/STM32C0xx/Device/Include;./../firmware_cube/Core/Inc;./../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc;./Core/inc"
36 debug_register_definition_file="$(ProjectDir)/STM32C011_Registers.xml"
37 debug_stack_pointer_start="__stack_end__"
38 debug_start_from_entry_point_symbol="Yes"
39 debug_target_connection="J-Link"
40 gcc_c_language_standard="c17"
41 gcc_entry_point="Reset_Handler"
42 link_linker_script_file="$(ProjectDir)/STM32C0xx_Flash.icf"
43 link_time_optimization="Yes"
44 linker_memory_map_file="$(ProjectDir)/STM32C011F4Px_MemoryMap.xml"
45 linker_printf_fmt_level="long long"
46 linker_printf_width_precision_supported="Yes"
47 macros="DeviceHeaderFile=$(PackagesDir)/STM32C0xx/Device/Include/stm32c0xx.h;DeviceSystemFile=$(PackagesDir)/STM32C0xx/Device/Source/system_stm32c0xx.c;DeviceVectorsFile=$(PackagesDir)/STM32C0xx/Source/stm32c011xx_Vectors.s;DeviceFamily=STM32C0xx;DeviceSubFamily=STM32C011;Target=STM32C011F4Px"
48 project_directory=""
49 project_type="Executable"
50 target_reset_script="Reset();" />
51 <folder Name="CMSIS Files">
52 <file file_name="STM32C0xx/Device/Include/stm32c0xx.h" />
53 <file file_name="STM32C0xx/Device/Source/system_stm32c0xx.c">
54 <configuration
55 Name="Common"
56 default_code_section=".init"
57 default_const_section=".init_rodata" />
58 </file>
59 </folder>
60 <folder Name="Script Files">
61 <file file_name="STM32C0xx/Scripts/STM32C0xx_Target.js">
62 <configuration Name="Common" file_type="Reset Script" />
63 </file>
64 </folder>
65 <folder Name="Source Files">
66 <configuration Name="Common" filter="c;cpp;cxx;cc;h;s;asm;inc" />
67 <folder Name="Core">
68 <folder Name="Inc">
69 <file file_name="Core/inc/button.h" />
70 <file file_name="Core/inc/buzzer.h" />
71 <file file_name="../firmware_cube/Core/Inc/main.h" />
72 <file file_name="Core/inc/mode_mainswitch.h" />
73 <file file_name="Core/inc/mode_secondaryprotection.h" />
74 <file file_name="Core/inc/modeswitch.h" />
75 <file file_name="Core/inc/relais.h" />
76 </folder>
77 <folder Name="Src">
78 <file file_name="Core/src/button.c" />
79 <file file_name="Core/src/buzzer.c" />
80 <file file_name="../firmware_cube/Core/Src/main.c" />
81 <file file_name="Core/src/mode_mainswitch.c" />
82 <file file_name="Core/src/mode_secondaryprotection.c" />
83 <file file_name="Core/src/modeswitch.c" />
84 <file file_name="Core/src/relais.c" />
85 <file file_name="../firmware_cube/Core/Src/stm32c0xx_hal_msp.c" />
86 <file file_name="../firmware_cube/Core/Src/stm32c0xx_it.c" />
87 </folder>
88 </folder>
89 <folder Name="HAL">
90 <folder Name="Inc">
91 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_hal.h" />
92 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_hal_cortex.h" />
93 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_hal_def.h" />
94 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_hal_dma.h" />
95 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_hal_dma_ex.h" />
96 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_hal_exti.h" />
97 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_hal_flash.h" />
98 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_hal_flash_ex.h" />
99 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_hal_gpio.h" />
100 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_hal_gpio_ex.h" />
101 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_hal_pwr.h" />
102 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_hal_pwr_ex.h" />
103 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_hal_rcc.h" />
104 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_hal_rcc_ex.h" />
105 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_hal_tim.h" />
106 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_hal_tim_ex.h" />
107 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_ll_bus.h" />
108 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_ll_cortex.h" />
109 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_ll_dma.h" />
110 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_ll_dmamux.h" />
111 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_ll_exti.h" />
112 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_ll_gpio.h" />
113 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_ll_pwr.h" />
114 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_ll_rcc.h" />
115 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_ll_system.h" />
116 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Inc/stm32c0xx_ll_utils.h" />
117 </folder>
118 <folder Name="Src">
119 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Src/stm32c0xx_hal.c" />
120 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Src/stm32c0xx_hal_cortex.c" />
121 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Src/stm32c0xx_hal_dma.c" />
122 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Src/stm32c0xx_hal_dma_ex.c" />
123 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Src/stm32c0xx_hal_exti.c" />
124 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Src/stm32c0xx_hal_flash.c" />
125 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Src/stm32c0xx_hal_flash_ex.c" />
126 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Src/stm32c0xx_hal_gpio.c" />
127 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Src/stm32c0xx_hal_pwr.c" />
128 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Src/stm32c0xx_hal_pwr_ex.c" />
129 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Src/stm32c0xx_hal_rcc.c" />
130 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Src/stm32c0xx_hal_rcc_ex.c" />
131 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Src/stm32c0xx_hal_tim.c" />
132 <file file_name="../firmware_cube/Drivers/STM32C0xx_HAL_Driver/Src/stm32c0xx_hal_tim_ex.c" />
133 </folder>
134 </folder>
135 </folder>
136 <folder Name="System Files">
137 <file file_name="SEGGER_THUMB_Startup.s" />
138 <file file_name="STM32C0xx/Source/stm32c011xx_Vectors.s">
139 <configuration Name="Common" file_type="Assembly" />
140 </file>
141 <file file_name="STM32C0xx/Source/STM32C0xx_Startup.s" />
142 </folder>
143 </project>
144</solution>
Note: See TracBrowser for help on using the repository browser.