Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/abstractions/ctrl/src/AxoLogger/IAxoLogger.st
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ NAMESPACE AXOpen.Logging
/// <summary>
/// _message is a string of maximum 80 characters that represents the log message
/// </summary>
_message : STRING[80];
_message : STRING[254];

/// <summary>
/// _level is an instance of eLogLevel that represents the level of the log
Expand All @@ -47,7 +47,7 @@ NAMESPACE AXOpen.Logging
/// <summary>
/// _message is a string of maximum 80 characters that represents the log message
/// </summary>
_message : STRING[80];
_message : STRING[254];

/// <summary>
/// _level is an instance of eLogLevel that represents the level of the log
Expand Down
4 changes: 2 additions & 2 deletions src/components.elements/ctrl/test/Mock.st
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ NAMESPACE AxoIO.Tests
/// <param name="_sender">The object that sends the log.</param>
METHOD PUBLIC Log
VAR_INPUT
_message : STRING[80];
_message : STRING[254];
_level : eLogLevel;
_sender : IAxoObject;
END_VAR
Expand All @@ -49,7 +49,7 @@ NAMESPACE AxoIO.Tests
/// <param name="_level">The severity level of the log.</param>
METHOD PUBLIC Log
VAR_INPUT
_message : STRING[80];
_message : STRING[254];
_level : eLogLevel;
END_VAR

Expand Down
2 changes: 2 additions & 0 deletions src/core/ctrl/src/AxoAlert/AxoAlert.st
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ NAMESPACE AXOpen.Core
RETURN;
END_IF;

SUPER.SetSuspendCyclicExecuteIsNotCalledCheck(TRUE);

SUPER.Run(inParent);

IF NOT THIS.IsInitialized THEN // dialog is not observed/monitored by server
Expand Down
2 changes: 1 addition & 1 deletion src/core/ctrl/src/AxoCoordination/AxoStep/AxoStep.st
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
NAMESPACE AXOpen.Core
{#ix-prop: public string Description}
{S7.extern=ReadWrite}
CLASS AxoStep EXTENDS AxoTask IMPLEMENTS IAxoStep
CLASS AxoStep EXTENDS AxoTaskLight IMPLEMENTS IAxoStep
VAR PUBLIC
{#ix-attr:[ReadOnly()]}
Order : ULINT;
Expand Down
5 changes: 2 additions & 3 deletions src/core/ctrl/src/AxoDialog/AxoDialog.st
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,8 @@ NAMESPACE AXOpen.Core
VAR_TEMP
callCounter : ULINT;
END_VAR

// SUPER.SuspendExecuteAnalisis();
SUPER.SetSuspendMultipleExecuteCallCheck(TRUE);

//SUPER.SetSuspendMultipleExecuteCallCheck(TRUE);
SUPER.SetSuspendCyclicExecuteIsNotCalledCheck(TRUE);

Show := THIS;
Expand Down
2 changes: 1 addition & 1 deletion src/core/ctrl/src/AxoLogger/AxoLogEntry.st
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ NAMESPACE AXOpen.Logging
/// <summary>
/// The message of the log entry. The maximum length of the message is 80 characters.
/// </summary>
Message : STRING[80];
Message : STRING[254];

/// <summary>
/// The severity level of the log entry.
Expand Down
4 changes: 2 additions & 2 deletions src/core/ctrl/src/AxoLogger/AxoLogger.st
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ NAMESPACE AXOpen.Logging
/// <param name="_sender">The object that sends the log.</param>
METHOD PUBLIC Log
VAR_INPUT
_message : STRING[80];
_message : STRING[254];
_level : eLogLevel;
_sender : IAxoObject;
END_VAR
Expand Down Expand Up @@ -62,7 +62,7 @@ NAMESPACE AXOpen.Logging
/// <param name="_level">The severity level of the log.</param>
METHOD PUBLIC Log
VAR_INPUT
_message : STRING[80];
_message : STRING[254];
_level : eLogLevel;
END_VAR

Expand Down
10 changes: 1 addition & 9 deletions src/core/ctrl/src/AxoRemoteTask/AxoRemoteTask.st
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,7 @@ NAMESPACE AXOpen.Core
HasRemoteException : BOOL;

IsBeingCalledCounter : INT;
// {#ix-set:MessageText = "<#Remote task is not initialized by remote partner.#>"}
// {#ix-set:Help = "<#Make sure the remote application that should handle this remote request is running and is available in the network.#>"}
// TaskNotInitialized : AXOpen.Messaging.Static.AxoMessenger;

// {#ix-set:MessageText = "<#During the execution or remote task an error occured.#> |[[1]RemoteExceptionDetails]|"}
// {#ix-set:Help = "<#Check detail of this remote task for more information about the problem.#>"}
// TaskHasRemoteException : AXOpen.Messaging.Static.AxoMessenger;



{#ix-set:AttributeName = "<#RemoteTaskMessenger#>"}
{#ix-set:PlcTextList = "[1]:'<#Remote task is not initialized by remote partner.#>':'<#Make sure the remote application that should handle this remote request is running and is available to the controller.#>'';
'[2]:'<#During the execution or remote task an error occured.#> |[[1]RemoteExceptionDetails]|':'<#Check detail of this remote task for more information about the problem.#>'"}
Expand Down
Loading