identify board right in error message

only:uaefi
This commit is contained in:
rusefillc 2024-04-01 15:55:05 -04:00
parent 8d205bf5fc
commit fa106f8a51
3 changed files with 2 additions and 3 deletions

View File

@ -245,7 +245,7 @@ void bluetoothStart(bluetooth_module_e moduleType, const char *baudRate, const c
}
if (getBluetoothChannel() == nullptr) {
efiPrintf("No Bluetooth channel configured! Check your board config.");
efiPrintf("No Bluetooth channel configured! Check your board config [%s]", getTsSignature());
return;
}

View File

@ -83,8 +83,6 @@
#include "status_loop.h"
#include "mmc_card.h"
#include "signature.h"
#if EFI_SIMULATOR
#include "rusEfiFunctionalTest.h"
#endif /* EFI_SIMULATOR */

View File

@ -37,6 +37,7 @@
#include "hardware.h"
#include "thread_priority.h"
#include "tooth_logger.h"
#include "signature.h"
#if EFI_UNIT_TEST
#include <gtest/gtest.h>