Skip to content

Commit

Permalink
Release v2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pablogs9 authored Nov 22, 2023
2 parents b419068 + 4d5ef55 commit f2f96ba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
apply plugin: 'java-library'
apply plugin: 'eclipse' // Eclipse integration

version = '2.0.1'
version = '2.0.2'
description = 'Build script with all necessary tasks to compile and test MicroXRCEDDSGen'

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ typedef enum $enum.name$
{
$enum.members:{$it.name$}; separator=",\n"$
} $enum.name$;

typedef uint32_t $enum.name$_cdr;
>>

/***** Utils *****/
Expand All @@ -119,6 +121,8 @@ $member.typecode.contentTypeCode.cTypename$ $member.name$;
$endif$
$elseif(member.typecode.isType_f)$
$member.typecode.cTypename$ $member.name$$member.typecode.cTypeDimensions$;
$elseif(member.typecode.isType_c)$
$member.typecode.cTypename$_cdr $member.name$;
$else$
$member.typecode.cTypename$ $member.name$;
$endif$
Expand Down

0 comments on commit f2f96ba

Please sign in to comment.