source: ecs_cellMon/Bootloader/SES/bootloader.emProject @ 3

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

fw hinzugfügt-->zed

File size: 4.0 KB
Line 
1<!DOCTYPE CrossStudio_Project_File>
2<solution Name="bootloader" target="8" version="2">
3  <project Name="bootloader">
4    <configuration
5      CMSIS_CORE="Yes"
6      LIBRARY_IO_TYPE="RTT"
7      Name="Common"
8      Target="STM32G070KBTx"
9      arm_architecture="v6M"
10      arm_compiler_variant="SEGGER"
11      arm_core_type="Cortex-M0"
12      arm_endian="Little"
13      arm_fpu_type=""
14      arm_library_optimization="Small"
15      arm_linker_heap_size="0"
16      arm_linker_process_stack_size="0"
17      arm_linker_stack_size="4096"
18      arm_linker_variant="SEGGER"
19      arm_rtl_variant="SEGGER"
20      arm_simulator_memory_simulation_parameter="RX 08000000,00020000,FFFFFFFF;RWX 20000000,00008000,CDCDCDCD"
21      arm_target_debug_interface_type="ADIv5"
22      arm_target_device_name="STM32G071CB"
23      arm_target_interface_type="SWD"
24      build_intermediate_directory="Output/$(Configuration)/Obj"
25      c_preprocessor_definitions="STM32G071xx;__STM32G0xx_FAMILY;__STM32G071_SUBFAMILY;ARM_MATH_CM0PLUS"
26      c_user_include_directories="$(ProjectDir)/STM32G0xx/CMSIS/Device/Include"
27      debug_register_definition_file="$(ProjectDir)/STM32G07x_Registers.xml"
28      debug_stack_pointer_start="__stack_end__"
29      debug_target_connection="J-Link"
30      gcc_c_language_standard="c11"
31      gcc_cplusplus_language_standard="c++17"
32      gcc_entry_point="Reset_Handler"
33      gcc_optimization_level="Level 0"
34      link_linker_script_file="$(ProjectDir)/STM32G0xx_Flash.icf"
35      linker_keep_symbols="_vectors;FW_VERSION"
36      linker_memory_map_file="$(ProjectDir)/STM32G070KBTx_MemoryMap.xml"
37      linker_output_format="hex"
38      linker_printf_width_precision_supported="Yes"
39      linker_section_placements_segments="FLASH1 RX 0x08000000 0x00020000;RAM1 RWX 0x20000000 0x00008000"
40      macros="DeviceHeaderFile=$(PackagesDir)/STM32G0xx/CMSIS/Device/Include/stm32g0xx.h;DeviceLibraryIdentifier=M0l;DeviceSystemFile=$(PackagesDir)/STM32G0xx/CMSIS/Device/Source/system_stm32g0xx.c;DeviceVectorsFile=$(PackagesDir)/STM32G0xx/Source/STM32G07x_Vectors.s;DeviceFamily=STM32G0xx;DeviceSubFamily=STM32G070;Target=STM32G070KBTx"
41      project_directory=""
42      project_type="Executable"
43      speed="0"
44      target_reset_script="Reset();"
45      target_trace_initialize_script="EnableTrace(&quot;$(TraceInterfaceType)&quot;)" />
46    <folder Name="CMSIS Files">
47      <file file_name="STM32G0xx/CMSIS/Device/Include/stm32g0xx.h" />
48      <file file_name="STM32G0xx/CMSIS/Device/Source/system_stm32g0xx.c">
49        <configuration
50          Name="Common"
51          default_code_section=".init"
52          default_const_section=".init_rodata" />
53      </file>
54    </folder>
55    <folder Name="Script Files">
56      <file file_name="STM32G0xx/Scripts/STM32G0xx_Target.js">
57        <configuration Name="Common" file_type="Reset Script" />
58      </file>
59    </folder>
60    <folder Name="Source Files">
61      <configuration Name="Common" filter="c;cpp;cxx;cc;h;s;asm;inc" />
62      <folder Name="Inc">
63        <file file_name="main.h" />
64        <file file_name="aes.h" />
65      </folder>
66      <folder Name="Src">
67        <file file_name="main.c" />
68        <file file_name="aes.c" />
69      </folder>
70    </folder>
71    <folder Name="System Files">
72      <file file_name="SEGGER_THUMB_Startup.s" />
73      <file file_name="STM32G0xx/Source/STM32G0xx_Startup.s" />
74      <file file_name="STM32G0xx/Source/STM32G07x_Vectors.s">
75        <configuration Name="Common" file_type="Assembly" />
76      </file>
77    </folder>
78    <configuration Name="Debug" debug_terminal_log_file="output.txt" />
79    <configuration
80      Name="Release"
81      arm_library_architecture="v6M"
82      gcc_debugging_level="None"
83      gcc_optimization_level="Level 2 for size" />
84  </project>
85  <configuration
86    Name="Debug"
87    c_preprocessor_definitions="DEBUG"
88    gcc_debugging_level="Level 3"
89    gcc_optimization_level="None" />
90  <configuration
91    Name="Release"
92    c_preprocessor_definitions="NDEBUG"
93    gcc_debugging_level="Level 2"
94    gcc_omit_frame_pointer="Yes"
95    gcc_optimization_level="Level 2 balanced" />
96</solution>
Note: See TracBrowser for help on using the repository browser.