Skip to content

Commit

Permalink
feat: Warning added which informs if epicsUTag is supported or not.
Browse files Browse the repository at this point in the history
  • Loading branch information
jerzyjamroz committed Dec 11, 2023
1 parent bfc6ca2 commit e638c0b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions evrMrmApp/src/drvem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,10 @@ try{
if(busConfig.busType==busType_pci)
mrf::SPIDevice::registerDev(n+":FLASH", mrf::SPIDevice(this, 1));

#ifndef DBR_UTAG
std::cout << "WARNING EVRMRM::EVRMRM epicsUTag not supported." << std::endl;
#endif

} catch (std::exception& e) {
printf("Aborting EVR initializtion: %s\n", e.what());
cleanup();
Expand Down

0 comments on commit e638c0b

Please sign in to comment.