error , recycling in every few seconds

This commit is contained in:
Yunhorn 2024-03-26 12:33:16 +08:00
parent cf3a92f937
commit 0f836996ca
5 changed files with 10 additions and 10 deletions

View File

@ -97,7 +97,6 @@ void PWR_EnterStopMode(void)
HAL_GPIO_WritePin(GPIOB, GPIO_PIN_All, GPIO_PIN_RESET); HAL_GPIO_WritePin(GPIOB, GPIO_PIN_All, GPIO_PIN_RESET);
//HAL_GPIO_WritePin(GPIOC, GPIO_PIN_All, GPIO_PIN_RESET); //HAL_GPIO_WritePin(GPIOC, GPIO_PIN_All, GPIO_PIN_RESET);
HAL_GPIO_WritePin(GPIOA, GPIO_PIN_All, GPIO_PIN_RESET); HAL_GPIO_WritePin(GPIOA, GPIO_PIN_All, GPIO_PIN_RESET);
HAL_GPIO_DeInit(GPIOA,GPIO_PIN_0);
HAL_SuspendTick(); HAL_SuspendTick();
/* Clear Status Flag before entering STOP/STANDBY Mode */ /* Clear Status Flag before entering STOP/STANDBY Mode */
LL_PWR_ClearFlag_C1STOP_C1STB(); LL_PWR_ClearFlag_C1STOP_C1STB();

View File

@ -151,6 +151,7 @@
<listOptionValue builtIn="false" value="../../../../../../../Drivers/CMSIS/Include"/> <listOptionValue builtIn="false" value="../../../../../../../Drivers/CMSIS/Include"/>
<listOptionValue builtIn="false" value="../../../../../../../Drivers/BSP/STM32WLxx_Nucleo"/> <listOptionValue builtIn="false" value="../../../../../../../Drivers/BSP/STM32WLxx_Nucleo"/>
</option> </option>
<option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="true" id="com.st.stm32cube.ide.mcu.gnu.managedbuild.tool.c.compiler.option.otherflags.2006508446" name="Other flags" superClass="com.st.stm32cube.ide.mcu.gnu.managedbuild.tool.c.compiler.option.otherflags" useByScannerDiscovery="true" valueType="stringList"/>
<inputType id="com.st.stm32cube.ide.mcu.gnu.managedbuild.tool.c.compiler.input.c.1477344818" superClass="com.st.stm32cube.ide.mcu.gnu.managedbuild.tool.c.compiler.input.c"/> <inputType id="com.st.stm32cube.ide.mcu.gnu.managedbuild.tool.c.compiler.input.c.1477344818" superClass="com.st.stm32cube.ide.mcu.gnu.managedbuild.tool.c.compiler.input.c"/>
</tool> </tool>
<tool id="com.st.stm32cube.ide.mcu.gnu.managedbuild.tool.cpp.compiler.1464259023" name="MCU G++ Compiler" superClass="com.st.stm32cube.ide.mcu.gnu.managedbuild.tool.cpp.compiler"> <tool id="com.st.stm32cube.ide.mcu.gnu.managedbuild.tool.cpp.compiler.1464259023" name="MCU G++ Compiler" superClass="com.st.stm32cube.ide.mcu.gnu.managedbuild.tool.cpp.compiler">

View File

@ -33,7 +33,7 @@
</natures> </natures>
<linkedResources> <linkedResources>
<link> <link>
<name>LoRaWAN_End_Node.ioc</name> <name>WL55JC_AS923.ioc</name>
<type>1</type> <type>1</type>
<locationURI>copy_PARENT/LoRaWAN_End_Node.ioc</locationURI> <locationURI>copy_PARENT/LoRaWAN_End_Node.ioc</locationURI>
</link> </link>

View File

@ -1,4 +1,4 @@
2F62501ED4689FB349E356AB974DBE57=95112E708683D54F6AC1ADC68D917C29 2F62501ED4689FB349E356AB974DBE57=E4D60684DA61280BD06389F4CFDF2587
8DF89ED150041C4CBC7CB9A9CAA90856=95112E708683D54F6AC1ADC68D917C29 8DF89ED150041C4CBC7CB9A9CAA90856=E4D60684DA61280BD06389F4CFDF2587
DC22A860405A8BF2F2C095E5B6529F12=708FD40520C1EE5CFD2122309291F653 DC22A860405A8BF2F2C095E5B6529F12=74CD6EB106FB50B767E4FE71225C7638
eclipse.preferences.version=1 eclipse.preferences.version=1

View File

@ -91,13 +91,13 @@ SECTIONS
. = ALIGN(8); . = ALIGN(8);
} >FLASH } >FLASH
.ARM.extab : { .ARM.extab(READONLY) : {
. = ALIGN(8); . = ALIGN(8);
*(.ARM.extab* .gnu.linkonce.armextab.*) *(.ARM.extab* .gnu.linkonce.armextab.*)
. = ALIGN(8); . = ALIGN(8);
} >FLASH } >FLASH
.ARM : { .ARM(READONLY) : {
. = ALIGN(8); . = ALIGN(8);
__exidx_start = .; __exidx_start = .;
*(.ARM.exidx*) *(.ARM.exidx*)
@ -105,7 +105,7 @@ SECTIONS
. = ALIGN(8); . = ALIGN(8);
} >FLASH } >FLASH
.preinit_array : .preinit_array(READONLY) :
{ {
. = ALIGN(8); . = ALIGN(8);
PROVIDE_HIDDEN (__preinit_array_start = .); PROVIDE_HIDDEN (__preinit_array_start = .);
@ -114,7 +114,7 @@ SECTIONS
. = ALIGN(8); . = ALIGN(8);
} >FLASH } >FLASH
.init_array : .init_array(READONLY) :
{ {
. = ALIGN(8); . = ALIGN(8);
PROVIDE_HIDDEN (__init_array_start = .); PROVIDE_HIDDEN (__init_array_start = .);
@ -124,7 +124,7 @@ SECTIONS
. = ALIGN(8); . = ALIGN(8);
} >FLASH } >FLASH
.fini_array : .fini_array(READONLY) :
{ {
. = ALIGN(8); . = ALIGN(8);
PROVIDE_HIDDEN (__fini_array_start = .); PROVIDE_HIDDEN (__fini_array_start = .);