added dac support

This commit is contained in:
Ayzen
2026-02-18 16:04:34 +03:00
parent b1ae9a5e49
commit db80907a0b
20 changed files with 28584 additions and 28042 deletions

View File

@ -170,8 +170,9 @@ Mcu.Pin82=PD12
Mcu.Pin83=PD13
Mcu.Pin84=PE2
Mcu.Pin85=PE3
Mcu.Pin86=PE8
Mcu.Pin9=PH1/OSC_OUT
Mcu.PinsNb=86
Mcu.PinsNb=87
Mcu.ThirdPartyNb=0
Mcu.UserConstants=
Mcu.UserName=STM32F767ZITx
@ -219,11 +220,10 @@ PA3.GPIOParameters=GPIO_Label
PA3.GPIO_Label=REF2_ON
PA3.Locked=true
PA3.Signal=GPIO_Output
PA4.GPIOParameters=PinState,GPIO_Label
PA4.GPIO_Label=DAC_TEC2_CS
PA4.GPIOParameters=GPIO_Label
PA4.GPIO_Label=PA4_DAC_OUT
PA4.Locked=true
PA4.PinState=GPIO_PIN_SET
PA4.Signal=GPIO_Output
PA4.Signal=DACx_OUT1
PA5.Locked=true
PA5.Mode=TX_Only_Simplex_Unidirect_Master
PA5.Signal=SPI6_SCK
@ -363,6 +363,11 @@ PE3.GPIO_Label=DS1809_DC
PE3.Locked=true
PE3.PinState=GPIO_PIN_SET
PE3.Signal=GPIO_Output
PE8.GPIOParameters=PinState,GPIO_Label
PE8.GPIO_Label=DAC_TEC2_CS
PE8.Locked=true
PE8.PinState=GPIO_PIN_SET
PE8.Signal=GPIO_Output
PE10.GPIOParameters=GPIO_Label
PE10.GPIO_Label=ADC_MPD1_CS
PE10.Locked=true

View File

@ -95,8 +95,8 @@ void Set_LTEC(uint8_t, uint16_t);
#define TECEN2_GPIO_Port GPIOA
#define REF2_ON_Pin GPIO_PIN_3
#define REF2_ON_GPIO_Port GPIOA
#define DAC_TEC2_CS_Pin GPIO_PIN_4
#define DAC_TEC2_CS_GPIO_Port GPIOA
#define DAC_TEC2_CS_Pin GPIO_PIN_8
#define DAC_TEC2_CS_GPIO_Port GPIOE
#define DAC_LD2_CS_Pin GPIO_PIN_6
#define DAC_LD2_CS_GPIO_Port GPIOA
#define LD2_EN_Pin GPIO_PIN_4
@ -190,6 +190,7 @@ void Set_LTEC(uint8_t, uint16_t);
#define AD9102_CMD 10
#define AD9833_CMD 11
#define DS1809_CMD 12
#define STM32_DAC_CMD 13
#define SD_ERR 0x01
#define UART_ERR 0x02
@ -215,6 +216,9 @@ void Set_LTEC(uint8_t, uint16_t);
#define DS1809_CMD_HEADER 0xAAAA
#define DS1809_CMD_8 10 // total bytes including header
#define DS1809_CMD_WORDS 4 // data words (flags, count, pulse_ms, checksum)
#define STM32_DAC_CMD_HEADER 0xBBBB
#define STM32_DAC_CMD_8 10 // total bytes including header
#define STM32_DAC_CMD_WORDS 4 // data words (flags, dac_code, reserved, checksum)
#define AD9102_ON_SPI2 1

View File

