AP_HAL_ESP32: Added missing letter to printf statement

This commit is contained in:
Dave 2024-04-03 08:06:11 +02:00 committed by Randy Mackay
parent b7fe779713
commit d6488eb030
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ void SPIDevice::acquire_bus(bool accuire)
AP_HAL::Semaphore *SPIDevice::get_semaphore()
{
#ifdef SPIDEBUG
rintf("%s:%d \n", __PRETTY_FUNCTION__, __LINE__);
printf("%s:%d \n", __PRETTY_FUNCTION__, __LINE__);
#endif
return &bus.semaphore;
}