Skip to content

Commit

Permalink
* need improve predef
Browse files Browse the repository at this point in the history
   export
  • Loading branch information
festo-i40 committed Jan 13, 2024
1 parent c7ae335 commit 27a674c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/AasxPluginAssetInterfaceDesc/AidInterfaceStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public class AidInterfaceStatus
public bool CheckIfTimeForCyclicUpdate(DateTime now)
{
if (UpdateFreqMs >= 10.0
&& (_lastCyclicUpdate - now).TotalMilliseconds < UpdateFreqMs)
&& (now - _lastCyclicUpdate).TotalMilliseconds < UpdateFreqMs)
return false;
_lastCyclicUpdate = now;
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ private static void ExportCSharpMapperOnlyClasses(
snippets.WriteLine($"{indent}public class CD_{cdff}");
snippets.WriteLine($"{indent}{{");

if (cdff == "Htv_headers")
if (cdff == "MappingSourceSinkRelations")
{
;
}
Expand Down

0 comments on commit 27a674c

Please sign in to comment.