Skip to content

Commit

Permalink
Fixed typo in __NO_INIT__FAULT, BSP reverted to fixed for B-U585I-IOT…
Browse files Browse the repository at this point in the history
…02A example
  • Loading branch information
MiloradCvjetkovic committed Nov 29, 2023
1 parent 3c370f6 commit d7ccab9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Examples/Fault/B-U585I-IOT02A/Fault.csolution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ solution:

packs:
- pack: Keil::STM32U5xx_DFP@2.1.0
- pack: Keil::B-U585I-IOT02A_BSP
- pack: Keil::B-U585I-IOT02A_BSP@1.0.0

target-types:
- type: HW
Expand Down
2 changes: 1 addition & 1 deletion Examples/Fault/B-U585I-IOT02A/NonSecure/Fault_NS.uvprojx
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@
</package>
<package name="B-U585I-IOT02A_BSP" schemaVersion="1.7.2" url="https://github.com/MDK-Packs/Pack/raw/master/B-U585I-IOT02A_BSP/" vendor="Keil" version="1.0.0">
<targetInfos>
<targetInfo name="B-U585I-IOT02A"/>
<targetInfo name="B-U585I-IOT02A" versionMatchMode="fixed"/>
</targetInfos>
</package>
<package name="STM32U5xx_DFP" schemaVersion="1.7.15" url="https://www.keil.com/pack/" vendor="Keil" version="2.1.0">
Expand Down
2 changes: 1 addition & 1 deletion Examples/Fault/B-U585I-IOT02A/Secure/Fault_S.uvprojx
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@
</package>
<package name="B-U585I-IOT02A_BSP" schemaVersion="1.7.2" url="https://github.com/MDK-Packs/Pack/raw/master/B-U585I-IOT02A_BSP/" vendor="Keil" version="1.0.0">
<targetInfos>
<targetInfo name="B-U585I-IOT02A"/>
<targetInfo name="B-U585I-IOT02A" versionMatchMode="fixed"/>
</targetInfos>
</package>
<package name="STM32U5xx_DFP" schemaVersion="1.7.15" url="https://www.keil.com/pack/" vendor="Keil" version="2.1.0">
Expand Down
2 changes: 1 addition & 1 deletion Fault/Source/ARM_FaultStorage.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
//lint -esym(9071, __NAKED) "Suppress: defined macro is reserved to the compiler"
#define __NAKED __attribute__((naked))
#endif
#if !defined(__NO_INIT__FAULT)
#if !defined(__NO_INIT_FAULT)
//lint -esym(9071, __NO_INIT_FAULT) "Suppress: defined macro is reserved to the compiler"
#if defined (__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) /* ARM Compiler 6 */
#define __NO_INIT_FAULT __attribute__ ((section (".bss.noinit.fault")))
Expand Down

0 comments on commit d7ccab9

Please sign in to comment.