Skip to content

Commit 093c7d4

Browse files
committed
Generating code with comms v5.4.1 and commsdsl v7.1
1 parent 9ff80d4 commit 093c7d4

File tree

84 files changed

+128
-128
lines changed

Some content is hidden

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

84 files changed

+128
-128
lines changed

howtos/howto1/include/howto1/Version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ inline constexpr unsigned specVersion()
2222
} // namespace howto1
2323

2424
// Generated compile time check for minimal supported version of the COMMS library
25-
static_assert(COMMS_MAKE_VERSION(5, 4, 0) <= comms::version(),
25+
static_assert(COMMS_MAKE_VERSION(5, 4, 1) <= comms::version(),
2626
"The version of COMMS library is too old");

howtos/howto1/include/howto1/frame/Frame.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ class Frame : public
226226
FrameLayers<TOpt>::template Stack<TMessage, TAllMessages>;
227227
public:
228228
/// @brief Allow access to frame definition layers.
229-
/// @details See definition of @b COMMS_PROTOCOL_LAYERS_NAMES macro
229+
/// @details See definition of @b COMMS_FRAME_LAYERS_NAMES macro
230230
/// from COMMS library for details.
231231
///
232232
/// The generated types and functions are:
@@ -238,7 +238,7 @@ class Frame : public
238238
/// for @ref FrameLayers::Id layer.
239239
/// @li @b Layer_sizeWithFlags type and @b layer_sizeWithFlags() function
240240
/// for @ref FrameLayers::SizeWithFlags layer.
241-
COMMS_PROTOCOL_LAYERS_NAMES(
241+
COMMS_FRAME_LAYERS_NAMES(
242242
data,
243243
flags,
244244
id,

howtos/howto10/include/howto10/Version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ inline constexpr unsigned specVersion()
2222
} // namespace howto10
2323

2424
// Generated compile time check for minimal supported version of the COMMS library
25-
static_assert(COMMS_MAKE_VERSION(5, 4, 0) <= comms::version(),
25+
static_assert(COMMS_MAKE_VERSION(5, 4, 1) <= comms::version(),
2626
"The version of COMMS library is too old");

howtos/howto10/include/howto10/frame/Frame.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ class Frame : public
254254
FrameLayers<TOpt>::template Stack<TMessage, TAllMessages>;
255255
public:
256256
/// @brief Allow access to frame definition layers.
257-
/// @details See definition of @b COMMS_PROTOCOL_LAYERS_NAMES macro
257+
/// @details See definition of @b COMMS_FRAME_LAYERS_NAMES macro
258258
/// from COMMS library for details.
259259
///
260260
/// The generated types and functions are:
@@ -272,7 +272,7 @@ class Frame : public
272272
/// for @ref FrameLayers::Size layer.
273273
/// @li @b Layer_sync type and @b layer_sync() function
274274
/// for @ref FrameLayers::Sync layer.
275-
COMMS_PROTOCOL_LAYERS_NAMES(
275+
COMMS_FRAME_LAYERS_NAMES(
276276
data,
277277
checksum,
278278
pseudoFlags,

howtos/howto11/include/howto11/Version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ inline constexpr unsigned specVersion()
2222
} // namespace howto11
2323

2424
// Generated compile time check for minimal supported version of the COMMS library
25-
static_assert(COMMS_MAKE_VERSION(5, 4, 0) <= comms::version(),
25+
static_assert(COMMS_MAKE_VERSION(5, 4, 1) <= comms::version(),
2626
"The version of COMMS library is too old");

howtos/howto11/include/howto11/prot/frame/Frame.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class Frame : public
137137
FrameLayers<TOpt>::template Stack<TMessage, TAllMessages>;
138138
public:
139139
/// @brief Allow access to frame definition layers.
140-
/// @details See definition of @b COMMS_PROTOCOL_LAYERS_NAMES macro
140+
/// @details See definition of @b COMMS_FRAME_LAYERS_NAMES macro
141141
/// from COMMS library for details.
142142
///
143143
/// The generated types and functions are:
@@ -147,7 +147,7 @@ class Frame : public
147147
/// for @ref FrameLayers::ID layer.
148148
/// @li @b Layer_size type and @b layer_size() function
149149
/// for @ref FrameLayers::Size layer.
150-
COMMS_PROTOCOL_LAYERS_NAMES(
150+
COMMS_FRAME_LAYERS_NAMES(
151151
data,
152152
iD,
153153
size

howtos/howto11/include/howto11/var1/frame/KeyValueProp.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,15 @@ class KeyValueProp : public
8888
KeyValuePropLayers<TOpt>::template Stack<TMessage, TAllMessages>;
8989
public:
9090
/// @brief Allow access to frame definition layers.
91-
/// @details See definition of @b COMMS_PROTOCOL_LAYERS_NAMES macro
91+
/// @details See definition of @b COMMS_FRAME_LAYERS_NAMES macro
9292
/// from COMMS library for details.
9393
///
9494
/// The generated types and functions are:
9595
/// @li @b Layer_val type and @b layer_val() function
9696
/// for @ref KeyValuePropLayers::Val layer.
9797
/// @li @b Layer_key type and @b layer_key() function
9898
/// for @ref KeyValuePropLayers::Key layer.
99-
COMMS_PROTOCOL_LAYERS_NAMES(
99+
COMMS_FRAME_LAYERS_NAMES(
100100
val,
101101
key
102102
);

howtos/howto11/include/howto11/var2/frame/TlvProp.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ class TlvProp : public
136136
TlvPropLayers<TOpt>::template Stack<TMessage, TAllMessages>;
137137
public:
138138
/// @brief Allow access to frame definition layers.
139-
/// @details See definition of @b COMMS_PROTOCOL_LAYERS_NAMES macro
139+
/// @details See definition of @b COMMS_FRAME_LAYERS_NAMES macro
140140
/// from COMMS library for details.
141141
///
142142
/// The generated types and functions are:
@@ -146,7 +146,7 @@ class TlvProp : public
146146
/// for @ref TlvPropLayers::Length layer.
147147
/// @li @b Layer_key type and @b layer_key() function
148148
/// for @ref TlvPropLayers::Key layer.
149-
COMMS_PROTOCOL_LAYERS_NAMES(
149+
COMMS_FRAME_LAYERS_NAMES(
150150
val,
151151
length,
152152
key

howtos/howto2/include/howto2/Version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ inline constexpr unsigned specVersion()
2222
} // namespace howto2
2323

2424
// Generated compile time check for minimal supported version of the COMMS library
25-
static_assert(COMMS_MAKE_VERSION(5, 4, 0) <= comms::version(),
25+
static_assert(COMMS_MAKE_VERSION(5, 4, 1) <= comms::version(),
2626
"The version of COMMS library is too old");

howtos/howto2/include/howto2/frame/Frame.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,15 +186,15 @@ class Frame : public
186186
FrameLayers<TOpt>::template Stack<TMessage, TAllMessages>;
187187
public:
188188
/// @brief Allow access to frame definition layers.
189-
/// @details See definition of @b COMMS_PROTOCOL_LAYERS_NAMES macro
189+
/// @details See definition of @b COMMS_FRAME_LAYERS_NAMES macro
190190
/// from COMMS library for details.
191191
///
192192
/// The generated types and functions are:
193193
/// @li @b Layer_data type and @b layer_data() function
194194
/// for @ref FrameLayers::Data layer.
195195
/// @li @b Layer_idWithSize type and @b layer_idWithSize() function
196196
/// for @ref FrameLayers::IdWithSize layer.
197-
COMMS_PROTOCOL_LAYERS_NAMES(
197+
COMMS_FRAME_LAYERS_NAMES(
198198
data,
199199
idWithSize
200200
);

0 commit comments

Comments
 (0)