Selaa lähdekoodia

【修改】库文件,GCC文件entry入口

YJIE_1998 3 vuotta sitten
vanhempi
commit
bfb9fd78a3
14 muutettua tiedostoa jossa 28 lisäystä ja 70 poistoa
  1. 2 5
      bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f301x8.s
  2. 2 5
      bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f302x8.s
  3. 2 5
      bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f302xc.s
  4. 2 5
      bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f302xe.s
  5. 2 5
      bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f303x8.s
  6. 2 5
      bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f303xc.s
  7. 2 5
      bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f303xe.s
  8. 2 5
      bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f318xx.s
  9. 2 5
      bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f328xx.s
  10. 2 5
      bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f334x8.s
  11. 2 5
      bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f358xx.s
  12. 2 5
      bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f373xc.s
  13. 2 5
      bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f378xx.s
  14. 2 5
      bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f398xx.s

+ 2 - 5
bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f301x8.s

@@ -98,11 +98,8 @@ LoopFillZerobss:
 /* Call static constructors */
     bl __libc_init_array
 /* Call the application's entry point.*/
-	bl	main
-
-LoopForever:
-    b LoopForever
-    
+  bl  entry
+  bx  lr   
 .size	Reset_Handler, .-Reset_Handler
 
 /**

+ 2 - 5
bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f302x8.s

@@ -98,11 +98,8 @@ LoopFillZerobss:
 /* Call static constructors */
     bl __libc_init_array
 /* Call the application's entry point.*/
-	bl	main
-
-LoopForever:
-    b LoopForever
-    
+  bl  entry
+  bx  lr 
 .size	Reset_Handler, .-Reset_Handler
 
 /**

+ 2 - 5
bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f302xc.s

@@ -98,11 +98,8 @@ LoopFillZerobss:
 /* Call static constructors */
     bl __libc_init_array
 /* Call the application's entry point.*/
-	bl	main
-
-LoopForever:
-    b LoopForever
-    
+  bl  entry
+  bx  lr  
 .size	Reset_Handler, .-Reset_Handler
 
 /**

+ 2 - 5
bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f302xe.s

@@ -98,11 +98,8 @@ LoopFillZerobss:
 /* Call static constructors */
     bl __libc_init_array
 /* Call the application's entry point.*/
-	bl	main
-
-LoopForever:
-    b LoopForever
-    
+  bl  entry
+  bx  lr  
 .size	Reset_Handler, .-Reset_Handler
 
 /**

+ 2 - 5
bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f303x8.s

@@ -98,11 +98,8 @@ LoopFillZerobss:
 /* Call static constructors */
     bl __libc_init_array
 /* Call the application's entry point.*/
-	bl	main
-
-LoopForever:
-    b LoopForever
-    
+  bl  entry
+  bx  lr  
 .size	Reset_Handler, .-Reset_Handler
 
 /**

+ 2 - 5
bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f303xc.s

@@ -98,11 +98,8 @@ LoopFillZerobss:
 /* Call static constructors */
     bl __libc_init_array
 /* Call the application's entry point.*/
-	bl	main
-
-LoopForever:
-    b LoopForever
-    
+  bl  entry
+  bx  lr  
 .size	Reset_Handler, .-Reset_Handler
 
 /**

+ 2 - 5
bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f303xe.s

@@ -98,11 +98,8 @@ LoopFillZerobss:
 /* Call static constructors */
     bl __libc_init_array
 /* Call the application's entry point.*/
-	bl	main
-
-LoopForever:
-    b LoopForever
-    
+  bl  entry
+  bx  lr  
 .size	Reset_Handler, .-Reset_Handler
 
 /**

+ 2 - 5
bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f318xx.s

@@ -98,11 +98,8 @@ LoopFillZerobss:
 /* Call static constructors */
     bl __libc_init_array
 /* Call the application's entry point.*/
-	bl	main
-
-LoopForever:
-    b LoopForever
-    
+  bl  entry
+  bx  lr  
 .size	Reset_Handler, .-Reset_Handler
 
 /**

+ 2 - 5
bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f328xx.s

@@ -98,11 +98,8 @@ LoopFillZerobss:
 /* Call static constructors */
     bl __libc_init_array
 /* Call the application's entry point.*/
-	bl	main
-
-LoopForever:
-    b LoopForever
-    
+  bl  entry
+  bx  lr   
 .size	Reset_Handler, .-Reset_Handler
 
 /**

+ 2 - 5
bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f334x8.s

@@ -98,11 +98,8 @@ LoopFillZerobss:
 /* Call static constructors */
     bl __libc_init_array
 /* Call the application's entry point.*/
-	bl	main
-
-LoopForever:
-    b LoopForever
-    
+  bl  entry
+  bx  lr  
 .size	Reset_Handler, .-Reset_Handler
 
 /**

+ 2 - 5
bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f358xx.s

@@ -98,11 +98,8 @@ LoopFillZerobss:
 /* Call static constructors */
     bl __libc_init_array
 /* Call the application's entry point.*/
-	bl	main
-
-LoopForever:
-    b LoopForever
-    
+  bl  entry
+  bx  lr    
 .size	Reset_Handler, .-Reset_Handler
 
 /**

+ 2 - 5
bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f373xc.s

@@ -98,11 +98,8 @@ LoopFillZerobss:
 /* Call static constructors */
     bl __libc_init_array
 /* Call the application's entry point.*/
-	bl	main
-
-LoopForever:
-    b LoopForever
-    
+  bl  entry
+  bx  lr   
 .size	Reset_Handler, .-Reset_Handler
 
 /**

+ 2 - 5
bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f378xx.s

@@ -98,11 +98,8 @@ LoopFillZerobss:
 /* Call static constructors */
     bl __libc_init_array
 /* Call the application's entry point.*/
-	bl	main
-
-LoopForever:
-    b LoopForever
-    
+  bl  entry
+  bx  lr  
 .size	Reset_Handler, .-Reset_Handler
 
 /**

+ 2 - 5
bsp/stm32/libraries/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f398xx.s

@@ -98,11 +98,8 @@ LoopFillZerobss:
 /* Call static constructors */
     bl __libc_init_array
 /* Call the application's entry point.*/
-	bl	main
-
-LoopForever:
-    b LoopForever
-    
+  bl  entry
+  bx  lr   
 .size	Reset_Handler, .-Reset_Handler
 
 /**