Skip to content

Commit 84164b0

Browse files
committed
Release v3.0.2
2 parents 3875046 + c2e8b3c commit 84164b0

646 files changed

Lines changed: 654 additions & 647 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,8 @@ function (cc_plugin protocol interface)
422422
)
423423

424424
set(extra_link_opts)
425-
if ((CMAKE_COMPILER_IS_GNUCC) OR ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang"))
425+
if ((NOT OPT_WITH_DEFAULT_SANITIZERS) AND
426+
((CMAKE_COMPILER_IS_GNUCC) OR ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")))
426427
set(extra_link_opts "-Wl,--no-undefined")
427428
endif ()
428429

cc_tools_qt_plugin/Message/cc_ublox/Message.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v7.0.2
1+
// Generated by commsdsl2tools_qt v7.0.3
22

33
#include "Message.h"
44

cc_tools_qt_plugin/Message/cc_ublox/Message.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v7.0.2
1+
// Generated by commsdsl2tools_qt v7.0.3
22

33
#pragma once
44

cc_tools_qt_plugin/Message/cc_ublox/factory/MsgFactory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v7.0.2
1+
// Generated by commsdsl2tools_qt v7.0.3
22

33
#include "MsgFactory.h"
44

cc_tools_qt_plugin/Message/cc_ublox/factory/MsgFactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v7.0.2
1+
// Generated by commsdsl2tools_qt v7.0.3
22

33
#pragma once
44

cc_tools_qt_plugin/Message/cc_ublox/frame/UbloxFrame.cpp

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v7.0.2
1+
// Generated by commsdsl2tools_qt v7.0.3
22

33
#include "UbloxFrame.h"
44

@@ -83,6 +83,11 @@ cc_tools_qt::ToolsMessagePtr UbloxFrame::createMessageImpl(const QString& idAsSt
8383
return m_pImpl->createMessage(idAsString, idx);
8484
}
8585

86+
UbloxFrame::DataSeq UbloxFrame::writeProtMsgImpl(const void* protInterface)
87+
{
88+
return m_pImpl->writeProtMsg(protInterface);
89+
}
90+
8691
} // namespace frame
8792

8893
} // namespace cc_ublox

cc_tools_qt_plugin/Message/cc_ublox/frame/UbloxFrame.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v7.0.2
1+
// Generated by commsdsl2tools_qt v7.0.3
22

33
#pragma once
44

@@ -33,6 +33,7 @@ class UbloxFrame : public cc_tools_qt::ToolsFrame
3333
virtual cc_tools_qt::ToolsMessagePtr createExtraInfoMessageImpl() override;
3434
virtual cc_tools_qt::ToolsMessagesList createAllMessagesImpl() override;
3535
virtual cc_tools_qt::ToolsMessagePtr createMessageImpl(const QString& idAsString, unsigned idx) override;
36+
virtual DataSeq writeProtMsgImpl(const void* protInterface) override;
3637

3738
private:
3839
std::unique_ptr<UbloxFrameImpl> m_pImpl;

cc_tools_qt_plugin/Message/cc_ublox/frame/UbloxFrameProtTransportMessage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v7.0.2
1+
// Generated by commsdsl2tools_qt v7.0.3
22

33
#pragma once
44

cc_tools_qt_plugin/Message/cc_ublox/frame/UbloxFrameTransportMessage.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v7.0.2
1+
// Generated by commsdsl2tools_qt v7.0.3
22

33
#include "UbloxFrameTransportMessage.h"
44

cc_tools_qt_plugin/Message/cc_ublox/frame/UbloxFrameTransportMessage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v7.0.2
1+
// Generated by commsdsl2tools_qt v7.0.3
22

33
#pragma once
44

0 commit comments

Comments
 (0)