Commit 0917f57f by Jeffrey Redondo

Data2 string length changed

parent 2ea60c1e
Showing with 99 additions and 19 deletions
......@@ -11,8 +11,8 @@
#define RTC_ALARMMASK_ONLYMINUTES ((uint32_t)0x80800080)
#define RTC_ALARMMASK_DATEWEEKDAY_HOUR ((uint32_t)0x80800000) //only take into account Minutes and Second
#define RTC_ALARMMASK_DATEWEEKDAY_HOUR_SECOND ((uint32_t)0x80800080) //only take into account Minutes and Second
#define Alarm_Minutes 0x02; //set the minutes you want the alarm to trigger (FORMAT FOR ALARM)
#define Alarm_Minutes_Next 2; //set the minutes you want the alarm to trigger INT FORMAT FOR NEXT ALARM
#define Alarm_Minutes 0x10; //set the minutes you want the alarm to trigger (FORMAT FOR ALARM)
#define Alarm_Minutes_Next 10; //set the minutes you want the alarm to trigger INT FORMAT FOR NEXT ALARM
//------------MX_RTC_Init------------
// Initialize the RTC Calendar and Alarm(clck 32KHz),
// Input: none
......
......@@ -558,7 +558,7 @@ void BG96_SEND_TECH(){
void BG96_Cumulocity(){
//Variable and function to create the data string that should be sent to cumulocity
char data[153]="";
char data2[23]=""; //second part of the message
char data2[30]=""; //second part of the message
volatile int total_length=0;
char length[2]="";
volatile int length_rssi=0;
......
......@@ -27,7 +27,87 @@ Project File Date: 07/18/2018
<h2>Output:</h2>
*** Using Compiler 'V5.06 update 5 (build 528)', folder: 'C:\Keil_v5\ARM\ARMCC\Bin'
Build target 'Low Power mode l073 RTC BG96'
"Low Power mode l073 RTC BG96\Low Power mode l073 RTC BG96.axf" - 0 Error(s), 0 Warning(s).
compiling RTC.c...
RTC.c(38): warning: #223-D: function "SystemClock_Config" declared implicitly
SystemClock_Config(); //only with stop mode
RTC.c: 1 warning, 0 errors
compiling main.c...
../Src/main.c(242): warning: #177-D: function "MX_TIM2_Init" was declared but never referenced
static void MX_TIM2_Init(void)
../Src/main.c: 1 warning, 0 errors
compiling BG96.c...
BG96.c(26): warning: #1295-D: Deprecated declaration BG96_Context_Check - give arg types
int BG96_Context_Check();
BG96.c(28): warning: #1295-D: Deprecated declaration BG96_Check_Internet - give arg types
int BG96_Check_Internet();
BG96.c(53): warning: #167-D: argument of type "uint8_t *" is incompatible with parameter of type "const char *"
char *c = strstr(EVB_Buffer,"Telia"); //here is Carrier/operator name
BG96.c(142): warning: #167-D: argument of type "uint8_t *" is incompatible with parameter of type "char *restrict"
tech = strtok(EVB_Buffer,"\r,\""); // first call returns pointer
BG96.c(135): warning: #550-D: variable "tech" was set but never used
volatile char *tech, *mode1;
BG96.c(135): warning: #550-D: variable "mode1" was set but never used
volatile char *tech, *mode1;
BG96.c(161): warning: #177-D: variable "ap" was declared but never referenced
char sw=0,ap=0;
BG96.c(198): warning: #223-D: function "rand" declared implicitly
int var = rand()%30; //random variable
BG96.c(214): warning: #167-D: argument of type "char *" is incompatible with parameter of type "uint8_t *"
HAL_UART_Transmit(&huart1,temp,sizeof(temp),1000);
BG96.c(220): warning: #167-D: argument of type "char *" is incompatible with parameter of type "uint8_t *"
HAL_UART_Transmit(&huart2,temp,sizeof(temp),1000);
BG96.c(244): warning: #167-D: argument of type "char *" is incompatible with parameter of type "uint8_t *"
HAL_UART_Transmit(&huart1,rssichar,strlen(rssichar),1000);
BG96.c(248): warning: #167-D: argument of type "char *" is incompatible with parameter of type "uint8_t *"
HAL_UART_Transmit(&huart2,rssichar,sizeof(rssichar),1000);
BG96.c(265): warning: #167-D: argument of type "uint8_t *" is incompatible with parameter of type "const char *"
char *c = strstr(EVB_Buffer,"BG96");
BG96.c(295): warning: #167-D: argument of type "uint8_t *" is incompatible with parameter of type "const char *"
char *c = strstr(EVB_Buffer,"BG96");
BG96.c(399): warning: #167-D: argument of type "uint8_t *" is incompatible with parameter of type "const char *"
char *c = strstr(EVB_Buffer,"OK");
BG96.c(390): warning: #177-D: variable "ap" was declared but never referenced
char sw=0,ap=0;
BG96.c(432): warning: #167-D: argument of type "uint8_t *" is incompatible with parameter of type "const char *"
char *c = strstr(EVB_Buffer,"+QIACT:");
BG96.c(426): warning: #177-D: variable "sw" was declared but never referenced
char sw=0,ap=0;
BG96.c(426): warning: #177-D: variable "ap" was declared but never referenced
char sw=0,ap=0;
BG96.c(461): warning: #167-D: argument of type "char *" is incompatible with parameter of type "uint8_t *"
HAL_UART_Transmit(&huart1,rsrpchar,strlen(rsrpchar),1000); // or sizeof
BG96.c(465): warning: #167-D: argument of type "char *" is incompatible with parameter of type "uint8_t *"
HAL_UART_Transmit(&huart2,rsrpchar,sizeof(rsrpchar),1000);
BG96.c(489): warning: #167-D: argument of type "char *" is incompatible with parameter of type "uint8_t *"
HAL_UART_Transmit(&huart1,rsrqchar,sizeof(rsrqchar),1000);
BG96.c(493): warning: #167-D: argument of type "char *" is incompatible with parameter of type "uint8_t *"
HAL_UART_Transmit(&huart2,rsrqchar,sizeof(rsrqchar),1000);
BG96.c(518): warning: #167-D: argument of type "char *" is incompatible with parameter of type "uint8_t *"
HAL_UART_Transmit(&huart1,snrchar,sizeof(snrchar),1000);
BG96.c(522): warning: #167-D: argument of type "char *" is incompatible with parameter of type "uint8_t *"
HAL_UART_Transmit(&huart2,snrchar,sizeof(snrchar),1000);
BG96.c(544): warning: #167-D: argument of type "char *" is incompatible with parameter of type "uint8_t *"
HAL_UART_Transmit(&huart1,techchar,sizeof(techchar),1000);
BG96.c(548): warning: #167-D: argument of type "char *" is incompatible with parameter of type "uint8_t *"
HAL_UART_Transmit(&huart2,techchar,sizeof(techchar),1000);
BG96.c(583): warning: #167-D: argument of type "char *" is incompatible with parameter of type "uint8_t *"
HAL_UART_Transmit(&huart2,data,strlen(data),1000);
BG96.c(607): warning: #167-D: argument of type "uint8_t *" is incompatible with parameter of type "const char *"
char *c = strstr(EVB_Buffer,"+QIOPEN: 0,0");
BG96.c(635): warning: #167-D: argument of type "char *" is incompatible with parameter of type "uint8_t *"
HAL_UART_Transmit(&huart1,data,strlen(data),1000);
BG96.c(652): warning: #167-D: argument of type "uint8_t *" is incompatible with parameter of type "const char *"
char *c = strstr(EVB_Buffer,"+QPING: 0,"); // ping received
BG96.c: 31 warnings, 0 errors
compiling UART.c...
UART.c(100): warning: #223-D: function "strlen" declared implicitly
HAL_UART_Transmit(&huart2,Rx_data,strlen(Rx_data),100);
UART.c(127): warning: #1-D: last line of file ends without a newline
}
UART.c: 2 warnings, 0 errors
linking...
Program Size: Code=13988 RO-data=644 RW-data=52 ZI-data=1740
"Low Power mode l073 RTC BG96\Low Power mode l073 RTC BG96.axf" - 0 Error(s), 35 Warning(s).
<h2>Software Packages used:</h2>
......@@ -50,7 +130,7 @@ Package Vendor: Keil
<h2>Collection of Component Files used:</h2>
* Component: ARM::CMSIS:CORE:5.1.1
Build Time Elapsed: 00:00:01
Build Time Elapsed: 00:00:08
</pre>
</body>
</html>
......@@ -3,9 +3,9 @@
<title>Static Call Graph - [Low Power mode l073 RTC BG96\Low Power mode l073 RTC BG96.axf]</title></head>
<body><HR>
<H1>Static Call Graph for image Low Power mode l073 RTC BG96\Low Power mode l073 RTC BG96.axf</H1><HR>
<BR><P>#&#060CALLGRAPH&#062# ARM Linker, 5060528: Last Updated: Wed Jul 18 10:38:40 2018
<BR><P>#&#060CALLGRAPH&#062# ARM Linker, 5060528: Last Updated: Wed Jul 18 11:22:05 2018
<BR><P>
<H3>Maximum Stack Usage = 352 bytes + Unknown(Cycles, Untraceable Function Pointers)</H3><H3>
<H3>Maximum Stack Usage = 360 bytes + Unknown(Cycles, Untraceable Function Pointers)</H3><H3>
Call chain for Maximum Stack Depth:</H3>
main &rArr; BG96_Cumulocity &rArr; BG96_Context_Activation &rArr; BG96_Power_On_EVB &rArr; BG96_Send_Clean &rArr; BG96_Send_UARTPC_EVB_Buffer &rArr; HAL_UART_Transmit &rArr; UART_WaitOnFlagUntilTimeout
<P>
......@@ -367,8 +367,8 @@ Global Symbols
<LI><a href="#[3a]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;BG96_Attached
</UL>
<P><STRONG><a name="[43]"></a>BG96_Cumulocity</STRONG> (Thumb, 508 bytes, Stack size 200 bytes, bg96.o(i.BG96_Cumulocity))
<BR><BR>[Stack]<UL><LI>Max Depth = 352<LI>Call Chain = BG96_Cumulocity &rArr; BG96_Context_Activation &rArr; BG96_Power_On_EVB &rArr; BG96_Send_Clean &rArr; BG96_Send_UARTPC_EVB_Buffer &rArr; HAL_UART_Transmit &rArr; UART_WaitOnFlagUntilTimeout
<P><STRONG><a name="[43]"></a>BG96_Cumulocity</STRONG> (Thumb, 508 bytes, Stack size 208 bytes, bg96.o(i.BG96_Cumulocity))
<BR><BR>[Stack]<UL><LI>Max Depth = 360<LI>Call Chain = BG96_Cumulocity &rArr; BG96_Context_Activation &rArr; BG96_Power_On_EVB &rArr; BG96_Send_Clean &rArr; BG96_Send_UARTPC_EVB_Buffer &rArr; HAL_UART_Transmit &rArr; UART_WaitOnFlagUntilTimeout
</UL>
<BR>[Calls]<UL><LI><a href="#[39]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;BG96_Send_Clean
<LI><a href="#[3c]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;BG96_Context_Check
......@@ -1170,7 +1170,7 @@ Global Symbols
<BR>[Address Reference Count : 1]<UL><LI> printf6.o(i.__0printf$6)
</UL>
<P><STRONG><a name="[25]"></a>main</STRONG> (Thumb, 200 bytes, Stack size 0 bytes, main.o(i.main))
<BR><BR>[Stack]<UL><LI>Max Depth = 352<LI>Call Chain = main &rArr; BG96_Cumulocity &rArr; BG96_Context_Activation &rArr; BG96_Power_On_EVB &rArr; BG96_Send_Clean &rArr; BG96_Send_UARTPC_EVB_Buffer &rArr; HAL_UART_Transmit &rArr; UART_WaitOnFlagUntilTimeout
<BR><BR>[Stack]<UL><LI>Max Depth = 360<LI>Call Chain = main &rArr; BG96_Cumulocity &rArr; BG96_Context_Activation &rArr; BG96_Power_On_EVB &rArr; BG96_Send_Clean &rArr; BG96_Send_UARTPC_EVB_Buffer &rArr; HAL_UART_Transmit &rArr; UART_WaitOnFlagUntilTimeout
</UL>
<BR>[Calls]<UL><LI><a href="#[90]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;RTC_CalendarShow
<LI><a href="#[8f]">&gt;&gt;</a>&nbsp;&nbsp;&nbsp;MX_USART2_UART_Init
......
......@@ -2258,7 +2258,7 @@ Image component sizes
3088 1348 383 21 0 9709 bg96.o
602 106 0 12 716 394209 main.o
452 80 0 0 0 2306 rtc.o
452 80 0 0 0 2302 rtc.o
28 8 192 0 1024 640 startup_stm32l073xx.o
122 24 0 4 0 3927 stm32l0xx_hal.o
178 28 0 0 0 12599 stm32l0xx_hal_cortex.o
......@@ -2278,7 +2278,7 @@ Image component sizes
316 76 0 0 0 2189 uart.o
----------------------------------------------------------------------
12518 2092 644 44 1740 891015 Object Totals
12518 2092 644 44 1740 891011 Object Totals
0 0 32 0 0 0 (incl. Generated)
20 0 4 3 0 0 (incl. Padding)
......@@ -2330,8 +2330,8 @@ Image component sizes
Code (inc. data) RO Data RW Data ZI Data Debug
13988 2128 644 52 1740 887519 Grand Totals
13988 2128 644 52 1740 887519 ELF Image Totals
13988 2128 644 52 1740 887515 Grand Totals
13988 2128 644 52 1740 887515 ELF Image Totals
13988 2128 644 52 0 0 ROM Totals
==============================================================================
......
......@@ -102,7 +102,7 @@ I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim.h)(0x5B10E3C4)
I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim_ex.h)(0x5B10E3C4)
I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart.h)(0x5B10E3C4)
I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart_ex.h)(0x5B10E3C4)
I (../Inc/RTC.h)(0x5B4EEE65)
I (../Inc/RTC.h)(0x5B4EF8A5)
I (../Inc/BG96.h)(0x5B4EEB7E)
F (../Src/stm32l0xx_it.c)(0x5B473CC8)(-c --cpu Cortex-M0+ -D__EVAL -D__MICROLIB -g -O3 --apcs=interwork --split_sections -I ../Inc -I ../Drivers/STM32L0xx_HAL_Driver/Inc -I ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I ../Drivers/CMSIS/Include --C99 -I.\RTE\_Low_Power_mode_l073_RTC_BG96 -IC:\Keil_v5\ARM\PACK\ARM\CMSIS\5.3.0\CMSIS\Include -IC:\Keil_v5\ARM\PACK\Keil\STM32L0xx_DFP\2.0.0\Drivers\CMSIS\Device\ST\STM32L0xx\Include -D__UVISION_VERSION="524" -D_RTE_ -DSTM32L073xx -DUSE_HAL_DRIVER -DSTM32L073xx -o "low power mode l073 rtc bg96\stm32l0xx_it.o" --omf_browse "low power mode l073 rtc bg96\stm32l0xx_it.crf" --depend "low power mode l073 rtc bg96\stm32l0xx_it.d")
I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h)(0x5B10E3C3)
......@@ -139,7 +139,7 @@ I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim_ex.h)(0x5B10E3C4)
I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart.h)(0x5B10E3C4)
I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart_ex.h)(0x5B10E3C4)
I (../Inc/stm32l0xx_it.h)(0x5B473CC9)
F (.\BG96.c)(0x5B4EEB7E)(-c --cpu Cortex-M0+ -D__EVAL -D__MICROLIB -g -O3 --apcs=interwork --split_sections -I ../Inc -I ../Drivers/STM32L0xx_HAL_Driver/Inc -I ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I ../Drivers/CMSIS/Include --C99 -I.\RTE\_Low_Power_mode_l073_RTC_BG96 -IC:\Keil_v5\ARM\PACK\ARM\CMSIS\5.3.0\CMSIS\Include -IC:\Keil_v5\ARM\PACK\Keil\STM32L0xx_DFP\2.0.0\Drivers\CMSIS\Device\ST\STM32L0xx\Include -D__UVISION_VERSION="524" -D_RTE_ -DSTM32L073xx -DUSE_HAL_DRIVER -DSTM32L073xx -o "low power mode l073 rtc bg96\bg96.o" --omf_browse "low power mode l073 rtc bg96\bg96.crf" --depend "low power mode l073 rtc bg96\bg96.d")
F (.\BG96.c)(0x5B4EF873)(-c --cpu Cortex-M0+ -D__EVAL -D__MICROLIB -g -O3 --apcs=interwork --split_sections -I ../Inc -I ../Drivers/STM32L0xx_HAL_Driver/Inc -I ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I ../Drivers/CMSIS/Include --C99 -I.\RTE\_Low_Power_mode_l073_RTC_BG96 -IC:\Keil_v5\ARM\PACK\ARM\CMSIS\5.3.0\CMSIS\Include -IC:\Keil_v5\ARM\PACK\Keil\STM32L0xx_DFP\2.0.0\Drivers\CMSIS\Device\ST\STM32L0xx\Include -D__UVISION_VERSION="524" -D_RTE_ -DSTM32L073xx -DUSE_HAL_DRIVER -DSTM32L073xx -o "low power mode l073 rtc bg96\bg96.o" --omf_browse "low power mode l073 rtc bg96\bg96.crf" --depend "low power mode l073 rtc bg96\bg96.d")
I (../Inc/bg96.h)(0x5B4EEB7E)
I (C:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x588BD7A4)
I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h)(0x5B10E3C3)
......@@ -175,7 +175,7 @@ I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim_ex.h)(0x5B10E3C4)
I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart.h)(0x5B10E3C4)
I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart_ex.h)(0x5B10E3C4)
I (../Inc/UART.h)(0x5B473F14)
I (../Inc/RTC.h)(0x5B4EEE65)
I (../Inc/RTC.h)(0x5B4EF8A5)
I (C:\Keil_v5\ARM\ARMCC\include\string.h)(0x588BD7A4)
F (.\RTC.c)(0x5B473D68)(-c --cpu Cortex-M0+ -D__EVAL -D__MICROLIB -g -O3 --apcs=interwork --split_sections -I ../Inc -I ../Drivers/STM32L0xx_HAL_Driver/Inc -I ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I ../Drivers/CMSIS/Include --C99 -I.\RTE\_Low_Power_mode_l073_RTC_BG96 -IC:\Keil_v5\ARM\PACK\ARM\CMSIS\5.3.0\CMSIS\Include -IC:\Keil_v5\ARM\PACK\Keil\STM32L0xx_DFP\2.0.0\Drivers\CMSIS\Device\ST\STM32L0xx\Include -D__UVISION_VERSION="524" -D_RTE_ -DSTM32L073xx -DUSE_HAL_DRIVER -DSTM32L073xx -o "low power mode l073 rtc bg96\rtc.o" --omf_browse "low power mode l073 rtc bg96\rtc.crf" --depend "low power mode l073 rtc bg96\rtc.d")
I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h)(0x5B10E3C3)
......@@ -211,7 +211,7 @@ I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim.h)(0x5B10E3C4)
I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim_ex.h)(0x5B10E3C4)
I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart.h)(0x5B10E3C4)
I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart_ex.h)(0x5B10E3C4)
I (../Inc/RTC.h)(0x5B4EEE65)
I (../Inc/RTC.h)(0x5B4EF8A5)
I (../Inc/UART.h)(0x5B473F14)
F (.\UART.c)(0x5B473D68)(-c --cpu Cortex-M0+ -D__EVAL -D__MICROLIB -g -O3 --apcs=interwork --split_sections -I ../Inc -I ../Drivers/STM32L0xx_HAL_Driver/Inc -I ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I ../Drivers/CMSIS/Include --C99 -I.\RTE\_Low_Power_mode_l073_RTC_BG96 -IC:\Keil_v5\ARM\PACK\ARM\CMSIS\5.3.0\CMSIS\Include -IC:\Keil_v5\ARM\PACK\Keil\STM32L0xx_DFP\2.0.0\Drivers\CMSIS\Device\ST\STM32L0xx\Include -D__UVISION_VERSION="524" -D_RTE_ -DSTM32L073xx -DUSE_HAL_DRIVER -DSTM32L073xx -o "low power mode l073 rtc bg96\uart.o" --omf_browse "low power mode l073 rtc bg96\uart.crf" --depend "low power mode l073 rtc bg96\uart.d")
I (../Inc/UART.h)(0x5B473F14)
......@@ -248,7 +248,7 @@ I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim.h)(0x5B10E3C4)
I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim_ex.h)(0x5B10E3C4)
I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart.h)(0x5B10E3C4)
I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart_ex.h)(0x5B10E3C4)
I (../Inc/RTC.h)(0x5B4EEE65)
I (../Inc/RTC.h)(0x5B4EF8A5)
F (startup_stm32l073xx.s)(0x5B473CE0)(--cpu Cortex-M0+ --pd "__EVAL SETA 1" -g --apcs=interwork --pd "__MICROLIB SETA 1" -I.\RTE\_Low_Power_mode_l073_RTC_BG96 -IC:\Keil_v5\ARM\PACK\ARM\CMSIS\5.3.0\CMSIS\Include -IC:\Keil_v5\ARM\PACK\Keil\STM32L0xx_DFP\2.0.0\Drivers\CMSIS\Device\ST\STM32L0xx\Include --pd "__UVISION_VERSION SETA 524" --pd "_RTE_ SETA 1" --pd "STM32L073xx SETA 1" --list startup_stm32l073xx.lst --xref -o "low power mode l073 rtc bg96\startup_stm32l073xx.o" --depend "low power mode l073 rtc bg96\startup_stm32l073xx.d")
F (../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.c)(0x5B10E3C5)(-c --cpu Cortex-M0+ -D__EVAL -D__MICROLIB -g -O3 --apcs=interwork --split_sections -I ../Inc -I ../Drivers/STM32L0xx_HAL_Driver/Inc -I ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I ../Drivers/CMSIS/Include --C99 -I.\RTE\_Low_Power_mode_l073_RTC_BG96 -IC:\Keil_v5\ARM\PACK\ARM\CMSIS\5.3.0\CMSIS\Include -IC:\Keil_v5\ARM\PACK\Keil\STM32L0xx_DFP\2.0.0\Drivers\CMSIS\Device\ST\STM32L0xx\Include -D__UVISION_VERSION="524" -D_RTE_ -DSTM32L073xx -DUSE_HAL_DRIVER -DSTM32L073xx -o "low power mode l073 rtc bg96\stm32l0xx_hal_rtc_ex.o" --omf_browse "low power mode l073 rtc bg96\stm32l0xx_hal_rtc_ex.crf" --depend "low power mode l073 rtc bg96\stm32l0xx_hal_rtc_ex.d")
I (../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h)(0x5B10E3C3)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment