[bsp] Fix the mismatch between the print type and the variable type in print function.

This commit is contained in:
HUST_lxq 2023-04-04 20:51:43 +08:00 committed by Man, Jianting (Meco)
parent 00a6d1a1c5
commit 2720c9c38c
2 changed files with 4 additions and 4 deletions

View File

@ -107,7 +107,7 @@ BOOL phy_Init() {
speed = 1000;
}
printf("PHY runs in %dM speed %s duplex\n",
printf("PHY runs in %uM speed %s duplex\n",
speed, (phy_GetDuplex() == PHY_DUPLEX_HALF) ? "half" : "full");
}

View File

@ -57,7 +57,7 @@ static rt_err_t ifx_adc_enabled(struct rt_adc_device *device, rt_uint32_t channe
if (result != RT_EOK)
{
LOG_E("ADC initialization failed. Error: %ld\n", (long unsigned int)result);
LOG_E("ADC initialization failed. Error: %llu\n", (long unsigned int)result);
return -RT_ENOSYS;
}
@ -67,7 +67,7 @@ static rt_err_t ifx_adc_enabled(struct rt_adc_device *device, rt_uint32_t channe
if (result != RT_EOK)
{
LOG_E("ADC single ended channel initialization failed. Error: %ld\n", (long unsigned int)result);
LOG_E("ADC single ended channel initialization failed. Error: %llu\n", (long unsigned int)result);
return -RT_ENOSYS;
}
@ -76,7 +76,7 @@ static rt_err_t ifx_adc_enabled(struct rt_adc_device *device, rt_uint32_t channe
if (result != RT_EOK)
{
printf("ADC configuration update failed. Error: %ld\n", (long unsigned int)result);
printf("ADC configuration update failed. Error: %llu\n", (long unsigned int)result);
return -RT_ENOSYS;
}
}