Skip to content

Commit

Permalink
[CORRECTIVE] Added mirrored targets to graph factory interface data.
Browse files Browse the repository at this point in the history
  • Loading branch information
teuhom committed Oct 11, 2024
1 parent 86c9f5a commit e093121
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion editors/MemoryDesigner/ConnectivityGraphFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ QSharedPointer<ConnectivityInterface> ConnectivityGraphFactory::createInterfaceD
{
memoryReference = busInterface->getMemoryMapRef();
}
else if (busMode == General::MIRRORED_SLAVE && !busInterface->getMirroredSlave()->getRemapAddresses()->isEmpty())
else if ((busMode == General::MIRRORED_SLAVE || busMode == General::MIRRORED_TARGET) && !busInterface->getMirroredSlave()->getRemapAddresses()->isEmpty())
{
interfaceNode->setRemapAddress(expressionParser_->parseExpression(
busInterface->getMirroredSlave()->getRemapAddresses()->first()->remapAddress_));
Expand Down
16 changes: 8 additions & 8 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@
#ifndef VERSIONNO__H
#define VERSIONNO__H

#define VERSION_FULL 3.13.643.0
#define VERSION_FULL 3.13.646.0

#define VERSION_BASEYEAR 0
#define VERSION_DATE "2024-10-04"
#define VERSION_TIME "13:44:51"
#define VERSION_DATE "2024-10-10"
#define VERSION_TIME "14:09:32"

#define VERSION_MAJOR 3
#define VERSION_MINOR 13
#define VERSION_BUILDNO 643
#define VERSION_BUILDNO 646
#define VERSION_EXTEND 0

#define VERSION_FILE 3,13,643,0
#define VERSION_PRODUCT 3,13,643,0
#define VERSION_FILESTR "3,13,643,0"
#define VERSION_PRODUCTSTR "3,13,643,0"
#define VERSION_FILE 3,13,646,0
#define VERSION_PRODUCT 3,13,646,0
#define VERSION_FILESTR "3,13,646,0"
#define VERSION_PRODUCTSTR "3,13,646,0"

#endif

0 comments on commit e093121

Please sign in to comment.