aggiornati tempi

This commit is contained in:
andrea
2026-07-08 18:14:47 +02:00
parent 687c222259
commit 5cdb13c44a
198 changed files with 444007 additions and 500718 deletions

View File

@@ -117,9 +117,9 @@ const uint16_t deftab[EE_NUM_VIRTUAL_ADDR]={
310, //apM1start;
450, //apM1stop;
30, //apM2start;
310, //apM2stop;
340, //apM2stop;
340, //apM3start;
430, //apM3stop;
450, //apM3stop;
30, //apM4start;
430, //apM4stop;
10, //chM1start;
@@ -462,53 +462,101 @@ void loadDefault(void){
void loadEE(void){
char s [200];
EEW_Read(M1PWMAP, &m1pwmap);
EEW_Read(M1PWMCH, &m1pwmch);
EEW_Read(M2PWMAP, &m2pwmap);
EEW_Read(M2PWMCH, &m2pwmch);
EEW_Read(M3PWMAP, &m3pwmap);
EEW_Read(M3PWMCH, &m3pwmch);
EEW_Read(M4PWMAP, &m4pwmap);
EEW_Read(M4PWMCH, &m4pwmch);
EEW_Read(M1RAMPSTART, &mrampstart[M1-1]);
EEW_Read(M2RAMPSTART, &mrampstart[M2-1]);
EEW_Read(M3RAMPSTART, &mrampstart[M3-1]);
EEW_Read(M4RAMPSTART, &mrampstart[M4-1]);
EEW_Read(M1TIMEOUTMAN, &m1TimeoutMan);
EEW_Read(M2TIMEOUTMAN, &m2TimeoutMan);
EEW_Read(M3TIMEOUTMAN, &m3TimeoutMan);
EEW_Read(M4TIMEOUTMAN, &m4TimeoutMan);
m1pwmap=deftab[M1PWMAP];
m1pwmch=deftab[M1PWMCH];
m2pwmap=deftab[M2PWMAP];
m2pwmch=deftab[M2PWMCH];
m3pwmap=deftab[M3PWMAP];
m3pwmch=deftab[M3PWMCH];
m4pwmap=deftab[M4PWMAP];
m4pwmch=deftab[M4PWMCH];
EEW_Read(THANEM, &thanem);
EEW_Read(TANEM, &tanem);
EEW_Read(M1PWMMAN, &m1pwmMan);
EEW_Read(M2PWMMAN, &m2pwmMan);
EEW_Read(M3PWMMAN, &m3pwmMan);
EEW_Read(M4PWMMAN, &m4pwmMan);
EEW_Read(TRAMPMAN, &trampman);
EEW_Read(TRAMP, &tramp);
mrampstart[M1-1]=deftab[M1RAMPSTART];
mrampstart[M2-1]=deftab[M2RAMPSTART];
mrampstart[M3-1]=deftab[M3RAMPSTART];
mrampstart[M4-1]=deftab[M4RAMPSTART];
EEW_Read(APM1START,&apM1start);
EEW_Read(APM1STOP ,&apM1stop);
EEW_Read(APM2START,&apM2start);
EEW_Read(APM2STOP ,&apM2stop);
EEW_Read(APM3START,&apM3start);
EEW_Read(APM3STOP ,&apM3stop);
EEW_Read(APM4START,&apM4start);
EEW_Read(APM4STOP ,&apM4stop);
EEW_Read(CHM1START,&chM1start);
EEW_Read(CHM1STOP ,&chM1stop);
EEW_Read(CHM2START,&chM2start);
EEW_Read(CHM2STOP ,&chM2stop);
EEW_Read(CHM3START,&chM3start);
EEW_Read(CHM3STOP ,&chM3stop);
EEW_Read(CHM4START,&chM4start);
EEW_Read(CHM4STOP ,&chM4stop);
m1TimeoutMan=deftab[M1TIMEOUTMAN];
m2TimeoutMan=deftab[M2TIMEOUTMAN];
m3TimeoutMan=deftab[M3TIMEOUTMAN];
m4TimeoutMan=deftab[M4TIMEOUTMAN];
EEW_Read(FLAGPAR ,&flagPar);
thanem=deftab[THANEM];
tanem=deftab[TANEM];
m1pwmMan=deftab[M1PWMMAN];
m2pwmMan=deftab[M2PWMMAN];
m3pwmMan=deftab[M3PWMMAN];
m4pwmMan=deftab[M4PWMMAN];
trampman=deftab[TRAMPMAN];
tramp=deftab[TRAMP];
apM1start=deftab[APM1START];
apM1stop=deftab[APM1STOP];
apM2start=deftab[APM2START];
apM2stop=deftab[APM2STOP];
apM3start=deftab[APM3START];
apM3stop=deftab[APM3STOP];
apM4start=deftab[APM4START];
apM4stop=deftab[APM4STOP];
chM1start=deftab[CHM1START];
chM1stop=deftab[CHM1STOP];
chM2start=deftab[CHM2START];
chM2stop=deftab[CHM2START];
chM3start=deftab[CHM3START];
chM3stop=deftab[CHM3STOP];
chM4start=deftab[CHM4START];
chM4stop=deftab[CHM4STOP];
flagPar=deftab[FLAGPAR];
// EEW_Read(M1PWMAP, &m1pwmap);
// EEW_Read(M1PWMCH, &m1pwmch);
// EEW_Read(M2PWMAP, &m2pwmap);
// EEW_Read(M2PWMCH, &m2pwmch);
// EEW_Read(M3PWMAP, &m3pwmap);
// EEW_Read(M3PWMCH, &m3pwmch);
// EEW_Read(M4PWMAP, &m4pwmap);
// EEW_Read(M4PWMCH, &m4pwmch);
//
// EEW_Read(M1RAMPSTART, &mrampstart[M1-1]);
// EEW_Read(M2RAMPSTART, &mrampstart[M2-1]);
// EEW_Read(M3RAMPSTART, &mrampstart[M3-1]);
// EEW_Read(M4RAMPSTART, &mrampstart[M4-1]);
//
// EEW_Read(M1TIMEOUTMAN, &m1TimeoutMan);
// EEW_Read(M2TIMEOUTMAN, &m2TimeoutMan);
// EEW_Read(M3TIMEOUTMAN, &m3TimeoutMan);
// EEW_Read(M4TIMEOUTMAN, &m4TimeoutMan);
//
// EEW_Read(THANEM, &thanem);
// EEW_Read(TANEM, &tanem);
// EEW_Read(M1PWMMAN, &m1pwmMan);
// EEW_Read(M2PWMMAN, &m2pwmMan);
// EEW_Read(M3PWMMAN, &m3pwmMan);
// EEW_Read(M4PWMMAN, &m4pwmMan);
// EEW_Read(TRAMPMAN, &trampman);
// EEW_Read(TRAMP, &tramp);
//
// EEW_Read(APM1START,&apM1start);
// EEW_Read(APM1STOP ,&apM1stop);
// EEW_Read(APM2START,&apM2start);
// EEW_Read(APM2STOP ,&apM2stop);
// EEW_Read(APM3START,&apM3start);
// EEW_Read(APM3STOP ,&apM3stop);
// EEW_Read(APM4START,&apM4start);
// EEW_Read(APM4STOP ,&apM4stop);
// EEW_Read(CHM1START,&chM1start);
// EEW_Read(CHM1STOP ,&chM1stop);
// EEW_Read(CHM2START,&chM2start);
// EEW_Read(CHM2STOP ,&chM2stop);
// EEW_Read(CHM3START,&chM3start);
// EEW_Read(CHM3STOP ,&chM3stop);
// EEW_Read(CHM4START,&chM4start);
// EEW_Read(CHM4STOP ,&chM4stop);
//
// EEW_Read(FLAGPAR ,&flagPar);
sprintf((char*)s,"LoadEE\n");
HAL_UART_Transmit(&huart1,(uint8_t*) s, strlen(s), HAL_MAX_DELAY);

View File

@@ -711,12 +711,12 @@ int main(void) {
; //errore eeprom
}
loadEE();
if (flagPar != VERSIONE) {
HAL_GPIO_WritePin(GPIOA, BUZ_Pin, GPIO_PIN_SET);
loadDefault();
loadEE();
HAL_GPIO_WritePin(GPIOA, BUZ_Pin, GPIO_PIN_RESET);
}
// if (flagPar != VERSIONE) {
// HAL_GPIO_WritePin(GPIOA, BUZ_Pin, GPIO_PIN_SET);
// loadDefault();
// loadEE();
// HAL_GPIO_WritePin(GPIOA, BUZ_Pin, GPIO_PIN_RESET);
// }
/* USER CODE END 2 */
/* Infinite loop */

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,12 @@
../Core/Src/main.c:149:6:HAL_SYSTICK_Callback 25
../Core/Src/main.c:246:6:managePulsanti 23
../Core/Src/main.c:313:6:manageCiclo 102
../Core/Src/main.c:667:5:main 2
../Core/Src/main.c:758:6:SystemClock_Config 4
../Core/Src/main.c:802:13:MX_ADC1_Init 7
../Core/Src/main.c:878:13:MX_TIM2_Init 9
../Core/Src/main.c:950:13:MX_TIM4_Init 9
../Core/Src/main.c:1020:13:MX_USART1_UART_Init 2
../Core/Src/main.c:1049:13:MX_DMA_Init 1
../Core/Src/main.c:1066:13:MX_GPIO_Init 1
../Core/Src/main.c:1142:6:Error_Handler 1

Binary file not shown.

View File

@@ -0,0 +1,12 @@
../Core/Src/main.c:149:6:HAL_SYSTICK_Callback 16 static
../Core/Src/main.c:246:6:managePulsanti 8 static
../Core/Src/main.c:313:6:manageCiclo 24 static
../Core/Src/main.c:667:5:main 8 static
../Core/Src/main.c:758:6:SystemClock_Config 88 static
../Core/Src/main.c:802:13:MX_ADC1_Init 24 static
../Core/Src/main.c:878:13:MX_TIM2_Init 64 static
../Core/Src/main.c:950:13:MX_TIM4_Init 64 static
../Core/Src/main.c:1020:13:MX_USART1_UART_Init 8 static
../Core/Src/main.c:1049:13:MX_DMA_Init 16 static
../Core/Src/main.c:1066:13:MX_GPIO_Init 40 static
../Core/Src/main.c:1142:6:Error_Handler 4 static,ignoring_inline_asm

View File

@@ -1,11 +0,0 @@
../Core/Src/stm32f1xx_it.c:70:6:NMI_Handler 1
../Core/Src/stm32f1xx_it.c:85:6:HardFault_Handler 1
../Core/Src/stm32f1xx_it.c:100:6:MemManage_Handler 1
../Core/Src/stm32f1xx_it.c:115:6:BusFault_Handler 1
../Core/Src/stm32f1xx_it.c:130:6:UsageFault_Handler 1
../Core/Src/stm32f1xx_it.c:145:6:SVC_Handler 1
../Core/Src/stm32f1xx_it.c:158:6:DebugMon_Handler 1
../Core/Src/stm32f1xx_it.c:171:6:PendSV_Handler 1
../Core/Src/stm32f1xx_it.c:184:6:SysTick_Handler 1
../Core/Src/stm32f1xx_it.c:205:6:DMA1_Channel1_IRQHandler 1
../Core/Src/stm32f1xx_it.c:219:6:USB_LP_CAN1_RX0_IRQHandler 1

View File

@@ -1,64 +0,0 @@
Core/Src/stm32f1xx_it.o: ../Core/Src/stm32f1xx_it.c ../Core/Inc/main.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h \
../Core/Inc/stm32f1xx_hal_conf.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h \
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h \
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h \
../Drivers/CMSIS/Include/core_cm3.h \
../Drivers/CMSIS/Include/cmsis_version.h \
../Drivers/CMSIS/Include/cmsis_compiler.h \
../Drivers/CMSIS/Include/cmsis_gcc.h \
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_usb.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd_ex.h \
../Core/Inc/stm32f1xx_it.h
../Core/Inc/main.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h:
../Core/Inc/stm32f1xx_hal_conf.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h:
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h:
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h:
../Drivers/CMSIS/Include/core_cm3.h:
../Drivers/CMSIS/Include/cmsis_version.h:
../Drivers/CMSIS/Include/cmsis_compiler.h:
../Drivers/CMSIS/Include/cmsis_gcc.h:
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_usb.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd_ex.h:
../Core/Inc/stm32f1xx_it.h:

View File

@@ -1,11 +0,0 @@
../Core/Src/stm32f1xx_it.c:70:6:NMI_Handler 4 static
../Core/Src/stm32f1xx_it.c:85:6:HardFault_Handler 4 static
../Core/Src/stm32f1xx_it.c:100:6:MemManage_Handler 4 static
../Core/Src/stm32f1xx_it.c:115:6:BusFault_Handler 4 static
../Core/Src/stm32f1xx_it.c:130:6:UsageFault_Handler 4 static
../Core/Src/stm32f1xx_it.c:145:6:SVC_Handler 4 static
../Core/Src/stm32f1xx_it.c:158:6:DebugMon_Handler 4 static
../Core/Src/stm32f1xx_it.c:171:6:PendSV_Handler 4 static
../Core/Src/stm32f1xx_it.c:184:6:SysTick_Handler 8 static
../Core/Src/stm32f1xx_it.c:205:6:DMA1_Channel1_IRQHandler 8 static
../Core/Src/stm32f1xx_it.c:219:6:USB_LP_CAN1_RX0_IRQHandler 8 static

View File

@@ -1,18 +0,0 @@
../Core/Src/syscalls.c:44:6:initialise_monitor_handles 1
../Core/Src/syscalls.c:48:5:_getpid 1
../Core/Src/syscalls.c:53:5:_kill 1
../Core/Src/syscalls.c:61:6:_exit 1
../Core/Src/syscalls.c:67:27:_read 2
../Core/Src/syscalls.c:80:27:_write 2
../Core/Src/syscalls.c:92:5:_close 1
../Core/Src/syscalls.c:99:5:_fstat 1
../Core/Src/syscalls.c:106:5:_isatty 1
../Core/Src/syscalls.c:112:5:_lseek 1
../Core/Src/syscalls.c:120:5:_open 1
../Core/Src/syscalls.c:128:5:_wait 1
../Core/Src/syscalls.c:135:5:_unlink 1
../Core/Src/syscalls.c:142:5:_times 1
../Core/Src/syscalls.c:148:5:_stat 1
../Core/Src/syscalls.c:155:5:_link 1
../Core/Src/syscalls.c:163:5:_fork 1
../Core/Src/syscalls.c:169:5:_execve 1

View File

@@ -1 +0,0 @@
Core/Src/syscalls.o: ../Core/Src/syscalls.c

View File

@@ -1,18 +0,0 @@
../Core/Src/syscalls.c:44:6:initialise_monitor_handles 4 static
../Core/Src/syscalls.c:48:5:_getpid 4 static
../Core/Src/syscalls.c:53:5:_kill 16 static
../Core/Src/syscalls.c:61:6:_exit 16 static
../Core/Src/syscalls.c:67:27:_read 32 static
../Core/Src/syscalls.c:80:27:_write 32 static
../Core/Src/syscalls.c:92:5:_close 16 static
../Core/Src/syscalls.c:99:5:_fstat 16 static
../Core/Src/syscalls.c:106:5:_isatty 16 static
../Core/Src/syscalls.c:112:5:_lseek 24 static
../Core/Src/syscalls.c:120:5:_open 12 static
../Core/Src/syscalls.c:128:5:_wait 16 static
../Core/Src/syscalls.c:135:5:_unlink 16 static
../Core/Src/syscalls.c:142:5:_times 16 static
../Core/Src/syscalls.c:148:5:_stat 16 static
../Core/Src/syscalls.c:155:5:_link 16 static
../Core/Src/syscalls.c:163:5:_fork 8 static
../Core/Src/syscalls.c:169:5:_execve 24 static

View File

@@ -1 +0,0 @@
../Core/Src/sysmem.c:53:7:_sbrk 3

View File

@@ -1 +0,0 @@
Core/Src/sysmem.o: ../Core/Src/sysmem.c

View File

@@ -1 +0,0 @@
../Core/Src/sysmem.c:53:7:_sbrk 32 static

View File

@@ -1,2 +0,0 @@
../Core/Src/system_stm32f1xx.c:175:6:SystemInit 1
../Core/Src/system_stm32f1xx.c:224:6:SystemCoreClockUpdate 7

View File

@@ -1,61 +0,0 @@
Core/Src/system_stm32f1xx.o: ../Core/Src/system_stm32f1xx.c \
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h \
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h \
../Drivers/CMSIS/Include/core_cm3.h \
../Drivers/CMSIS/Include/cmsis_version.h \
../Drivers/CMSIS/Include/cmsis_compiler.h \
../Drivers/CMSIS/Include/cmsis_gcc.h \
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h \
../Core/Inc/stm32f1xx_hal_conf.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_usb.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd_ex.h
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h:
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h:
../Drivers/CMSIS/Include/core_cm3.h:
../Drivers/CMSIS/Include/cmsis_version.h:
../Drivers/CMSIS/Include/cmsis_compiler.h:
../Drivers/CMSIS/Include/cmsis_gcc.h:
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h:
../Core/Inc/stm32f1xx_hal_conf.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_usb.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd_ex.h:

View File

@@ -1,2 +0,0 @@
../Core/Src/system_stm32f1xx.c:175:6:SystemInit 4 static
../Core/Src/system_stm32f1xx.c:224:6:SystemCoreClockUpdate 24 static

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,6 @@
../Core/Src/main.c:149:6:HAL_SYSTICK_Callback 25
../Core/Src/main.c:246:6:managePulsanti 24
../Core/Src/main.c:313:6:manageCiclo 100
../Core/Src/main.c:758:6:SystemClock_Config 4
../Core/Src/main.c:667:5:main 25
../Core/Src/main.c:1142:6:Error_Handler 1

Binary file not shown.

View File

@@ -0,0 +1,6 @@
../Core/Src/main.c:149:6:HAL_SYSTICK_Callback 16 static
../Core/Src/main.c:246:6:managePulsanti 16 static
../Core/Src/main.c:313:6:manageCiclo 40 static
../Core/Src/main.c:758:6:SystemClock_Config 88 static,ignoring_inline_asm
../Core/Src/main.c:667:5:main 80 static,ignoring_inline_asm
../Core/Src/main.c:1142:6:Error_Handler 0 static,ignoring_inline_asm

View File

@@ -1,11 +0,0 @@
../Core/Src/stm32f1xx_it.c:70:6:NMI_Handler 1
../Core/Src/stm32f1xx_it.c:85:6:HardFault_Handler 1
../Core/Src/stm32f1xx_it.c:100:6:MemManage_Handler 1
../Core/Src/stm32f1xx_it.c:115:6:BusFault_Handler 1
../Core/Src/stm32f1xx_it.c:130:6:UsageFault_Handler 1
../Core/Src/stm32f1xx_it.c:145:6:SVC_Handler 1
../Core/Src/stm32f1xx_it.c:158:6:DebugMon_Handler 1
../Core/Src/stm32f1xx_it.c:171:6:PendSV_Handler 1
../Core/Src/stm32f1xx_it.c:184:6:SysTick_Handler 1
../Core/Src/stm32f1xx_it.c:205:6:DMA1_Channel1_IRQHandler 1
../Core/Src/stm32f1xx_it.c:219:6:USB_LP_CAN1_RX0_IRQHandler 1

View File

@@ -1,64 +0,0 @@
Core/Src/stm32f1xx_it.o: ../Core/Src/stm32f1xx_it.c ../Core/Inc/main.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h \
../Core/Inc/stm32f1xx_hal_conf.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h \
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h \
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h \
../Drivers/CMSIS/Include/core_cm3.h \
../Drivers/CMSIS/Include/cmsis_version.h \
../Drivers/CMSIS/Include/cmsis_compiler.h \
../Drivers/CMSIS/Include/cmsis_gcc.h \
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_usb.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd_ex.h \
../Core/Inc/stm32f1xx_it.h
../Core/Inc/main.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h:
../Core/Inc/stm32f1xx_hal_conf.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h:
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h:
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h:
../Drivers/CMSIS/Include/core_cm3.h:
../Drivers/CMSIS/Include/cmsis_version.h:
../Drivers/CMSIS/Include/cmsis_compiler.h:
../Drivers/CMSIS/Include/cmsis_gcc.h:
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_usb.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd_ex.h:
../Core/Inc/stm32f1xx_it.h:

View File

@@ -1,11 +0,0 @@
../Core/Src/stm32f1xx_it.c:70:6:NMI_Handler 0 static
../Core/Src/stm32f1xx_it.c:85:6:HardFault_Handler 0 static
../Core/Src/stm32f1xx_it.c:100:6:MemManage_Handler 0 static
../Core/Src/stm32f1xx_it.c:115:6:BusFault_Handler 0 static
../Core/Src/stm32f1xx_it.c:130:6:UsageFault_Handler 0 static
../Core/Src/stm32f1xx_it.c:145:6:SVC_Handler 0 static
../Core/Src/stm32f1xx_it.c:158:6:DebugMon_Handler 0 static
../Core/Src/stm32f1xx_it.c:171:6:PendSV_Handler 0 static
../Core/Src/stm32f1xx_it.c:184:6:SysTick_Handler 8 static
../Core/Src/stm32f1xx_it.c:205:6:DMA1_Channel1_IRQHandler 0 static
../Core/Src/stm32f1xx_it.c:219:6:USB_LP_CAN1_RX0_IRQHandler 0 static

View File

@@ -49,7 +49,7 @@ C_DEPS += \
# Each subdirectory must supply rules for building sources it contributes
Core/Src/%.o Core/Src/%.su Core/Src/%.cyclo: ../Core/Src/%.c Core/Src/subdir.mk
arm-none-eabi-gcc "$<" -mcpu=cortex-m3 -std=gnu11 -DUSE_HAL_DRIVER -DSTM32F103xB -c -I../Core/Inc -I../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I../Drivers/STM32F1xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I../Drivers/CMSIS/Include -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
arm-none-eabi-gcc "$<" -mcpu=cortex-m3 -std=gnu11 -DUSE_HAL_DRIVER -DSTM32F103xB -c -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Core/Inc -I../Drivers/STM32F1xx_HAL_Driver/Inc -I../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -I../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I../Drivers/CMSIS/Include -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
clean: clean-Core-2f-Src

View File

@@ -1,18 +0,0 @@
../Core/Src/syscalls.c:44:6:initialise_monitor_handles 1
../Core/Src/syscalls.c:48:5:_getpid 1
../Core/Src/syscalls.c:53:5:_kill 1
../Core/Src/syscalls.c:61:6:_exit 1
../Core/Src/syscalls.c:67:27:_read 2
../Core/Src/syscalls.c:80:27:_write 2
../Core/Src/syscalls.c:92:5:_close 1
../Core/Src/syscalls.c:99:5:_fstat 1
../Core/Src/syscalls.c:106:5:_isatty 1
../Core/Src/syscalls.c:112:5:_lseek 1
../Core/Src/syscalls.c:120:5:_open 1
../Core/Src/syscalls.c:128:5:_wait 1
../Core/Src/syscalls.c:135:5:_unlink 1
../Core/Src/syscalls.c:142:5:_times 1
../Core/Src/syscalls.c:148:5:_stat 1
../Core/Src/syscalls.c:155:5:_link 1
../Core/Src/syscalls.c:163:5:_fork 1
../Core/Src/syscalls.c:169:5:_execve 1

View File

@@ -1 +0,0 @@
Core/Src/syscalls.o: ../Core/Src/syscalls.c

View File

@@ -1,18 +0,0 @@
../Core/Src/syscalls.c:44:6:initialise_monitor_handles 0 static
../Core/Src/syscalls.c:48:5:_getpid 0 static
../Core/Src/syscalls.c:53:5:_kill 8 static
../Core/Src/syscalls.c:61:6:_exit 8 static
../Core/Src/syscalls.c:67:27:_read 16 static
../Core/Src/syscalls.c:80:27:_write 16 static
../Core/Src/syscalls.c:92:5:_close 0 static
../Core/Src/syscalls.c:99:5:_fstat 0 static
../Core/Src/syscalls.c:106:5:_isatty 0 static
../Core/Src/syscalls.c:112:5:_lseek 0 static
../Core/Src/syscalls.c:120:5:_open 0 static
../Core/Src/syscalls.c:128:5:_wait 8 static
../Core/Src/syscalls.c:135:5:_unlink 8 static
../Core/Src/syscalls.c:142:5:_times 0 static
../Core/Src/syscalls.c:148:5:_stat 0 static
../Core/Src/syscalls.c:155:5:_link 8 static
../Core/Src/syscalls.c:163:5:_fork 8 static
../Core/Src/syscalls.c:169:5:_execve 8 static

View File

@@ -1 +0,0 @@
../Core/Src/sysmem.c:53:7:_sbrk 3

View File

@@ -1 +0,0 @@
Core/Src/sysmem.o: ../Core/Src/sysmem.c

View File

@@ -1 +0,0 @@
../Core/Src/sysmem.c:53:7:_sbrk 8 static

View File

@@ -1,2 +0,0 @@
../Core/Src/system_stm32f1xx.c:175:6:SystemInit 1
../Core/Src/system_stm32f1xx.c:224:6:SystemCoreClockUpdate 5

View File

@@ -1,61 +0,0 @@
Core/Src/system_stm32f1xx.o: ../Core/Src/system_stm32f1xx.c \
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h \
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h \
../Drivers/CMSIS/Include/core_cm3.h \
../Drivers/CMSIS/Include/cmsis_version.h \
../Drivers/CMSIS/Include/cmsis_compiler.h \
../Drivers/CMSIS/Include/cmsis_gcc.h \
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h \
../Core/Inc/stm32f1xx_hal_conf.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_usb.h \
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd_ex.h
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h:
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h:
../Drivers/CMSIS/Include/core_cm3.h:
../Drivers/CMSIS/Include/cmsis_version.h:
../Drivers/CMSIS/Include/cmsis_compiler.h:
../Drivers/CMSIS/Include/cmsis_gcc.h:
../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h:
../Core/Inc/stm32f1xx_hal_conf.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_usb.h:
../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd_ex.h:

View File

@@ -1,2 +0,0 @@
../Core/Src/system_stm32f1xx.c:175:6:SystemInit 0 static
../Core/Src/system_stm32f1xx.c:224:6:SystemCoreClockUpdate 0 static

View File

@@ -70,7 +70,7 @@ C_DEPS += \
# Each subdirectory must supply rules for building sources it contributes
Drivers/STM32F1xx_HAL_Driver/Src/%.o Drivers/STM32F1xx_HAL_Driver/Src/%.su Drivers/STM32F1xx_HAL_Driver/Src/%.cyclo: ../Drivers/STM32F1xx_HAL_Driver/Src/%.c Drivers/STM32F1xx_HAL_Driver/Src/subdir.mk
arm-none-eabi-gcc "$<" -mcpu=cortex-m3 -std=gnu11 -DUSE_HAL_DRIVER -DSTM32F103xB -c -I../Core/Inc -I../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I../Drivers/STM32F1xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I../Drivers/CMSIS/Include -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
arm-none-eabi-gcc "$<" -mcpu=cortex-m3 -std=gnu11 -DUSE_HAL_DRIVER -DSTM32F103xB -c -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Core/Inc -I../Drivers/STM32F1xx_HAL_Driver/Inc -I../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -I../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I../Drivers/CMSIS/Include -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
clean: clean-Drivers-2f-STM32F1xx_HAL_Driver-2f-Src

View File

@@ -16,7 +16,7 @@ C_DEPS += \
# Each subdirectory must supply rules for building sources it contributes
Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/%.o Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/%.su Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/%.cyclo: ../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/%.c Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/subdir.mk
arm-none-eabi-gcc "$<" -mcpu=cortex-m3 -std=gnu11 -DUSE_HAL_DRIVER -DSTM32F103xB -c -I../Core/Inc -I../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I../Drivers/STM32F1xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I../Drivers/CMSIS/Include -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
arm-none-eabi-gcc "$<" -mcpu=cortex-m3 -std=gnu11 -DUSE_HAL_DRIVER -DSTM32F103xB -c -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Core/Inc -I../Drivers/STM32F1xx_HAL_Driver/Inc -I../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -I../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I../Drivers/CMSIS/Include -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
clean: clean-Middlewares-2f-ST-2f-STM32_USB_Device_Library-2f-Class-2f-CDC-2f-Src

View File

@@ -22,7 +22,7 @@ C_DEPS += \
# Each subdirectory must supply rules for building sources it contributes
Middlewares/ST/STM32_USB_Device_Library/Core/Src/%.o Middlewares/ST/STM32_USB_Device_Library/Core/Src/%.su Middlewares/ST/STM32_USB_Device_Library/Core/Src/%.cyclo: ../Middlewares/ST/STM32_USB_Device_Library/Core/Src/%.c Middlewares/ST/STM32_USB_Device_Library/Core/Src/subdir.mk
arm-none-eabi-gcc "$<" -mcpu=cortex-m3 -std=gnu11 -DUSE_HAL_DRIVER -DSTM32F103xB -c -I../Core/Inc -I../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I../Drivers/STM32F1xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I../Drivers/CMSIS/Include -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
arm-none-eabi-gcc "$<" -mcpu=cortex-m3 -std=gnu11 -DUSE_HAL_DRIVER -DSTM32F103xB -c -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Core/Inc -I../Drivers/STM32F1xx_HAL_Driver/Inc -I../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -I../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I../Drivers/CMSIS/Include -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
clean: clean-Middlewares-2f-ST-2f-STM32_USB_Device_Library-2f-Core-2f-Src

View File

@@ -22,7 +22,7 @@ C_DEPS += \
# Each subdirectory must supply rules for building sources it contributes
USB_DEVICE/App/%.o USB_DEVICE/App/%.su USB_DEVICE/App/%.cyclo: ../USB_DEVICE/App/%.c USB_DEVICE/App/subdir.mk
arm-none-eabi-gcc "$<" -mcpu=cortex-m3 -std=gnu11 -DUSE_HAL_DRIVER -DSTM32F103xB -c -I../Core/Inc -I../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I../Drivers/STM32F1xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I../Drivers/CMSIS/Include -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
arm-none-eabi-gcc "$<" -mcpu=cortex-m3 -std=gnu11 -DUSE_HAL_DRIVER -DSTM32F103xB -c -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Core/Inc -I../Drivers/STM32F1xx_HAL_Driver/Inc -I../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -I../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I../Drivers/CMSIS/Include -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
clean: clean-USB_DEVICE-2f-App

View File

@@ -16,7 +16,7 @@ C_DEPS += \
# Each subdirectory must supply rules for building sources it contributes
USB_DEVICE/Target/%.o USB_DEVICE/Target/%.su USB_DEVICE/Target/%.cyclo: ../USB_DEVICE/Target/%.c USB_DEVICE/Target/subdir.mk
arm-none-eabi-gcc "$<" -mcpu=cortex-m3 -std=gnu11 -DUSE_HAL_DRIVER -DSTM32F103xB -c -I../Core/Inc -I../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I../Drivers/STM32F1xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I../Drivers/CMSIS/Include -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
arm-none-eabi-gcc "$<" -mcpu=cortex-m3 -std=gnu11 -DUSE_HAL_DRIVER -DSTM32F103xB -c -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Core/Inc -I../Drivers/STM32F1xx_HAL_Driver/Inc -I../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -I../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I../Drivers/CMSIS/Include -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
clean: clean-USB_DEVICE-2f-Target

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,3 @@
../Core/Src/eeprom.h:170:24:EEW_Read 1
../Core/Src/eeprom.h:175:24:EEW_Write 1
../Core/Src/eeprom.c:185:17:EE_GetPageStatus 1
../Core/Src/eeprom.c:190:26:EE_FlashProgramHalfWord 1

View File

@@ -1,4 +1,3 @@
../Core/Src/eeprom.h:170:24:EEW_Read 16 static
../Core/Src/eeprom.h:175:24:EEW_Write 16 static
../Core/Src/eeprom.c:185:17:EE_GetPageStatus 16 static
../Core/Src/eeprom.c:190:26:EE_FlashProgramHalfWord 32 static

View File

@@ -1,7 +1,7 @@
../Core/Src/main.c:149:6:HAL_SYSTICK_Callback 25
../Core/Src/main.c:246:6:managePulsanti 23
../Core/Src/main.c:313:6:manageCiclo 102
../Core/Src/main.c:667:5:main 3
../Core/Src/main.c:667:5:main 2
../Core/Src/main.c:758:6:SystemClock_Config 4
../Core/Src/main.c:802:13:MX_ADC1_Init 7
../Core/Src/main.c:878:13:MX_TIM2_Init 9

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,3 @@
../Core/Src/eeprom.h:170:24:EEW_Read 1
../Core/Src/eeprom.h:175:24:EEW_Write 1
../Core/Src/eeprom.c:185:17:EE_GetPageStatus 1
../Core/Src/eeprom.c:190:26:EE_FlashProgramHalfWord 1

View File

@@ -1,4 +1,3 @@
../Core/Src/eeprom.h:170:24:EEW_Read 16 static
../Core/Src/eeprom.h:175:24:EEW_Write 16 static
../Core/Src/eeprom.c:185:17:EE_GetPageStatus 16 static
../Core/Src/eeprom.c:190:26:EE_FlashProgramHalfWord 32 static

View File

@@ -1,7 +1,7 @@
../Core/Src/main.c:149:6:HAL_SYSTICK_Callback 25
../Core/Src/main.c:246:6:managePulsanti 23
../Core/Src/main.c:313:6:manageCiclo 102
../Core/Src/main.c:667:5:main 3
../Core/Src/main.c:667:5:main 2
../Core/Src/main.c:758:6:SystemClock_Config 4
../Core/Src/main.c:802:13:MX_ADC1_Init 7
../Core/Src/main.c:878:13:MX_TIM2_Init 9

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,3 @@
../Core/Src/eeprom.h:170:24:EEW_Read 1
../Core/Src/eeprom.h:175:24:EEW_Write 1
../Core/Src/eeprom.c:185:17:EE_GetPageStatus 1
../Core/Src/eeprom.c:190:26:EE_FlashProgramHalfWord 1

View File

@@ -1,4 +1,3 @@
../Core/Src/eeprom.h:170:24:EEW_Read 16 static
../Core/Src/eeprom.h:175:24:EEW_Write 16 static
../Core/Src/eeprom.c:185:17:EE_GetPageStatus 16 static
../Core/Src/eeprom.c:190:26:EE_FlashProgramHalfWord 32 static

View File

@@ -1,7 +1,7 @@
../Core/Src/main.c:149:6:HAL_SYSTICK_Callback 25
../Core/Src/main.c:246:6:managePulsanti 23
../Core/Src/main.c:313:6:manageCiclo 102
../Core/Src/main.c:667:5:main 3
../Core/Src/main.c:667:5:main 2
../Core/Src/main.c:758:6:SystemClock_Config 4
../Core/Src/main.c:802:13:MX_ADC1_Init 7
../Core/Src/main.c:878:13:MX_TIM2_Init 9

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,3 @@
../Core/Src/eeprom.h:170:24:EEW_Read 1
../Core/Src/eeprom.h:175:24:EEW_Write 1
../Core/Src/eeprom.c:185:17:EE_GetPageStatus 1
../Core/Src/eeprom.c:190:26:EE_FlashProgramHalfWord 1

View File

@@ -1,4 +1,3 @@
../Core/Src/eeprom.h:170:24:EEW_Read 16 static
../Core/Src/eeprom.h:175:24:EEW_Write 16 static
../Core/Src/eeprom.c:185:17:EE_GetPageStatus 16 static
../Core/Src/eeprom.c:190:26:EE_FlashProgramHalfWord 32 static

View File

@@ -1,7 +1,7 @@
../Core/Src/main.c:149:6:HAL_SYSTICK_Callback 25
../Core/Src/main.c:246:6:managePulsanti 23
../Core/Src/main.c:313:6:manageCiclo 102
../Core/Src/main.c:667:5:main 3
../Core/Src/main.c:667:5:main 2
../Core/Src/main.c:758:6:SystemClock_Config 4
../Core/Src/main.c:802:13:MX_ADC1_Init 7
../Core/Src/main.c:878:13:MX_TIM2_Init 9

Some files were not shown because too many files have changed in this diff Show More