Skip to content

Commit

Permalink
Merge pull request #33 from icshwi/master
Browse files Browse the repository at this point in the history
ecmcEc.cpp: Use correct etherlab names for floating point macros
  • Loading branch information
anderssandstrom authored Nov 10, 2020
2 parents 1975675 + 921aa9b commit 6f54c7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devEcmcSup/ethercat/ecmcEc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -945,15 +945,15 @@ bool ecmcEc::validEntryType(ecmcEcDataType dt) {
break;

case ECMC_EC_F32:
#ifdef EC_READ_F32
#ifdef EC_READ_REAL
return 1;
#else
return 0;
#endif
break;

case ECMC_EC_F64:
#ifdef EC_READ_F64
#ifdef EC_READ_LREAL
return 1;
#else
return 0;
Expand Down

0 comments on commit 6f54c7d

Please sign in to comment.