@ -103,6 +103,8 @@
#define DS1809_FLAG_UC 0x0001u
#define DS1809_FLAG_DC 0x0002u
#define DS1809_PULSE_MS_DEFAULT 2u
#define STM32_DAC_FLAG_ENABLE 0x0001u
#define STM32_DAC_CODE_MAX 4095u
/* USER CODE END PD */
/* Private macro -------------------------------------------------------------*/
@ -224,6 +226,8 @@ static void SPI2_SetMode(uint32_t polarity, uint32_t phase);
static void AD9833_WriteWord(uint16_t word);
static void AD9833_Apply(uint8_t enable, uint8_t triangle, uint32_t freq_word);
static void DS1809_Pulse(uint8_t uc, uint8_t dc, uint16_t count, uint16_t pulse_ms);
static void PA4_DAC_Init(void);
static void PA4_DAC_Set(uint16_t dac_code, uint8_t enable);
uint8_t CheckChecksum(uint16_t *pbuff);
uint16_t CalculateChecksum(uint16_t *pbuff, uint16_t len);
//int SD_Init(void);
@ -291,6 +295,7 @@ int main(void)
MX_TIM11_Init();
MX_TIM4_Init();
MX_TIM1_Init();
PA4_DAC_Init();
/* USER CODE BEGIN 2 */
Init_params();
//HAL_TIM_Base_Start(&htim11);
@ -629,6 +634,21 @@ int main(void)
UART_transmission_request = MESS_01;
CPU_state = CPU_state_old;
break;
case STM32_DAC_CMD://13 - Set STM32 internal DAC (PA4)
if (CalculateChecksum(COMMAND, STM32_DAC_CMD_WORDS - 1) == COMMAND[STM32_DAC_CMD_WORDS - 1])
{
uint16_t flags = COMMAND[0];
uint16_t dac_code = (uint16_t)(COMMAND[1] & 0x0FFFu);
uint8_t enable = (flags & STM32_DAC_FLAG_ENABLE) ? 1u : 0u;
PA4_DAC_Set(dac_code, enable);
}
else
{
State_Data[0] |= UART_DECODE_ERR;
}
UART_transmission_request = MESS_01;
CPU_state = CPU_state_old;
break;
case DECODE_TASK:
if (CheckChecksum(COMMAND))
{
@ -2140,10 +2160,8 @@ static void MX_GPIO_Init(void)
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
HAL_GPIO_Init(EN_5V1_GPIO_Port, &GPIO_InitStruct);
/*Configure GPIO pins : TECEN1_Pin TECEN2_Pin REF2_ON_Pin DAC_TEC2_CS_Pin
DAC_LD2_CS_Pin */
GPIO_InitStruct.Pin = TECEN1_Pin|TECEN2_Pin|REF2_ON_Pin|DAC_TEC2_CS_Pin
|DAC_LD2_CS_Pin;
/*Configure GPIO pins : TECEN1_Pin TECEN2_Pin REF2_ON_Pin DAC_LD2_CS_Pin */
GPIO_InitStruct.Pin = TECEN1_Pin|TECEN2_Pin|REF2_ON_Pin|DAC_LD2_CS_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
GPIO_InitStruct.Pull = GPIO_NOPULL;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
@ -2155,8 +2173,8 @@ static void MX_GPIO_Init(void)
GPIO_InitStruct.Pull = GPIO_NOPULL;
HAL_GPIO_Init(GPIOF, &GPIO_InitStruct);
/*Configure GPIO pins : ADC_MPD1_CS_Pin ADC_ThrLD1_CS_Pin */
GPIO_InitStruct.Pin = ADC_MPD1_CS_Pin|ADC_ThrLD1_CS_Pin;
/*Configure GPIO pins : ADC_MPD1_CS_Pin ADC_ThrLD1_CS_Pin DAC_TEC2_CS_Pin */
GPIO_InitStruct.Pin = ADC_MPD1_CS_Pin|ADC_ThrLD1_CS_Pin|DAC_TEC2_CS_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
GPIO_InitStruct.Pull = GPIO_NOPULL;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
@ -2332,6 +2350,7 @@ static void Init_params(void)
HAL_GPIO_WritePin(DAC_LD2_CS_GPIO_Port, DAC_LD2_CS_Pin, GPIO_PIN_SET);//End operation with LDAC2
HAL_GPIO_WritePin(DAC_TEC1_CS_GPIO_Port, DAC_TEC1_CS_Pin, GPIO_PIN_SET);//End operation with TEC1 DAC
HAL_GPIO_WritePin(DAC_TEC2_CS_GPIO_Port, DAC_TEC2_CS_Pin, GPIO_PIN_SET);//End operation with TEC2 DAC
PA4_DAC_Set(0u, 0u);
//------------------------------------------------------------------------------------------------------------------
//test = 11;
@ -2696,6 +2715,42 @@ static void AD9833_Apply(uint8_t enable, uint8_t triangle, uint32_t freq_word)
AD9833_WriteWord(control);
}
static void PA4_DAC_Init(void)
{
GPIO_InitTypeDef GPIO_InitStruct = {0};
__HAL_RCC_DAC_CLK_ENABLE();
__HAL_RCC_GPIOA_CLK_ENABLE();
GPIO_InitStruct.Pin = GPIO_PIN_4;
GPIO_InitStruct.Mode = GPIO_MODE_ANALOG;
GPIO_InitStruct.Pull = GPIO_NOPULL;
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
// Keep channel disabled until a dedicated serial command enables it.
DAC->CR &= ~(DAC_CR_EN1 | DAC_CR_TEN1 | DAC_CR_DMAEN1);
DAC->DHR12R1 = 0u;
}
static void PA4_DAC_Set(uint16_t dac_code, uint8_t enable)
{
if (dac_code > STM32_DAC_CODE_MAX)
{
dac_code = STM32_DAC_CODE_MAX;
}
DAC->DHR12R1 = dac_code;
if (enable)
{
DAC->CR |= DAC_CR_EN1;
}
else
{
DAC->CR &= ~DAC_CR_EN1;
}
}
static void DS1809_Pulse(uint8_t uc, uint8_t dc, uint16_t count, uint16_t pulse_ms)
{
for (uint16_t i = 0; i < count; i++)

View File

@ -487,6 +487,9 @@ void UART_RxCpltCallback(void)
case DS1809_CMD_HEADER: // DS1809 UC/DC pulse command
UART_rec_incr = 2;//timeout flag is still setting!
break;
case STM32_DAC_CMD_HEADER: // STM32 internal DAC command
UART_rec_incr = 2;//timeout flag is still setting!
break;
default: //error decoding header
UART_rec_incr = 0;
flg_tmt = 0;//Reset the timeout flag
@ -529,6 +532,16 @@ void UART_RxCpltCallback(void)
UART_rec_incr = 0;
flg_tmt = 0;//Reset the timeout flag
}
else if (UART_header == STM32_DAC_CMD_HEADER)
{
if ((UART_rec_incr & 0x0001) > 0)
COMMAND[(UART_rec_incr >> 1) - 1] += ((uint16_t)(uart_buf)) << 8;
else
COMMAND[(UART_rec_incr >> 1) - 1] = (uint16_t)(uart_buf);
CPU_state = STM32_DAC_CMD;
UART_rec_incr = 0;
flg_tmt = 0;//Reset the timeout flag
}
else
{
if ((UART_rec_incr&0x0001)>0)

View File

@ -1,4 +1,4 @@
ARM GAS /tmp/cc6OCjXR.s page 1
ARM GAS /tmp/ccwVm8tx.s page 1
1 .cpu cortex-m7
@ -58,7 +58,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
28:Src/File_Handling.c ****
29:Src/File_Handling.c ****
30:Src/File_Handling.c **** void Send_Uart (char *string)
ARM GAS /tmp/cc6OCjXR.s page 2
ARM GAS /tmp/ccwVm8tx.s page 2
31:Src/File_Handling.c **** {
@ -118,7 +118,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
75 0012 0120 movs r0, #1
76 .L2:
41:Src/File_Handling.c **** else return 0;
ARM GAS /tmp/cc6OCjXR.s page 3
ARM GAS /tmp/ccwVm8tx.s page 3
42:Src/File_Handling.c **** }
@ -178,7 +178,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
48:Src/File_Handling.c **** return 1;//else Send_Uart("ERROR!!! in UNMOUNTING SD CARD\n\n\n");
126 .loc 1 48 9 view .LVU21
127 0012 0120 movs r0, #1
ARM GAS /tmp/cc6OCjXR.s page 4
ARM GAS /tmp/ccwVm8tx.s page 4
128 .L8:
@ -238,7 +238,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
171 .LCFI2:
172 .cfi_def_cfa_offset 16
173 .cfi_offset 4, -16
ARM GAS /tmp/cc6OCjXR.s page 5
ARM GAS /tmp/ccwVm8tx.s page 5
174 .cfi_offset 5, -12
@ -298,7 +298,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
69:Src/File_Handling.c **** char *buf = malloc(30*sizeof(char));
70:Src/File_Handling.c **** sprintf (buf, "Dir: %s\r\n", fno.fname);
71:Src/File_Handling.c **** Send_Uart(buf);
ARM GAS /tmp/cc6OCjXR.s page 6
ARM GAS /tmp/ccwVm8tx.s page 6
72:Src/File_Handling.c **** free(buf);
@ -358,7 +358,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
247 .loc 1 65 46 discriminator 1 view .LVU49
248 004c 1D4B ldr r3, .L21+12
249 004e 5B7A ldrb r3, [r3, #9] @ zero_extendqisi2
ARM GAS /tmp/cc6OCjXR.s page 7
ARM GAS /tmp/ccwVm8tx.s page 7
65:Src/File_Handling.c **** if (fno.fattrib & AM_DIR) /* It is a directory */
@ -418,7 +418,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
290 0082 FFF7FEFF bl strlen
291 .LVL24:
292 0086 0546 mov r5, r0
ARM GAS /tmp/cc6OCjXR.s page 8
ARM GAS /tmp/ccwVm8tx.s page 8
293 .LVL25:
@ -478,7 +478,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
331 .loc 1 91 1 is_stmt 0 view .LVU76
332 00b0 014B ldr r3, .L21
333 00b2 1878 ldrb r0, [r3] @ zero_extendqisi2
ARM GAS /tmp/cc6OCjXR.s page 9
ARM GAS /tmp/ccwVm8tx.s page 9
334 00b4 0CB0 add sp, sp, #48
@ -538,7 +538,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
384 .LVL33:
385 000a 0446 mov r4, r0
386 .LVL34:
ARM GAS /tmp/cc6OCjXR.s page 10
ARM GAS /tmp/ccwVm8tx.s page 10
98:Src/File_Handling.c **** sprintf (path, "%s","/");
@ -598,7 +598,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
420 002e 6846 mov r0, sp
421 0030 FFF7FEFF bl f_readdir
422 .LVL38:
ARM GAS /tmp/cc6OCjXR.s page 11
ARM GAS /tmp/ccwVm8tx.s page 11
105:Src/File_Handling.c **** if (fresult != FR_OK || fno.fname[0] == 0) break; /* Break on error or end of dir */
@ -658,7 +658,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
461 .L26:
116:Src/File_Handling.c **** }
117:Src/File_Handling.c **** }
ARM GAS /tmp/cc6OCjXR.s page 12
ARM GAS /tmp/ccwVm8tx.s page 12
118:Src/File_Handling.c **** f_closedir(&dir);
@ -718,7 +718,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
507 .loc 1 128 1 is_stmt 0 view .LVU117
508 0000 70B5 push {r4, r5, r6, lr}
509 .LCFI8:
ARM GAS /tmp/cc6OCjXR.s page 13
ARM GAS /tmp/ccwVm8tx.s page 13
510 .cfi_def_cfa_offset 16
@ -778,7 +778,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
153:Src/File_Handling.c ****
154:Src/File_Handling.c **** else
155:Src/File_Handling.c **** {
ARM GAS /tmp/cc6OCjXR.s page 14
ARM GAS /tmp/ccwVm8tx.s page 14
156:Src/File_Handling.c **** fresult = f_write(&fil, data, strlen(data), &bw);
@ -838,7 +838,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
150:Src/File_Handling.c **** return fresult;
559 .loc 1 150 10 view .LVU136
151:Src/File_Handling.c **** }
ARM GAS /tmp/cc6OCjXR.s page 15
ARM GAS /tmp/ccwVm8tx.s page 15
560 .loc 1 151 10 view .LVU137
@ -898,7 +898,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
182:Src/File_Handling.c **** }
598 .loc 1 182 13 is_stmt 0 view .LVU154
599 004a C0B2 uxtb r0, r0
ARM GAS /tmp/cc6OCjXR.s page 16
ARM GAS /tmp/ccwVm8tx.s page 16
600 004c E2E7 b .L34
@ -958,7 +958,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
649 .loc 1 191 5 is_stmt 0 view .LVU162
650 0012 08B1 cbz r0, .L40
651 .LBB6:
ARM GAS /tmp/cc6OCjXR.s page 17
ARM GAS /tmp/ccwVm8tx.s page 17
192:Src/File_Handling.c **** {
@ -1018,7 +1018,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
237:Src/File_Handling.c **** //Send_Uart(buf);
238:Src/File_Handling.c **** free(buf);
239:Src/File_Handling.c **** }
ARM GAS /tmp/cc6OCjXR.s page 18
ARM GAS /tmp/ccwVm8tx.s page 18
240:Src/File_Handling.c **** }
@ -1078,7 +1078,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
215:Src/File_Handling.c **** if (fresult != FR_OK)
699 .loc 1 215 15 discriminator 1 view .LVU181
700 003c 2070 strb r0, [r4]
ARM GAS /tmp/cc6OCjXR.s page 19
ARM GAS /tmp/ccwVm8tx.s page 19
216:Src/File_Handling.c **** {
@ -1138,7 +1138,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
737 004c 4552524F .ascii "ERROR!!! No. %d in reading file *%s*\012\012\000"
737 52212121
737 204E6F2E
ARM GAS /tmp/cc6OCjXR.s page 20
ARM GAS /tmp/ccwVm8tx.s page 20
737 20256420
@ -1198,7 +1198,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
777 000e B8B9 cbnz r0, .L54
778 .LBB8:
250:Src/File_Handling.c **** {
ARM GAS /tmp/cc6OCjXR.s page 21
ARM GAS /tmp/ccwVm8tx.s page 21
251:Src/File_Handling.c **** char *buf = malloc(100*sizeof(char));
@ -1258,7 +1258,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
814 003a 2B4B ldr r3, .L55+4
815 003c 1878 ldrb r0, [r3] @ zero_extendqisi2
816 003e 0CE0 b .L48
ARM GAS /tmp/cc6OCjXR.s page 22
ARM GAS /tmp/ccwVm8tx.s page 22
817 .LVL70:
@ -1318,7 +1318,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
285:Src/File_Handling.c ****
286:Src/File_Handling.c **** else
287:Src/File_Handling.c **** {
ARM GAS /tmp/cc6OCjXR.s page 23
ARM GAS /tmp/ccwVm8tx.s page 23
288:Src/File_Handling.c **** Send_Uart(buffer);
@ -1378,7 +1378,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
277:Src/File_Handling.c **** {
873 .loc 1 277 3 is_stmt 1 view .LVU228
277:Src/File_Handling.c **** {
ARM GAS /tmp/cc6OCjXR.s page 24
ARM GAS /tmp/ccwVm8tx.s page 24
874 .loc 1 277 6 is_stmt 0 view .LVU229
@ -1438,7 +1438,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
916 00a0 FFF7FEFF bl free
917 .LVL88:
292:Src/File_Handling.c **** if (fresult != FR_OK)
ARM GAS /tmp/cc6OCjXR.s page 25
ARM GAS /tmp/ccwVm8tx.s page 25
918 .loc 1 292 4 view .LVU242
@ -1498,7 +1498,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
961 .LVL97:
303:Src/File_Handling.c **** Send_Uart(buf);
962 .loc 1 303 5 is_stmt 1 view .LVU254
ARM GAS /tmp/cc6OCjXR.s page 26
ARM GAS /tmp/ccwVm8tx.s page 26
963 00d4 2246 mov r2, r4
@ -1558,7 +1558,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1010 .LCFI11:
1011 .cfi_def_cfa_offset 24
1012 .cfi_offset 4, -24
ARM GAS /tmp/cc6OCjXR.s page 27
ARM GAS /tmp/ccwVm8tx.s page 27
1013 .cfi_offset 5, -20
@ -1618,7 +1618,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
332:Src/File_Handling.c **** char *buf = malloc(100*sizeof(char));
333:Src/File_Handling.c **** sprintf (buf, "ERROR!!! No. %d in opening file *%s*\n\n", fresult, name);
334:Src/File_Handling.c **** //Send_Uart(buf);
ARM GAS /tmp/cc6OCjXR.s page 28
ARM GAS /tmp/ccwVm8tx.s page 28
335:Src/File_Handling.c **** free(buf);
@ -1678,7 +1678,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1086 .LBE15:
1087 .LBB16:
318:Src/File_Handling.c **** sprintf (buf, "ERRROR!!! *%s* does not exists\n\n", name);
ARM GAS /tmp/cc6OCjXR.s page 29
ARM GAS /tmp/ccwVm8tx.s page 29
1088 .loc 1 318 3 is_stmt 1 view .LVU282
@ -1738,7 +1738,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
376:Src/File_Handling.c ****
377:Src/File_Handling.c **** /* Close file */
378:Src/File_Handling.c **** fresult = f_close(&fil);
ARM GAS /tmp/cc6OCjXR.s page 30
ARM GAS /tmp/ccwVm8tx.s page 30
379:Src/File_Handling.c **** if (fresult != FR_OK)
@ -1798,7 +1798,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1141 .loc 1 336 14 view .LVU296
1142 .LBE17:
353:Src/File_Handling.c **** if (fresult != FR_OK)
ARM GAS /tmp/cc6OCjXR.s page 31
ARM GAS /tmp/ccwVm8tx.s page 31
1143 .loc 1 353 3 is_stmt 1 view .LVU297
@ -1858,7 +1858,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1180 00b6 BA70 strb r2, [r7, #2]
374:Src/File_Handling.c **** }
1181 .loc 1 374 5 is_stmt 1 view .LVU315
ARM GAS /tmp/cc6OCjXR.s page 32
ARM GAS /tmp/ccwVm8tx.s page 32
374:Src/File_Handling.c **** }
@ -1918,7 +1918,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1222 .loc 1 394 13 is_stmt 0 view .LVU329
1223 00e2 0F4B ldr r3, .L70+4
1224 00e4 1878 ldrb r0, [r3] @ zero_extendqisi2
ARM GAS /tmp/cc6OCjXR.s page 33
ARM GAS /tmp/ccwVm8tx.s page 33
1225 00e6 C2E7 b .L59
@ -1978,7 +1978,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1271 011c 00000000 .word fno
1272 0120 00000000 .word fresult
1273 0124 00000000 .word fil
ARM GAS /tmp/cc6OCjXR.s page 34
ARM GAS /tmp/ccwVm8tx.s page 34
1274 0128 00000000 .word .LC10
@ -2038,7 +2038,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1320 .loc 1 406 3 view .LVU346
407:Src/File_Handling.c **** return fresult;
1321 .loc 1 407 6 view .LVU347
ARM GAS /tmp/cc6OCjXR.s page 35
ARM GAS /tmp/ccwVm8tx.s page 35
1322 .loc 1 407 13 is_stmt 0 view .LVU348
@ -2098,7 +2098,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1336 .LVL141:
411:Src/File_Handling.c **** if (fresult != FR_OK)
1337 .loc 1 411 11 discriminator 1 view .LVU352
ARM GAS /tmp/cc6OCjXR.s page 36
ARM GAS /tmp/ccwVm8tx.s page 36
1338 001e 074B ldr r3, .L77+4
@ -2158,7 +2158,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1376 .LFE1195:
1378 .section .text.Update_File,"ax",%progbits
1379 .align 1
ARM GAS /tmp/cc6OCjXR.s page 37
ARM GAS /tmp/ccwVm8tx.s page 37
1380 .global Update_File
@ -2218,7 +2218,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1423 .loc 1 457 13 view .LVU381
1424 .LBE23:
458:Src/File_Handling.c **** }
ARM GAS /tmp/cc6OCjXR.s page 38
ARM GAS /tmp/ccwVm8tx.s page 38
459:Src/File_Handling.c ****
@ -2278,7 +2278,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1428 .L80:
463:Src/File_Handling.c **** if (fresult != FR_OK)
1429 .loc 1 463 6 is_stmt 1 view .LVU383
ARM GAS /tmp/cc6OCjXR.s page 39
ARM GAS /tmp/ccwVm8tx.s page 39
463:Src/File_Handling.c **** if (fresult != FR_OK)
@ -2338,7 +2338,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
485:Src/File_Handling.c **** //sprintf (buf, "*%s* UPDATED successfully\n", name);
1470 .loc 1 485 7 view .LVU398
488:Src/File_Handling.c **** }
ARM GAS /tmp/cc6OCjXR.s page 40
ARM GAS /tmp/ccwVm8tx.s page 40
1471 .loc 1 488 7 view .LVU399
@ -2398,7 +2398,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1506 .section .text.Remove_File,"ax",%progbits
1507 .align 1
1508 .global Remove_File
ARM GAS /tmp/cc6OCjXR.s page 41
ARM GAS /tmp/ccwVm8tx.s page 41
1509 .syntax unified
@ -2458,7 +2458,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1547 0018 164B ldr r3, .L93+4
1548 001a 1870 strb r0, [r3]
527:Src/File_Handling.c **** if (fresult == FR_OK)
ARM GAS /tmp/cc6OCjXR.s page 42
ARM GAS /tmp/ccwVm8tx.s page 42
1549 .loc 1 527 3 is_stmt 1 view .LVU418
@ -2518,7 +2518,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1584 .loc 1 517 15 is_stmt 0 view .LVU430
1585 003a 6420 movs r0, #100
1586 003c FFF7FEFF bl malloc
ARM GAS /tmp/cc6OCjXR.s page 43
ARM GAS /tmp/ccwVm8tx.s page 43
1587 .LVL161:
@ -2578,7 +2578,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1630 .align 2
1631 .L93:
1632 0070 00000000 .word fno
ARM GAS /tmp/cc6OCjXR.s page 44
ARM GAS /tmp/ccwVm8tx.s page 44
1633 0074 00000000 .word fresult
@ -2638,7 +2638,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1677 000a 1870 strb r0, [r3]
549:Src/File_Handling.c **** if (fresult == FR_OK)
1678 .loc 1 549 5 is_stmt 1 view .LVU447
ARM GAS /tmp/cc6OCjXR.s page 45
ARM GAS /tmp/ccwVm8tx.s page 45
1679 .loc 1 549 8 is_stmt 0 view .LVU448
@ -2698,7 +2698,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1716 .LVL177:
1717 0032 0646 mov r6, r0
1718 .LVL178:
ARM GAS /tmp/cc6OCjXR.s page 46
ARM GAS /tmp/ccwVm8tx.s page 46
559:Src/File_Handling.c **** Send_Uart(buf);
@ -2758,7 +2758,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1761 .cfi_startproc
1762 @ args = 0, pretend = 0, frame = 0
1763 @ frame_needed = 0, uses_anonymous_args = 0
ARM GAS /tmp/cc6OCjXR.s page 47
ARM GAS /tmp/ccwVm8tx.s page 47
1764 0000 F8B5 push {r3, r4, r5, r6, r7, lr}
@ -2818,7 +2818,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1813 .LVL183:
573:Src/File_Handling.c **** sprintf (buf, "SD CARD Total Size: \t%lu\n",total);
1814 .loc 1 573 5 is_stmt 1 view .LVU475
ARM GAS /tmp/cc6OCjXR.s page 48
ARM GAS /tmp/ccwVm8tx.s page 48
1815 0046 2246 mov r2, r4
@ -2878,7 +2878,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1861 .cfi_restore 80
1862 .cfi_restore 81
1863 .cfi_def_cfa_offset 24
ARM GAS /tmp/cc6OCjXR.s page 49
ARM GAS /tmp/ccwVm8tx.s page 49
1864 0092 F8BD pop {r3, r4, r5, r6, r7, pc}
@ -2938,7 +2938,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1915 000e 104B ldr r3, .L110+4
1916 0010 1870 strb r0, [r3]
587:Src/File_Handling.c **** if (fresult != FR_OK)
ARM GAS /tmp/cc6OCjXR.s page 50
ARM GAS /tmp/ccwVm8tx.s page 50
1917 .loc 1 587 2 is_stmt 1 view .LVU497
@ -2998,7 +2998,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
629:Src/File_Handling.c **** if (fresult != FR_OK)
630:Src/File_Handling.c **** {
631:Src/File_Handling.c **** char *buf = malloc(100*sizeof(char));
ARM GAS /tmp/cc6OCjXR.s page 51
ARM GAS /tmp/ccwVm8tx.s page 51
632:Src/File_Handling.c **** //sprintf (buf, "ERROR!!! No. %d in closing file *%s*\n\n", fresult, name);
@ -3058,7 +3058,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
1959 002e 0A4B ldr r3, .L110+12
1960 0030 3246 mov r2, r6
1961 0032 2946 mov r1, r5
ARM GAS /tmp/cc6OCjXR.s page 52
ARM GAS /tmp/ccwVm8tx.s page 52
1962 0034 3846 mov r0, r7
@ -3118,7 +3118,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
2005 .LVL200:
2006 .LFB1201:
646:Src/File_Handling.c ****
ARM GAS /tmp/cc6OCjXR.s page 53
ARM GAS /tmp/ccwVm8tx.s page 53
647:Src/File_Handling.c **** FRESULT Update_File_byte (char *name, uint8_t *data, unsigned int bytesize)
@ -3178,7 +3178,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
661:Src/File_Handling.c **** {
662:Src/File_Handling.c **** /* Create a file with read write access and open it */
663:Src/File_Handling.c **** fresult = f_open(&fil, name, FA_OPEN_APPEND | FA_WRITE);
ARM GAS /tmp/cc6OCjXR.s page 54
ARM GAS /tmp/ccwVm8tx.s page 54
664:Src/File_Handling.c **** if (fresult != FR_OK)
@ -3238,7 +3238,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
2053 0018 3222 movs r2, #50
2054 001a 2146 mov r1, r4
2055 001c 0D48 ldr r0, .L117+8
ARM GAS /tmp/cc6OCjXR.s page 55
ARM GAS /tmp/ccwVm8tx.s page 55
2056 001e FFF7FEFF bl f_open
@ -3298,7 +3298,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
2094 .LVL208:
692:Src/File_Handling.c **** if (fresult != FR_OK)
2095 .loc 1 692 14 discriminator 1 view .LVU561
ARM GAS /tmp/cc6OCjXR.s page 56
ARM GAS /tmp/ccwVm8tx.s page 56
2096 0044 2070 strb r0, [r4]
@ -3358,7 +3358,7 @@ ARM GAS /tmp/cc6OCjXR.s page 1
2158 .align 2
2161 fno:
2162 0000 00000000 .space 24
ARM GAS /tmp/cc6OCjXR.s page 57
ARM GAS /tmp/ccwVm8tx.s page 57
2162 00000000
@ -3396,86 +3396,86 @@ ARM GAS /tmp/cc6OCjXR.s page 1
2187 .file 10 "/usr/include/newlib/stdio.h"
2188 .file 11 "/usr/include/newlib/stdlib.h"
2189 .file 12 "<built-in>"
ARM GAS /tmp/cc6OCjXR.s page 58
ARM GAS /tmp/ccwVm8tx.s page 58
DEFINED SYMBOLS
*ABS*:00000000 File_Handling.c
/tmp/cc6OCjXR.s:20 .text.Send_Uart:00000000 $t
/tmp/cc6OCjXR.s:26 .text.Send_Uart:00000000 Send_Uart
/tmp/cc6OCjXR.s:40 .text.Mount_SD:00000000 $t
/tmp/cc6OCjXR.s:46 .text.Mount_SD:00000000 Mount_SD
/tmp/cc6OCjXR.s:86 .text.Mount_SD:0000001c $d
/tmp/cc6OCjXR.s:2175 .bss.fs:00000000 fs
/tmp/cc6OCjXR.s:92 .text.Unmount_SD:00000000 $t
/tmp/cc6OCjXR.s:98 .text.Unmount_SD:00000000 Unmount_SD
/tmp/cc6OCjXR.s:138 .text.Unmount_SD:0000001c $d
/tmp/cc6OCjXR.s:143 .rodata.Scan_SD.str1.4:00000000 $d
/tmp/cc6OCjXR.s:156 .text.Scan_SD:00000000 $t
/tmp/cc6OCjXR.s:162 .text.Scan_SD:00000000 Scan_SD
/tmp/cc6OCjXR.s:344 .text.Scan_SD:000000b8 $d
/tmp/cc6OCjXR.s:2161 .bss.fno:00000000 fno
/tmp/cc6OCjXR.s:355 .rodata.Format_SD.str1.4:00000000 $d
/tmp/cc6OCjXR.s:359 .text.Format_SD:00000000 $t
/tmp/cc6OCjXR.s:365 .text.Format_SD:00000000 Format_SD
/tmp/cc6OCjXR.s:485 .text.Format_SD:00000078 $d
/tmp/cc6OCjXR.s:494 .text.Write_File:00000000 $t
/tmp/cc6OCjXR.s:500 .text.Write_File:00000000 Write_File
/tmp/cc6OCjXR.s:604 .text.Write_File:00000050 $d
/tmp/cc6OCjXR.s:2168 .bss.fil:00000000 fil
/tmp/cc6OCjXR.s:2147 .bss.bw:00000000 bw
/tmp/cc6OCjXR.s:612 .text.Write_File_byte:00000000 $t
/tmp/cc6OCjXR.s:618 .text.Write_File_byte:00000000 Write_File_byte
/tmp/cc6OCjXR.s:721 .text.Write_File_byte:0000004c $d
/tmp/cc6OCjXR.s:729 .rodata.Read_File.str1.4:00000000 $d
/tmp/cc6OCjXR.s:745 .text.Read_File:00000000 $t
/tmp/cc6OCjXR.s:751 .text.Read_File:00000000 Read_File
/tmp/cc6OCjXR.s:976 .text.Read_File:000000e4 $d
/tmp/cc6OCjXR.s:2154 .bss.br:00000000 br
/tmp/cc6OCjXR.s:991 .rodata.Seek_Read_File.str1.4:00000000 $d
/tmp/cc6OCjXR.s:995 .text.Seek_Read_File:00000000 $t
/tmp/cc6OCjXR.s:1001 .text.Seek_Read_File:00000000 Seek_Read_File
/tmp/cc6OCjXR.s:1271 .text.Seek_Read_File:0000011c $d
/tmp/cc6OCjXR.s:1287 .text.Create_File:00000000 $t
/tmp/cc6OCjXR.s:1293 .text.Create_File:00000000 Create_File
/tmp/cc6OCjXR.s:1372 .text.Create_File:00000038 $d
/tmp/cc6OCjXR.s:1379 .text.Update_File:00000000 $t
/tmp/cc6OCjXR.s:1385 .text.Update_File:00000000 Update_File
/tmp/cc6OCjXR.s:1489 .text.Update_File:00000050 $d
/tmp/cc6OCjXR.s:1497 .rodata.Remove_File.str1.4:00000000 $d
/tmp/cc6OCjXR.s:1507 .text.Remove_File:00000000 $t
/tmp/cc6OCjXR.s:1513 .text.Remove_File:00000000 Remove_File
/tmp/cc6OCjXR.s:1632 .text.Remove_File:00000070 $d
/tmp/cc6OCjXR.s:1642 .rodata.Create_Dir.str1.4:00000000 $d
/tmp/cc6OCjXR.s:1649 .text.Create_Dir:00000000 $t
/tmp/cc6OCjXR.s:1655 .text.Create_Dir:00000000 Create_Dir
/tmp/cc6OCjXR.s:1734 .text.Create_Dir:00000048 $d
/tmp/cc6OCjXR.s:1742 .rodata.Check_SD_Space.str1.4:00000000 $d
/tmp/cc6OCjXR.s:1752 .text.Check_SD_Space:00000000 $t
/tmp/cc6OCjXR.s:1758 .text.Check_SD_Space:00000000 Check_SD_Space
/tmp/cc6OCjXR.s:1870 .text.Check_SD_Space:00000094 $d
/tmp/cc6OCjXR.s:2140 .bss.pfs:00000000 pfs
/tmp/cc6OCjXR.s:2133 .bss.fre_clust:00000000 fre_clust
ARM GAS /tmp/cc6OCjXR.s page 59
/tmp/ccwVm8tx.s:20 .text.Send_Uart:00000000 $t
/tmp/ccwVm8tx.s:26 .text.Send_Uart:00000000 Send_Uart
/tmp/ccwVm8tx.s:40 .text.Mount_SD:00000000 $t
/tmp/ccwVm8tx.s:46 .text.Mount_SD:00000000 Mount_SD
/tmp/ccwVm8tx.s:86 .text.Mount_SD:0000001c $d
/tmp/ccwVm8tx.s:2175 .bss.fs:00000000 fs
/tmp/ccwVm8tx.s:92 .text.Unmount_SD:00000000 $t
/tmp/ccwVm8tx.s:98 .text.Unmount_SD:00000000 Unmount_SD
/tmp/ccwVm8tx.s:138 .text.Unmount_SD:0000001c $d
/tmp/ccwVm8tx.s:143 .rodata.Scan_SD.str1.4:00000000 $d
/tmp/ccwVm8tx.s:156 .text.Scan_SD:00000000 $t
/tmp/ccwVm8tx.s:162 .text.Scan_SD:00000000 Scan_SD
/tmp/ccwVm8tx.s:344 .text.Scan_SD:000000b8 $d
/tmp/ccwVm8tx.s:2161 .bss.fno:00000000 fno
/tmp/ccwVm8tx.s:355 .rodata.Format_SD.str1.4:00000000 $d
/tmp/ccwVm8tx.s:359 .text.Format_SD:00000000 $t
/tmp/ccwVm8tx.s:365 .text.Format_SD:00000000 Format_SD
/tmp/ccwVm8tx.s:485 .text.Format_SD:00000078 $d
/tmp/ccwVm8tx.s:494 .text.Write_File:00000000 $t
/tmp/ccwVm8tx.s:500 .text.Write_File:00000000 Write_File
/tmp/ccwVm8tx.s:604 .text.Write_File:00000050 $d
/tmp/ccwVm8tx.s:2168 .bss.fil:00000000 fil
/tmp/ccwVm8tx.s:2147 .bss.bw:00000000 bw
/tmp/ccwVm8tx.s:612 .text.Write_File_byte:00000000 $t
/tmp/ccwVm8tx.s:618 .text.Write_File_byte:00000000 Write_File_byte
/tmp/ccwVm8tx.s:721 .text.Write_File_byte:0000004c $d
/tmp/ccwVm8tx.s:729 .rodata.Read_File.str1.4:00000000 $d
/tmp/ccwVm8tx.s:745 .text.Read_File:00000000 $t
/tmp/ccwVm8tx.s:751 .text.Read_File:00000000 Read_File
/tmp/ccwVm8tx.s:976 .text.Read_File:000000e4 $d
/tmp/ccwVm8tx.s:2154 .bss.br:00000000 br
/tmp/ccwVm8tx.s:991 .rodata.Seek_Read_File.str1.4:00000000 $d
/tmp/ccwVm8tx.s:995 .text.Seek_Read_File:00000000 $t
/tmp/ccwVm8tx.s:1001 .text.Seek_Read_File:00000000 Seek_Read_File
/tmp/ccwVm8tx.s:1271 .text.Seek_Read_File:0000011c $d
/tmp/ccwVm8tx.s:1287 .text.Create_File:00000000 $t
/tmp/ccwVm8tx.s:1293 .text.Create_File:00000000 Create_File
/tmp/ccwVm8tx.s:1372 .text.Create_File:00000038 $d
/tmp/ccwVm8tx.s:1379 .text.Update_File:00000000 $t
/tmp/ccwVm8tx.s:1385 .text.Update_File:00000000 Update_File
/tmp/ccwVm8tx.s:1489 .text.Update_File:00000050 $d
/tmp/ccwVm8tx.s:1497 .rodata.Remove_File.str1.4:00000000 $d
/tmp/ccwVm8tx.s:1507 .text.Remove_File:00000000 $t
/tmp/ccwVm8tx.s:1513 .text.Remove_File:00000000 Remove_File
/tmp/ccwVm8tx.s:1632 .text.Remove_File:00000070 $d
/tmp/ccwVm8tx.s:1642 .rodata.Create_Dir.str1.4:00000000 $d
/tmp/ccwVm8tx.s:1649 .text.Create_Dir:00000000 $t
/tmp/ccwVm8tx.s:1655 .text.Create_Dir:00000000 Create_Dir
/tmp/ccwVm8tx.s:1734 .text.Create_Dir:00000048 $d
/tmp/ccwVm8tx.s:1742 .rodata.Check_SD_Space.str1.4:00000000 $d
/tmp/ccwVm8tx.s:1752 .text.Check_SD_Space:00000000 $t
/tmp/ccwVm8tx.s:1758 .text.Check_SD_Space:00000000 Check_SD_Space
/tmp/ccwVm8tx.s:1870 .text.Check_SD_Space:00000094 $d
/tmp/ccwVm8tx.s:2140 .bss.pfs:00000000 pfs
/tmp/ccwVm8tx.s:2133 .bss.fre_clust:00000000 fre_clust
ARM GAS /tmp/ccwVm8tx.s page 59
/tmp/cc6OCjXR.s:2126 .bss.total:00000000 total
/tmp/cc6OCjXR.s:2119 .bss.free_space:00000000 free_space
/tmp/cc6OCjXR.s:1881 .text.Update_File_float:00000000 $t
/tmp/cc6OCjXR.s:1887 .text.Update_File_float:00000000 Update_File_float
/tmp/cc6OCjXR.s:1990 .text.Update_File_float:0000004c $d
/tmp/cc6OCjXR.s:1998 .text.Update_File_byte:00000000 $t
/tmp/cc6OCjXR.s:2004 .text.Update_File_byte:00000000 Update_File_byte
/tmp/cc6OCjXR.s:2107 .text.Update_File_byte:0000004c $d
/tmp/cc6OCjXR.s:2116 .bss.free_space:00000000 $d
/tmp/cc6OCjXR.s:2123 .bss.total:00000000 $d
/tmp/cc6OCjXR.s:2130 .bss.fre_clust:00000000 $d
/tmp/cc6OCjXR.s:2137 .bss.pfs:00000000 $d
/tmp/cc6OCjXR.s:2144 .bss.bw:00000000 $d
/tmp/cc6OCjXR.s:2151 .bss.br:00000000 $d
/tmp/cc6OCjXR.s:2158 .bss.fno:00000000 $d
/tmp/cc6OCjXR.s:2165 .bss.fil:00000000 $d
/tmp/cc6OCjXR.s:2172 .bss.fs:00000000 $d
/tmp/ccwVm8tx.s:2126 .bss.total:00000000 total
/tmp/ccwVm8tx.s:2119 .bss.free_space:00000000 free_space
/tmp/ccwVm8tx.s:1881 .text.Update_File_float:00000000 $t
/tmp/ccwVm8tx.s:1887 .text.Update_File_float:00000000 Update_File_float
/tmp/ccwVm8tx.s:1990 .text.Update_File_float:0000004c $d
/tmp/ccwVm8tx.s:1998 .text.Update_File_byte:00000000 $t
/tmp/ccwVm8tx.s:2004 .text.Update_File_byte:00000000 Update_File_byte
/tmp/ccwVm8tx.s:2107 .text.Update_File_byte:0000004c $d
/tmp/ccwVm8tx.s:2116 .bss.free_space:00000000 $d
/tmp/ccwVm8tx.s:2123 .bss.total:00000000 $d
/tmp/ccwVm8tx.s:2130 .bss.fre_clust:00000000 $d
/tmp/ccwVm8tx.s:2137 .bss.pfs:00000000 $d
/tmp/ccwVm8tx.s:2144 .bss.bw:00000000 $d
/tmp/ccwVm8tx.s:2151 .bss.br:00000000 $d
/tmp/ccwVm8tx.s:2158 .bss.fno:00000000 $d
/tmp/ccwVm8tx.s:2165 .bss.fil:00000000 $d
/tmp/ccwVm8tx.s:2172 .bss.fs:00000000 $d
UNDEFINED SYMBOLS
f_mount

Binary file not shown.

Binary file not shown.

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,4 @@
ARM GAS /tmp/ccdXV1P2.s page 1
ARM GAS /tmp/ccVyLLz5.s page 1
1 .cpu cortex-m7
@ -58,7 +58,7 @@ ARM GAS /tmp/ccdXV1P2.s page 1
28:Middlewares/Third_Party/FatFs/src/diskio.c **** /* Private function prototypes -----------------------------------------------*/
29:Middlewares/Third_Party/FatFs/src/diskio.c **** /* Private functions ---------------------------------------------------------*/
30:Middlewares/Third_Party/FatFs/src/diskio.c ****
ARM GAS /tmp/ccdXV1P2.s page 2
ARM GAS /tmp/ccVyLLz5.s page 2
31:Middlewares/Third_Party/FatFs/src/diskio.c **** /**
@ -118,7 +118,7 @@ ARM GAS /tmp/ccdXV1P2.s page 1
71 disk_initialize:
72 .LVL3:
73 .LFB1184:
ARM GAS /tmp/ccdXV1P2.s page 3
ARM GAS /tmp/ccVyLLz5.s page 3
45:Middlewares/Third_Party/FatFs/src/diskio.c ****
@ -178,7 +178,7 @@ ARM GAS /tmp/ccdXV1P2.s page 1
62:Middlewares/Third_Party/FatFs/src/diskio.c **** return stat;
111 .loc 1 62 3 is_stmt 1 view .LVU23
63:Middlewares/Third_Party/FatFs/src/diskio.c **** }
ARM GAS /tmp/ccdXV1P2.s page 4
ARM GAS /tmp/ccVyLLz5.s page 4
112 .loc 1 63 1 is_stmt 0 view .LVU24
@ -238,7 +238,7 @@ ARM GAS /tmp/ccdXV1P2.s page 1
80:Middlewares/Third_Party/FatFs/src/diskio.c **** DRESULT res;
150 .loc 1 80 3 is_stmt 1 view .LVU29
81:Middlewares/Third_Party/FatFs/src/diskio.c ****
ARM GAS /tmp/ccdXV1P2.s page 5
ARM GAS /tmp/ccVyLLz5.s page 5
82:Middlewares/Third_Party/FatFs/src/diskio.c **** res = disk.drv[pdrv]->disk_read(disk.lun[pdrv], buff, sector, count);
@ -298,7 +298,7 @@ ARM GAS /tmp/ccdXV1P2.s page 1
187 @ args = 0, pretend = 0, frame = 0
188 @ frame_needed = 0, uses_anonymous_args = 0
189 .loc 1 101 1 is_stmt 0 view .LVU38
ARM GAS /tmp/ccdXV1P2.s page 6
ARM GAS /tmp/ccVyLLz5.s page 6
190 0000 38B5 push {r3, r4, r5, lr}
@ -358,7 +358,7 @@ ARM GAS /tmp/ccdXV1P2.s page 1
116:Middlewares/Third_Party/FatFs/src/diskio.c **** #if _USE_IOCTL == 1
117:Middlewares/Third_Party/FatFs/src/diskio.c **** DRESULT disk_ioctl (
118:Middlewares/Third_Party/FatFs/src/diskio.c **** BYTE pdrv, /* Physical drive nmuber (0..) */
ARM GAS /tmp/ccdXV1P2.s page 7
ARM GAS /tmp/ccVyLLz5.s page 7
119:Middlewares/Third_Party/FatFs/src/diskio.c **** BYTE cmd, /* Control code */
@ -418,7 +418,7 @@ ARM GAS /tmp/ccdXV1P2.s page 1
131:Middlewares/Third_Party/FatFs/src/diskio.c **** * @brief Gets Time from RTC
132:Middlewares/Third_Party/FatFs/src/diskio.c **** * @param None
133:Middlewares/Third_Party/FatFs/src/diskio.c **** * @retval Time in DWORD
ARM GAS /tmp/ccdXV1P2.s page 8
ARM GAS /tmp/ccVyLLz5.s page 8
134:Middlewares/Third_Party/FatFs/src/diskio.c **** */
@ -446,28 +446,28 @@ ARM GAS /tmp/ccdXV1P2.s page 1
294 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h"
295 .file 7 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rcc.h"
296 .file 8 "Middlewares/Third_Party/FatFs/src/ff_gen_drv.h"
ARM GAS /tmp/ccdXV1P2.s page 9
ARM GAS /tmp/ccVyLLz5.s page 9
DEFINED SYMBOLS
*ABS*:00000000 diskio.c
/tmp/ccdXV1P2.s:20 .text.disk_status:00000000 $t
/tmp/ccdXV1P2.s:26 .text.disk_status:00000000 disk_status
/tmp/ccdXV1P2.s:60 .text.disk_status:00000014 $d
/tmp/ccdXV1P2.s:65 .text.disk_initialize:00000000 $t
/tmp/ccdXV1P2.s:71 .text.disk_initialize:00000000 disk_initialize
/tmp/ccdXV1P2.s:124 .text.disk_initialize:00000024 $d
/tmp/ccdXV1P2.s:129 .text.disk_read:00000000 $t
/tmp/ccdXV1P2.s:135 .text.disk_read:00000000 disk_read
/tmp/ccdXV1P2.s:171 .text.disk_read:00000014 $d
/tmp/ccdXV1P2.s:176 .text.disk_write:00000000 $t
/tmp/ccdXV1P2.s:182 .text.disk_write:00000000 disk_write
/tmp/ccdXV1P2.s:218 .text.disk_write:00000014 $d
/tmp/ccdXV1P2.s:223 .text.disk_ioctl:00000000 $t
/tmp/ccdXV1P2.s:229 .text.disk_ioctl:00000000 disk_ioctl
/tmp/ccdXV1P2.s:263 .text.disk_ioctl:00000014 $d
/tmp/ccdXV1P2.s:268 .text.get_fattime:00000000 $t
/tmp/ccdXV1P2.s:274 .text.get_fattime:00000000 get_fattime
/tmp/ccVyLLz5.s:20 .text.disk_status:00000000 $t
/tmp/ccVyLLz5.s:26 .text.disk_status:00000000 disk_status
/tmp/ccVyLLz5.s:60 .text.disk_status:00000014 $d
/tmp/ccVyLLz5.s:65 .text.disk_initialize:00000000 $t
/tmp/ccVyLLz5.s:71 .text.disk_initialize:00000000 disk_initialize
/tmp/ccVyLLz5.s:124 .text.disk_initialize:00000024 $d
/tmp/ccVyLLz5.s:129 .text.disk_read:00000000 $t
/tmp/ccVyLLz5.s:135 .text.disk_read:00000000 disk_read
/tmp/ccVyLLz5.s:171 .text.disk_read:00000014 $d
/tmp/ccVyLLz5.s:176 .text.disk_write:00000000 $t
/tmp/ccVyLLz5.s:182 .text.disk_write:00000000 disk_write
/tmp/ccVyLLz5.s:218 .text.disk_write:00000014 $d
/tmp/ccVyLLz5.s:223 .text.disk_ioctl:00000000 $t
/tmp/ccVyLLz5.s:229 .text.disk_ioctl:00000000 disk_ioctl
/tmp/ccVyLLz5.s:263 .text.disk_ioctl:00000014 $d
/tmp/ccVyLLz5.s:268 .text.get_fattime:00000000 $t
/tmp/ccVyLLz5.s:274 .text.get_fattime:00000000 get_fattime
UNDEFINED SYMBOLS
disk

View File

@ -1,4 +1,4 @@
ARM GAS /tmp/ccXTUOPr.s page 1
ARM GAS /tmp/ccQUezj8.s page 1
1 .cpu cortex-m7
@ -58,7 +58,7 @@ ARM GAS /tmp/ccXTUOPr.s page 1
29:Src/fatfs.c ****
30:Src/fatfs.c **** void MX_FATFS_Init(void)
31:Src/fatfs.c **** {
ARM GAS /tmp/ccXTUOPr.s page 2
ARM GAS /tmp/ccQUezj8.s page 2
28 .loc 1 31 1 view -0
@ -118,7 +118,7 @@ ARM GAS /tmp/ccXTUOPr.s page 1
69 @ frame_needed = 0, uses_anonymous_args = 0
70 @ link register save eliminated.
47:Src/fatfs.c **** /* USER CODE BEGIN get_fattime */
ARM GAS /tmp/ccXTUOPr.s page 3
ARM GAS /tmp/ccQUezj8.s page 3
48:Src/fatfs.c **** return 0;
@ -169,24 +169,24 @@ ARM GAS /tmp/ccXTUOPr.s page 1
114 .file 9 "Middlewares/Third_Party/FatFs/src/ff_gen_drv.h"
115 .file 10 "Inc/sd_diskio.h"
116 .file 11 "Inc/fatfs.h"
ARM GAS /tmp/ccXTUOPr.s page 4
ARM GAS /tmp/ccQUezj8.s page 4
DEFINED SYMBOLS
*ABS*:00000000 fatfs.c
/tmp/ccXTUOPr.s:20 .text.MX_FATFS_Init:00000000 $t
/tmp/ccXTUOPr.s:26 .text.MX_FATFS_Init:00000000 MX_FATFS_Init
/tmp/ccXTUOPr.s:51 .text.MX_FATFS_Init:00000010 $d
/tmp/ccXTUOPr.s:97 .bss.SDPath:00000000 SDPath
/tmp/ccXTUOPr.s:103 .bss.retSD:00000000 retSD
/tmp/ccXTUOPr.s:58 .text.get_fattime:00000000 $t
/tmp/ccXTUOPr.s:64 .text.get_fattime:00000000 get_fattime
/tmp/ccXTUOPr.s:83 .bss.SDFile:00000000 SDFile
/tmp/ccXTUOPr.s:80 .bss.SDFile:00000000 $d
/tmp/ccXTUOPr.s:90 .bss.SDFatFS:00000000 SDFatFS
/tmp/ccXTUOPr.s:87 .bss.SDFatFS:00000000 $d
/tmp/ccXTUOPr.s:94 .bss.SDPath:00000000 $d
/tmp/ccXTUOPr.s:104 .bss.retSD:00000000 $d
/tmp/ccQUezj8.s:20 .text.MX_FATFS_Init:00000000 $t
/tmp/ccQUezj8.s:26 .text.MX_FATFS_Init:00000000 MX_FATFS_Init
/tmp/ccQUezj8.s:51 .text.MX_FATFS_Init:00000010 $d
/tmp/ccQUezj8.s:97 .bss.SDPath:00000000 SDPath
/tmp/ccQUezj8.s:103 .bss.retSD:00000000 retSD
/tmp/ccQUezj8.s:58 .text.get_fattime:00000000 $t
/tmp/ccQUezj8.s:64 .text.get_fattime:00000000 get_fattime
/tmp/ccQUezj8.s:83 .bss.SDFile:00000000 SDFile
/tmp/ccQUezj8.s:80 .bss.SDFile:00000000 $d
/tmp/ccQUezj8.s:90 .bss.SDFatFS:00000000 SDFatFS
/tmp/ccQUezj8.s:87 .bss.SDFatFS:00000000 $d
/tmp/ccQUezj8.s:94 .bss.SDPath:00000000 $d
/tmp/ccQUezj8.s:104 .bss.retSD:00000000 $d
UNDEFINED SYMBOLS
FATFS_LinkDriver

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
ARM GAS /tmp/ccaLv9j7.s page 1
ARM GAS /tmp/ccyRZSSS.s page 1
1 .cpu cortex-m7
@ -58,7 +58,7 @@ ARM GAS /tmp/ccaLv9j7.s page 1
28:Middlewares/Third_Party/FatFs/src/ff_gen_drv.c ****
29:Middlewares/Third_Party/FatFs/src/ff_gen_drv.c **** /**
30:Middlewares/Third_Party/FatFs/src/ff_gen_drv.c **** * @brief Links a compatible diskio driver/lun id and increments the number of active
ARM GAS /tmp/ccaLv9j7.s page 2
ARM GAS /tmp/ccyRZSSS.s page 2
31:Middlewares/Third_Party/FatFs/src/ff_gen_drv.c **** * linked drivers.
@ -118,7 +118,7 @@ ARM GAS /tmp/ccaLv9j7.s page 1
64 .loc 1 48 5 is_stmt 1 view .LVU13
65 .loc 1 48 18 is_stmt 0 view .LVU14
66 002c 5C7A ldrb r4, [r3, #9] @ zero_extendqisi2
ARM GAS /tmp/ccaLv9j7.s page 3
ARM GAS /tmp/ccyRZSSS.s page 3
67 .LVL2:
@ -178,7 +178,7 @@ ARM GAS /tmp/ccaLv9j7.s page 1
41:Middlewares/Third_Party/FatFs/src/ff_gen_drv.c **** uint8_t DiskNum = 0;
111 .loc 1 41 11 view .LVU32
112 004c 0120 movs r0, #1
ARM GAS /tmp/ccaLv9j7.s page 4
ARM GAS /tmp/ccyRZSSS.s page 4
113 .LVL10:
@ -238,7 +238,7 @@ ARM GAS /tmp/ccaLv9j7.s page 1
156 .global FATFS_UnLinkDriverEx
157 .syntax unified
158 .thumb
ARM GAS /tmp/ccaLv9j7.s page 5
ARM GAS /tmp/ccyRZSSS.s page 5
159 .thumb_func
@ -298,7 +298,7 @@ ARM GAS /tmp/ccaLv9j7.s page 1
195 .LVL15:
196 .loc 1 90 25 view .LVU54
197 001c 0020 movs r0, #0
ARM GAS /tmp/ccaLv9j7.s page 6
ARM GAS /tmp/ccyRZSSS.s page 6
198 .LVL16:
@ -358,7 +358,7 @@ ARM GAS /tmp/ccaLv9j7.s page 1
242 .align 1
243 .global FATFS_UnLinkDriver
244 .syntax unified
ARM GAS /tmp/ccaLv9j7.s page 7
ARM GAS /tmp/ccyRZSSS.s page 7
245 .thumb
@ -418,7 +418,7 @@ ARM GAS /tmp/ccaLv9j7.s page 1
283 @ frame_needed = 0, uses_anonymous_args = 0
284 @ link register save eliminated.
118:Middlewares/Third_Party/FatFs/src/ff_gen_drv.c **** return disk.nbr;
ARM GAS /tmp/ccaLv9j7.s page 8
ARM GAS /tmp/ccyRZSSS.s page 8
285 .loc 1 118 3 view .LVU75
@ -450,25 +450,25 @@ ARM GAS /tmp/ccaLv9j7.s page 1
311 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h"
312 .file 7 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rcc.h"
313 .file 8 "Middlewares/Third_Party/FatFs/src/ff_gen_drv.h"
ARM GAS /tmp/ccaLv9j7.s page 9
ARM GAS /tmp/ccyRZSSS.s page 9
DEFINED SYMBOLS
*ABS*:00000000 ff_gen_drv.c
/tmp/ccaLv9j7.s:20 .text.FATFS_LinkDriverEx:00000000 $t
/tmp/ccaLv9j7.s:26 .text.FATFS_LinkDriverEx:00000000 FATFS_LinkDriverEx
/tmp/ccaLv9j7.s:120 .text.FATFS_LinkDriverEx:00000050 $d
/tmp/ccaLv9j7.s:303 .bss.disk:00000000 disk
/tmp/ccaLv9j7.s:125 .text.FATFS_LinkDriver:00000000 $t
/tmp/ccaLv9j7.s:131 .text.FATFS_LinkDriver:00000000 FATFS_LinkDriver
/tmp/ccaLv9j7.s:155 .text.FATFS_UnLinkDriverEx:00000000 $t
/tmp/ccaLv9j7.s:161 .text.FATFS_UnLinkDriverEx:00000000 FATFS_UnLinkDriverEx
/tmp/ccaLv9j7.s:237 .text.FATFS_UnLinkDriverEx:00000038 $d
/tmp/ccaLv9j7.s:242 .text.FATFS_UnLinkDriver:00000000 $t
/tmp/ccaLv9j7.s:248 .text.FATFS_UnLinkDriver:00000000 FATFS_UnLinkDriver
/tmp/ccaLv9j7.s:272 .text.FATFS_GetAttachedDriversNbr:00000000 $t
/tmp/ccaLv9j7.s:278 .text.FATFS_GetAttachedDriversNbr:00000000 FATFS_GetAttachedDriversNbr
/tmp/ccaLv9j7.s:294 .text.FATFS_GetAttachedDriversNbr:00000008 $d
/tmp/ccaLv9j7.s:300 .bss.disk:00000000 $d
/tmp/ccyRZSSS.s:20 .text.FATFS_LinkDriverEx:00000000 $t
/tmp/ccyRZSSS.s:26 .text.FATFS_LinkDriverEx:00000000 FATFS_LinkDriverEx
/tmp/ccyRZSSS.s:120 .text.FATFS_LinkDriverEx:00000050 $d
/tmp/ccyRZSSS.s:303 .bss.disk:00000000 disk
/tmp/ccyRZSSS.s:125 .text.FATFS_LinkDriver:00000000 $t
/tmp/ccyRZSSS.s:131 .text.FATFS_LinkDriver:00000000 FATFS_LinkDriver
/tmp/ccyRZSSS.s:155 .text.FATFS_UnLinkDriverEx:00000000 $t
/tmp/ccyRZSSS.s:161 .text.FATFS_UnLinkDriverEx:00000000 FATFS_UnLinkDriverEx
/tmp/ccyRZSSS.s:237 .text.FATFS_UnLinkDriverEx:00000038 $d
/tmp/ccyRZSSS.s:242 .text.FATFS_UnLinkDriver:00000000 $t
/tmp/ccyRZSSS.s:248 .text.FATFS_UnLinkDriver:00000000 FATFS_UnLinkDriver
/tmp/ccyRZSSS.s:272 .text.FATFS_GetAttachedDriversNbr:00000000 $t
/tmp/ccyRZSSS.s:278 .text.FATFS_GetAttachedDriversNbr:00000000 FATFS_GetAttachedDriversNbr
/tmp/ccyRZSSS.s:294 .text.FATFS_GetAttachedDriversNbr:00000008 $d
/tmp/ccyRZSSS.s:300 .bss.disk:00000000 $d
NO UNDEFINED SYMBOLS

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,4 +1,4 @@
ARM GAS /tmp/ccx8I3an.s page 1
ARM GAS /tmp/cc2j0q1O.s page 1
1 .cpu cortex-m7
@ -58,7 +58,7 @@ ARM GAS /tmp/ccx8I3an.s page 1
29:Src/sd_diskio.c **** #include "sd_diskio.h"
30:Src/sd_diskio.c ****
31:Src/sd_diskio.c **** /* Private typedef -----------------------------------------------------------*/
ARM GAS /tmp/ccx8I3an.s page 2
ARM GAS /tmp/cc2j0q1O.s page 2
32:Src/sd_diskio.c **** /* Private define ------------------------------------------------------------*/
@ -118,7 +118,7 @@ ARM GAS /tmp/ccx8I3an.s page 1
86:Src/sd_diskio.c **** /* USER CODE END beforeFunctionSection */
87:Src/sd_diskio.c ****
88:Src/sd_diskio.c **** /* Private functions ---------------------------------------------------------*/
ARM GAS /tmp/ccx8I3an.s page 3
ARM GAS /tmp/cc2j0q1O.s page 3
89:Src/sd_diskio.c ****
@ -178,7 +178,7 @@ ARM GAS /tmp/ccx8I3an.s page 1
71 .global SD_initialize
72 .syntax unified
73 .thumb
ARM GAS /tmp/ccx8I3an.s page 4
ARM GAS /tmp/cc2j0q1O.s page 4
74 .thumb_func
@ -238,7 +238,7 @@ ARM GAS /tmp/ccx8I3an.s page 1
106 .loc 1 123 1 view .LVU21
107 0014 10BD pop {r4, pc}
108 .LVL4:
ARM GAS /tmp/ccx8I3an.s page 5
ARM GAS /tmp/cc2j0q1O.s page 5
109 .L9:
@ -298,7 +298,7 @@ ARM GAS /tmp/ccx8I3an.s page 1
152 .cfi_endproc
153 .LFE1185:
155 .section .text.SD_read,"ax",%progbits
ARM GAS /tmp/ccx8I3an.s page 6
ARM GAS /tmp/cc2j0q1O.s page 6
156 .align 1
@ -358,7 +358,7 @@ ARM GAS /tmp/ccx8I3an.s page 1
193 .L16:
152:Src/sd_diskio.c **** (uint32_t) (sector),
153:Src/sd_diskio.c **** count, SD_TIMEOUT) == MSD_OK)
ARM GAS /tmp/ccx8I3an.s page 7
ARM GAS /tmp/cc2j0q1O.s page 7
154:Src/sd_diskio.c **** {
@ -418,7 +418,7 @@ ARM GAS /tmp/ccx8I3an.s page 1
173:Src/sd_diskio.c **** * @param count: Number of sectors to write (1..128)
174:Src/sd_diskio.c **** * @retval DRESULT: Operation result
175:Src/sd_diskio.c **** */
ARM GAS /tmp/ccx8I3an.s page 8
ARM GAS /tmp/cc2j0q1O.s page 8
176:Src/sd_diskio.c **** #if _USE_WRITE == 1
@ -478,7 +478,7 @@ ARM GAS /tmp/ccx8I3an.s page 1
264 001a FAD1 bne .L21
265 .L20:
266 .LVL24:
ARM GAS /tmp/ccx8I3an.s page 9
ARM GAS /tmp/cc2j0q1O.s page 9
190:Src/sd_diskio.c **** res = RES_OK;
@ -538,7 +538,7 @@ ARM GAS /tmp/ccx8I3an.s page 1
302 .cfi_def_cfa_offset 48
210:Src/sd_diskio.c **** DRESULT res = RES_ERROR;
303 .loc 1 210 3 is_stmt 1 view .LVU64
ARM GAS /tmp/ccx8I3an.s page 10
ARM GAS /tmp/cc2j0q1O.s page 10
304 .LVL27:
@ -598,7 +598,7 @@ ARM GAS /tmp/ccx8I3an.s page 1
341 002a 0DE0 b .L25
342 .LVL31:
343 .L28:
ARM GAS /tmp/ccx8I3an.s page 11
ARM GAS /tmp/cc2j0q1O.s page 11
228:Src/sd_diskio.c ****
@ -658,7 +658,7 @@ ARM GAS /tmp/ccx8I3an.s page 1
245:Src/sd_diskio.c **** }
246:Src/sd_diskio.c ****
247:Src/sd_diskio.c **** return res;
ARM GAS /tmp/ccx8I3an.s page 12
ARM GAS /tmp/cc2j0q1O.s page 12
248:Src/sd_diskio.c **** }
@ -708,31 +708,31 @@ ARM GAS /tmp/ccx8I3an.s page 1
427 .file 9 "Middlewares/Third_Party/FatFs/src/ff_gen_drv.h"
428 .file 10 "Inc/bsp_driver_sd.h"
429 .file 11 "Inc/sd_diskio.h"
ARM GAS /tmp/ccx8I3an.s page 13
ARM GAS /tmp/cc2j0q1O.s page 13
DEFINED SYMBOLS
*ABS*:00000000 sd_diskio.c
/tmp/ccx8I3an.s:20 .text.SD_CheckStatus:00000000 $t
/tmp/ccx8I3an.s:25 .text.SD_CheckStatus:00000000 SD_CheckStatus
/tmp/ccx8I3an.s:65 .text.SD_CheckStatus:00000020 $d
/tmp/ccx8I3an.s:416 .data.Stat:00000000 Stat
/tmp/ccx8I3an.s:70 .text.SD_initialize:00000000 $t
/tmp/ccx8I3an.s:76 .text.SD_initialize:00000000 SD_initialize
/tmp/ccx8I3an.s:122 .text.SD_initialize:00000024 $d
/tmp/ccx8I3an.s:127 .text.SD_status:00000000 $t
/tmp/ccx8I3an.s:133 .text.SD_status:00000000 SD_status
/tmp/ccx8I3an.s:156 .text.SD_read:00000000 $t
/tmp/ccx8I3an.s:162 .text.SD_read:00000000 SD_read
/tmp/ccx8I3an.s:218 .text.SD_write:00000000 $t
/tmp/ccx8I3an.s:224 .text.SD_write:00000000 SD_write
/tmp/ccx8I3an.s:280 .text.SD_ioctl:00000000 $t
/tmp/ccx8I3an.s:286 .text.SD_ioctl:00000000 SD_ioctl
/tmp/ccx8I3an.s:320 .text.SD_ioctl:00000018 $d
/tmp/ccx8I3an.s:324 .text.SD_ioctl:0000001c $t
/tmp/ccx8I3an.s:398 .text.SD_ioctl:00000054 $d
/tmp/ccx8I3an.s:407 .rodata.SD_Driver:00000000 SD_Driver
/tmp/ccx8I3an.s:404 .rodata.SD_Driver:00000000 $d
/tmp/cc2j0q1O.s:20 .text.SD_CheckStatus:00000000 $t
/tmp/cc2j0q1O.s:25 .text.SD_CheckStatus:00000000 SD_CheckStatus
/tmp/cc2j0q1O.s:65 .text.SD_CheckStatus:00000020 $d
/tmp/cc2j0q1O.s:416 .data.Stat:00000000 Stat
/tmp/cc2j0q1O.s:70 .text.SD_initialize:00000000 $t
/tmp/cc2j0q1O.s:76 .text.SD_initialize:00000000 SD_initialize
/tmp/cc2j0q1O.s:122 .text.SD_initialize:00000024 $d
/tmp/cc2j0q1O.s:127 .text.SD_status:00000000 $t
/tmp/cc2j0q1O.s:133 .text.SD_status:00000000 SD_status
/tmp/cc2j0q1O.s:156 .text.SD_read:00000000 $t
/tmp/cc2j0q1O.s:162 .text.SD_read:00000000 SD_read
/tmp/cc2j0q1O.s:218 .text.SD_write:00000000 $t
/tmp/cc2j0q1O.s:224 .text.SD_write:00000000 SD_write
/tmp/cc2j0q1O.s:280 .text.SD_ioctl:00000000 $t
/tmp/cc2j0q1O.s:286 .text.SD_ioctl:00000000 SD_ioctl
/tmp/cc2j0q1O.s:320 .text.SD_ioctl:00000018 $d
/tmp/cc2j0q1O.s:324 .text.SD_ioctl:0000001c $t
/tmp/cc2j0q1O.s:398 .text.SD_ioctl:00000054 $d
/tmp/cc2j0q1O.s:407 .rodata.SD_Driver:00000000 SD_Driver
/tmp/cc2j0q1O.s:404 .rodata.SD_Driver:00000000 $d
UNDEFINED SYMBOLS
BSP_SD_GetCardState

View File

@ -1,4 +1,4 @@
ARM GAS /tmp/ccEjAJiv.s page 1
ARM GAS /tmp/ccR0YjlF.s page 1
1 .cpu cortex-m7
@ -58,7 +58,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
29:Src/stm32f7xx_hal_msp.c ****
30:Src/stm32f7xx_hal_msp.c **** /* USER CODE END TD */
31:Src/stm32f7xx_hal_msp.c ****
ARM GAS /tmp/ccEjAJiv.s page 2
ARM GAS /tmp/ccR0YjlF.s page 2
32:Src/stm32f7xx_hal_msp.c **** /* Private define ------------------------------------------------------------*/
@ -118,7 +118,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
41 0004 1A6C ldr r2, [r3, #64]
42 0006 42F08052 orr r2, r2, #268435456
43 000a 1A64 str r2, [r3, #64]
ARM GAS /tmp/ccEjAJiv.s page 3
ARM GAS /tmp/ccR0YjlF.s page 3
44 .loc 1 72 3 view .LVU4
@ -178,7 +178,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
83:Src/stm32f7xx_hal_msp.c **** * @brief ADC MSP Initialization
84:Src/stm32f7xx_hal_msp.c **** * This function configures the hardware resources used in this example
85:Src/stm32f7xx_hal_msp.c **** * @param hadc: ADC handle pointer
ARM GAS /tmp/ccEjAJiv.s page 4
ARM GAS /tmp/ccR0YjlF.s page 4
86:Src/stm32f7xx_hal_msp.c **** * @retval None
@ -238,7 +238,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
111:Src/stm32f7xx_hal_msp.c **** GPIO_InitStruct.Pull = GPIO_NOPULL;
112:Src/stm32f7xx_hal_msp.c **** HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
113:Src/stm32f7xx_hal_msp.c ****
ARM GAS /tmp/ccEjAJiv.s page 5
ARM GAS /tmp/ccR0YjlF.s page 5
114:Src/stm32f7xx_hal_msp.c **** GPIO_InitStruct.Pin = GPIO_PIN_2;
@ -298,7 +298,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
130 .cfi_def_cfa_offset 12
131 @ sp needed
132 0020 30BD pop {r4, r5, pc}
ARM GAS /tmp/ccEjAJiv.s page 6
ARM GAS /tmp/ccR0YjlF.s page 6
133 .LVL2:
@ -358,7 +358,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
172 0048 1A6B ldr r2, [r3, #48]
173 004a 42F00102 orr r2, r2, #1
174 004e 1A63 str r2, [r3, #48]
ARM GAS /tmp/ccEjAJiv.s page 7
ARM GAS /tmp/ccR0YjlF.s page 7
100:Src/stm32f7xx_hal_msp.c **** __HAL_RCC_GPIOB_CLK_ENABLE();
@ -418,7 +418,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
114:Src/stm32f7xx_hal_msp.c **** GPIO_InitStruct.Mode = GPIO_MODE_ANALOG;
213 .loc 1 114 5 is_stmt 1 view .LVU55
114:Src/stm32f7xx_hal_msp.c **** GPIO_InitStruct.Mode = GPIO_MODE_ANALOG;
ARM GAS /tmp/ccEjAJiv.s page 8
ARM GAS /tmp/ccR0YjlF.s page 8
214 .loc 1 114 25 is_stmt 0 view .LVU56
@ -478,7 +478,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
254 .LVL9:
255 .L10:
137:Src/stm32f7xx_hal_msp.c ****
ARM GAS /tmp/ccEjAJiv.s page 9
ARM GAS /tmp/ccR0YjlF.s page 9
256 .loc 1 137 5 view .LVU71
@ -538,7 +538,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
145:Src/stm32f7xx_hal_msp.c **** HAL_GPIO_Init(GPIOF, &GPIO_InitStruct);
295 .loc 1 145 5 is_stmt 1 view .LVU87
146:Src/stm32f7xx_hal_msp.c ****
ARM GAS /tmp/ccEjAJiv.s page 10
ARM GAS /tmp/ccR0YjlF.s page 10
296 .loc 1 146 5 view .LVU88
@ -598,7 +598,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
340 @ args = 0, pretend = 0, frame = 0
341 @ frame_needed = 0, uses_anonymous_args = 0
342 .loc 1 165 1 is_stmt 0 view .LVU94
ARM GAS /tmp/ccEjAJiv.s page 11
ARM GAS /tmp/ccR0YjlF.s page 11
343 0000 08B5 push {r3, lr}
@ -658,7 +658,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
201:Src/stm32f7xx_hal_msp.c **** {
202:Src/stm32f7xx_hal_msp.c **** /* USER CODE BEGIN ADC3_MspDeInit 0 */
203:Src/stm32f7xx_hal_msp.c ****
ARM GAS /tmp/ccEjAJiv.s page 12
ARM GAS /tmp/ccR0YjlF.s page 12
204:Src/stm32f7xx_hal_msp.c **** /* USER CODE END ADC3_MspDeInit 0 */
@ -718,7 +718,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
387 .LVL20:
388 0036 EBE7 b .L13
389 .LVL21:
ARM GAS /tmp/ccEjAJiv.s page 13
ARM GAS /tmp/ccR0YjlF.s page 13
390 .L18:
@ -778,7 +778,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
434 .cfi_def_cfa_offset 20
435 .cfi_offset 4, -20
436 .cfi_offset 5, -16
ARM GAS /tmp/ccEjAJiv.s page 14
ARM GAS /tmp/ccR0YjlF.s page 14
437 .cfi_offset 6, -12
@ -838,7 +838,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
259:Src/stm32f7xx_hal_msp.c **** __HAL_RCC_GPIOD_CLK_ENABLE();
260:Src/stm32f7xx_hal_msp.c **** /**SDMMC1 GPIO Configuration
261:Src/stm32f7xx_hal_msp.c **** PC8 ------> SDMMC1_D0
ARM GAS /tmp/ccEjAJiv.s page 15
ARM GAS /tmp/ccR0YjlF.s page 15
262:Src/stm32f7xx_hal_msp.c **** PC9 ------> SDMMC1_D1
@ -898,7 +898,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
489 002e FFF7FEFF bl HAL_RCCEx_PeriphCLKConfig
490 .LVL29:
250:Src/stm32f7xx_hal_msp.c **** {
ARM GAS /tmp/ccEjAJiv.s page 16
ARM GAS /tmp/ccR0YjlF.s page 16
491 .loc 1 250 8 discriminator 1 view .LVU127
@ -958,7 +958,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
530 005c 1A6B ldr r2, [r3, #48]
531 005e 42F00802 orr r2, r2, #8
532 0062 1A63 str r2, [r3, #48]
ARM GAS /tmp/ccEjAJiv.s page 17
ARM GAS /tmp/ccR0YjlF.s page 17
259:Src/stm32f7xx_hal_msp.c **** /**SDMMC1 GPIO Configuration
@ -1018,7 +1018,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
570 008c 0423 movs r3, #4
571 008e 2793 str r3, [sp, #156]
277:Src/stm32f7xx_hal_msp.c **** GPIO_InitStruct.Pull = GPIO_NOPULL;
ARM GAS /tmp/ccEjAJiv.s page 18
ARM GAS /tmp/ccR0YjlF.s page 18
572 .loc 1 277 5 is_stmt 1 view .LVU160
@ -1078,7 +1078,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
292:Src/stm32f7xx_hal_msp.c **** * @brief SD MSP De-Initialization
293:Src/stm32f7xx_hal_msp.c **** * This function freeze the hardware resources used in this example
294:Src/stm32f7xx_hal_msp.c **** * @param hsd: SD handle pointer
ARM GAS /tmp/ccEjAJiv.s page 19
ARM GAS /tmp/ccR0YjlF.s page 19
295:Src/stm32f7xx_hal_msp.c **** * @retval None
@ -1138,7 +1138,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
305:Src/stm32f7xx_hal_msp.c ****
640 .loc 1 305 5 is_stmt 1 view .LVU177
641 000c 084A ldr r2, .L33+4
ARM GAS /tmp/ccEjAJiv.s page 20
ARM GAS /tmp/ccR0YjlF.s page 20
642 000e 536C ldr r3, [r2, #68]
@ -1198,7 +1198,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
686 .cfi_def_cfa_offset 4
687 .cfi_offset 14, -4
688 0002 87B0 sub sp, sp, #28
ARM GAS /tmp/ccEjAJiv.s page 21
ARM GAS /tmp/ccR0YjlF.s page 21
689 .LCFI13:
@ -1258,7 +1258,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
370:Src/stm32f7xx_hal_msp.c **** }
371:Src/stm32f7xx_hal_msp.c **** else if(htim_base->Instance==TIM10)
708 .loc 1 371 8 is_stmt 1 view .LVU191
ARM GAS /tmp/ccEjAJiv.s page 22
ARM GAS /tmp/ccR0YjlF.s page 22
709 .loc 1 371 10 is_stmt 0 view .LVU192
@ -1318,7 +1318,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
741 .LVL43:
394:Src/stm32f7xx_hal_msp.c **** HAL_NVIC_EnableIRQ(TIM1_TRG_COM_TIM11_IRQn);
742 .loc 1 394 5 is_stmt 1 view .LVU203
ARM GAS /tmp/ccEjAJiv.s page 23
ARM GAS /tmp/ccR0YjlF.s page 23
743 0042 1A20 movs r0, #26
@ -1378,7 +1378,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
782 .loc 1 352 5 view .LVU214
783 0064 1D4B ldr r3, .L46+20
784 0066 5A6C ldr r2, [r3, #68]
ARM GAS /tmp/ccEjAJiv.s page 24
ARM GAS /tmp/ccR0YjlF.s page 24
785 0068 42F00102 orr r2, r2, #1
@ -1438,7 +1438,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
827 .L45:
377:Src/stm32f7xx_hal_msp.c **** /* TIM10 interrupt Init */
828 .loc 1 377 5 view .LVU227
ARM GAS /tmp/ccEjAJiv.s page 25
ARM GAS /tmp/ccR0YjlF.s page 25
829 .LBB17:
@ -1498,7 +1498,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
877 .LVL55:
878 .LFB1189:
401:Src/stm32f7xx_hal_msp.c ****
ARM GAS /tmp/ccEjAJiv.s page 26
ARM GAS /tmp/ccR0YjlF.s page 26
402:Src/stm32f7xx_hal_msp.c **** void HAL_TIM_MspPostInit(TIM_HandleTypeDef* htim)
@ -1558,7 +1558,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
909 001a 9342 cmp r3, r2
910 001c 1AD0 beq .L54
426:Src/stm32f7xx_hal_msp.c **** {
ARM GAS /tmp/ccEjAJiv.s page 27
ARM GAS /tmp/ccR0YjlF.s page 27
427:Src/stm32f7xx_hal_msp.c **** /* USER CODE BEGIN TIM1_MspPostInit 0 */
@ -1618,7 +1618,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
923 @ sp needed
924 0026 5DF804FB ldr pc, [sp], #4
925 .LVL57:
ARM GAS /tmp/ccEjAJiv.s page 28
ARM GAS /tmp/ccR0YjlF.s page 28
926 .L53:
@ -1678,7 +1678,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
964 .LVL59:
965 0052 E7E7 b .L48
966 .LVL60:
ARM GAS /tmp/ccEjAJiv.s page 29
ARM GAS /tmp/ccR0YjlF.s page 29
967 .L54:
@ -1738,7 +1738,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
440:Src/stm32f7xx_hal_msp.c ****
1005 .loc 1 440 5 is_stmt 0 view .LVU280
1006 007e FFF7FEFF bl HAL_GPIO_Init
ARM GAS /tmp/ccEjAJiv.s page 30
ARM GAS /tmp/ccR0YjlF.s page 30
1007 .LVL62:
@ -1798,7 +1798,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
1045 .loc 1 461 5 is_stmt 0 view .LVU296
1046 00aa FFF7FEFF bl HAL_GPIO_Init
1047 .LVL65:
ARM GAS /tmp/ccEjAJiv.s page 31
ARM GAS /tmp/ccR0YjlF.s page 31
1048 .loc 1 468 1 view .LVU297
@ -1858,7 +1858,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
484:Src/stm32f7xx_hal_msp.c **** /* USER CODE BEGIN TIM4_MspDeInit 1 */
485:Src/stm32f7xx_hal_msp.c ****
486:Src/stm32f7xx_hal_msp.c **** /* USER CODE END TIM4_MspDeInit 1 */
ARM GAS /tmp/ccEjAJiv.s page 32
ARM GAS /tmp/ccR0YjlF.s page 32
487:Src/stm32f7xx_hal_msp.c **** }
@ -1918,7 +1918,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
526:Src/stm32f7xx_hal_msp.c **** }
527:Src/stm32f7xx_hal_msp.c **** else if(htim_base->Instance==TIM11)
1104 .loc 1 527 8 is_stmt 1 view .LVU309
ARM GAS /tmp/ccEjAJiv.s page 33
ARM GAS /tmp/ccR0YjlF.s page 33
1105 .loc 1 527 10 is_stmt 0 view .LVU310
@ -1978,7 +1978,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
505:Src/stm32f7xx_hal_msp.c ****
1142 .loc 1 505 5 view .LVU318
1143 0052 02F59A32 add r2, r2, #78848
ARM GAS /tmp/ccEjAJiv.s page 34
ARM GAS /tmp/ccR0YjlF.s page 34
1144 0056 536C ldr r3, [r2, #68]
@ -2038,7 +2038,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
549:Src/stm32f7xx_hal_msp.c **** */
550:Src/stm32f7xx_hal_msp.c **** void HAL_UART_MspInit(UART_HandleTypeDef* huart)
551:Src/stm32f7xx_hal_msp.c **** {
ARM GAS /tmp/ccEjAJiv.s page 35
ARM GAS /tmp/ccR0YjlF.s page 35
1189 .loc 1 551 1 is_stmt 1 view -0
@ -2098,7 +2098,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
568:Src/stm32f7xx_hal_msp.c ****
569:Src/stm32f7xx_hal_msp.c **** /* Peripheral clock enable */
570:Src/stm32f7xx_hal_msp.c **** __HAL_RCC_UART8_CLK_ENABLE();
ARM GAS /tmp/ccEjAJiv.s page 36
ARM GAS /tmp/ccR0YjlF.s page 36
571:Src/stm32f7xx_hal_msp.c ****
@ -2158,7 +2158,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
1253 .loc 1 570 5 view .LVU342
570:Src/stm32f7xx_hal_msp.c ****
1254 .loc 1 570 5 view .LVU343
ARM GAS /tmp/ccEjAJiv.s page 37
ARM GAS /tmp/ccR0YjlF.s page 37
1255 0034 124B ldr r3, .L77+4
@ -2218,7 +2218,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
580:Src/stm32f7xx_hal_msp.c **** GPIO_InitStruct.Alternate = GPIO_AF8_UART8;
1294 .loc 1 580 5 is_stmt 1 view .LVU359
580:Src/stm32f7xx_hal_msp.c **** GPIO_InitStruct.Alternate = GPIO_AF8_UART8;
ARM GAS /tmp/ccEjAJiv.s page 38
ARM GAS /tmp/ccR0YjlF.s page 38
1295 .loc 1 580 27 is_stmt 0 view .LVU360
@ -2278,7 +2278,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
1338 .LCFI25:
1339 .cfi_def_cfa_offset 8
1340 .cfi_offset 3, -8
ARM GAS /tmp/ccEjAJiv.s page 39
ARM GAS /tmp/ccR0YjlF.s page 39
1341 .cfi_offset 14, -4
@ -2338,7 +2338,7 @@ ARM GAS /tmp/ccEjAJiv.s page 1
1372 0020 007C0040 .word 1073773568
1373 0024 00380240 .word 1073887232
1374 0028 00100240 .word 1073876992
ARM GAS /tmp/ccEjAJiv.s page 40
ARM GAS /tmp/ccR0YjlF.s page 40
1375 .cfi_endproc
@ -2363,41 +2363,41 @@ ARM GAS /tmp/ccEjAJiv.s page 1
1395 .file 17 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h"
1396 .file 18 "Inc/main.h"
1397 .file 19 "<built-in>"
ARM GAS /tmp/ccEjAJiv.s page 41
ARM GAS /tmp/ccR0YjlF.s page 41
DEFINED SYMBOLS
*ABS*:00000000 stm32f7xx_hal_msp.c
/tmp/ccEjAJiv.s:20 .text.HAL_MspInit:00000000 $t
/tmp/ccEjAJiv.s:26 .text.HAL_MspInit:00000000 HAL_MspInit
/tmp/ccEjAJiv.s:76 .text.HAL_MspInit:0000002c $d
/tmp/ccEjAJiv.s:81 .text.HAL_ADC_MspInit:00000000 $t
/tmp/ccEjAJiv.s:87 .text.HAL_ADC_MspInit:00000000 HAL_ADC_MspInit
/tmp/ccEjAJiv.s:318 .text.HAL_ADC_MspInit:000000f4 $d
/tmp/ccEjAJiv.s:329 .text.HAL_ADC_MspDeInit:00000000 $t
/tmp/ccEjAJiv.s:335 .text.HAL_ADC_MspDeInit:00000000 HAL_ADC_MspDeInit
/tmp/ccEjAJiv.s:408 .text.HAL_ADC_MspDeInit:00000050 $d
/tmp/ccEjAJiv.s:418 .text.HAL_SD_MspInit:00000000 $t
/tmp/ccEjAJiv.s:424 .text.HAL_SD_MspInit:00000000 HAL_SD_MspInit
/tmp/ccEjAJiv.s:600 .text.HAL_SD_MspInit:000000a8 $d
/tmp/ccEjAJiv.s:608 .text.HAL_SD_MspDeInit:00000000 $t
/tmp/ccEjAJiv.s:614 .text.HAL_SD_MspDeInit:00000000 HAL_SD_MspDeInit
/tmp/ccEjAJiv.s:662 .text.HAL_SD_MspDeInit:0000002c $d
/tmp/ccEjAJiv.s:670 .text.HAL_TIM_Base_MspInit:00000000 $t
/tmp/ccEjAJiv.s:676 .text.HAL_TIM_Base_MspInit:00000000 HAL_TIM_Base_MspInit
/tmp/ccEjAJiv.s:860 .text.HAL_TIM_Base_MspInit:000000c8 $d
/tmp/ccEjAJiv.s:870 .text.HAL_TIM_MspPostInit:00000000 $t
/tmp/ccEjAJiv.s:876 .text.HAL_TIM_MspPostInit:00000000 HAL_TIM_MspPostInit
/tmp/ccEjAJiv.s:1053 .text.HAL_TIM_MspPostInit:000000b0 $d
/tmp/ccEjAJiv.s:1063 .text.HAL_TIM_Base_MspDeInit:00000000 $t
/tmp/ccEjAJiv.s:1069 .text.HAL_TIM_Base_MspDeInit:00000000 HAL_TIM_Base_MspDeInit
/tmp/ccEjAJiv.s:1171 .text.HAL_TIM_Base_MspDeInit:0000007c $d
/tmp/ccEjAJiv.s:1180 .text.HAL_UART_MspInit:00000000 $t
/tmp/ccEjAJiv.s:1186 .text.HAL_UART_MspInit:00000000 HAL_UART_MspInit
/tmp/ccEjAJiv.s:1316 .text.HAL_UART_MspInit:0000007c $d
/tmp/ccEjAJiv.s:1323 .text.HAL_UART_MspDeInit:00000000 $t
/tmp/ccEjAJiv.s:1329 .text.HAL_UART_MspDeInit:00000000 HAL_UART_MspDeInit
/tmp/ccEjAJiv.s:1372 .text.HAL_UART_MspDeInit:00000020 $d
/tmp/ccR0YjlF.s:20 .text.HAL_MspInit:00000000 $t
/tmp/ccR0YjlF.s:26 .text.HAL_MspInit:00000000 HAL_MspInit
/tmp/ccR0YjlF.s:76 .text.HAL_MspInit:0000002c $d
/tmp/ccR0YjlF.s:81 .text.HAL_ADC_MspInit:00000000 $t
/tmp/ccR0YjlF.s:87 .text.HAL_ADC_MspInit:00000000 HAL_ADC_MspInit
/tmp/ccR0YjlF.s:318 .text.HAL_ADC_MspInit:000000f4 $d
/tmp/ccR0YjlF.s:329 .text.HAL_ADC_MspDeInit:00000000 $t
/tmp/ccR0YjlF.s:335 .text.HAL_ADC_MspDeInit:00000000 HAL_ADC_MspDeInit
/tmp/ccR0YjlF.s:408 .text.HAL_ADC_MspDeInit:00000050 $d
/tmp/ccR0YjlF.s:418 .text.HAL_SD_MspInit:00000000 $t
/tmp/ccR0YjlF.s:424 .text.HAL_SD_MspInit:00000000 HAL_SD_MspInit
/tmp/ccR0YjlF.s:600 .text.HAL_SD_MspInit:000000a8 $d
/tmp/ccR0YjlF.s:608 .text.HAL_SD_MspDeInit:00000000 $t
/tmp/ccR0YjlF.s:614 .text.HAL_SD_MspDeInit:00000000 HAL_SD_MspDeInit
/tmp/ccR0YjlF.s:662 .text.HAL_SD_MspDeInit:0000002c $d
/tmp/ccR0YjlF.s:670 .text.HAL_TIM_Base_MspInit:00000000 $t
/tmp/ccR0YjlF.s:676 .text.HAL_TIM_Base_MspInit:00000000 HAL_TIM_Base_MspInit
/tmp/ccR0YjlF.s:860 .text.HAL_TIM_Base_MspInit:000000c8 $d
/tmp/ccR0YjlF.s:870 .text.HAL_TIM_MspPostInit:00000000 $t
/tmp/ccR0YjlF.s:876 .text.HAL_TIM_MspPostInit:00000000 HAL_TIM_MspPostInit
/tmp/ccR0YjlF.s:1053 .text.HAL_TIM_MspPostInit:000000b0 $d
/tmp/ccR0YjlF.s:1063 .text.HAL_TIM_Base_MspDeInit:00000000 $t
/tmp/ccR0YjlF.s:1069 .text.HAL_TIM_Base_MspDeInit:00000000 HAL_TIM_Base_MspDeInit
/tmp/ccR0YjlF.s:1171 .text.HAL_TIM_Base_MspDeInit:0000007c $d
/tmp/ccR0YjlF.s:1180 .text.HAL_UART_MspInit:00000000 $t
/tmp/ccR0YjlF.s:1186 .text.HAL_UART_MspInit:00000000 HAL_UART_MspInit
/tmp/ccR0YjlF.s:1316 .text.HAL_UART_MspInit:0000007c $d
/tmp/ccR0YjlF.s:1323 .text.HAL_UART_MspDeInit:00000000 $t
/tmp/ccR0YjlF.s:1329 .text.HAL_UART_MspDeInit:00000000 HAL_UART_MspDeInit
/tmp/ccR0YjlF.s:1372 .text.HAL_UART_MspDeInit:00000020 $d
UNDEFINED SYMBOLS
HAL_GPIO_Init

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,4 +1,4 @@
ARM GAS /tmp/ccgATpUY.s page 1
ARM GAS /tmp/ccbQTdB1.s page 1
1 .cpu cortex-m7
@ -24,7 +24,7 @@ ARM GAS /tmp/ccgATpUY.s page 1
21 .file 3 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h"
22 .file 4 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rcc.h"
23 .file 5 "/usr/lib/gcc/arm-none-eabi/13.2.1/include/stdint.h"
ARM GAS /tmp/ccgATpUY.s page 2
ARM GAS /tmp/ccbQTdB1.s page 2
DEFINED SYMBOLS