From 2b5f06bafb30d4c9b7526a2842ee21eeee9a9617 Mon Sep 17 00:00:00 2001 From: MiVoSie <163004761+MiVoSie@users.noreply.github.com> Date: Wed, 4 Jun 2025 14:32:28 +0200 Subject: [PATCH] Update PulseGenerator.md Method names are new (Clock()->Q(), ClockRis()->QRis(), ClockFal()->QFal) --- docs/PulseGenerator.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/PulseGenerator.md b/docs/PulseGenerator.md index d21337e..cb1342d 100644 --- a/docs/PulseGenerator.md +++ b/docs/PulseGenerator.md @@ -34,9 +34,9 @@ Example configuration in a VAR section ||| |-|-| | Execute() | Execute the clock signal. Must called cycically | -| Clock() : BOOL | Returns the clock signal | -| ClockRis() : BOOL | Returns the rising edge of the clock signal | -| ClockFal() : BOOL | Returns the falling edge of the clock signal | +| Q() : BOOL | Returns the clock signal | +| QRis() : BOOL | Returns the rising edge of the clock signal | +| QFal() : BOOL | Returns the falling edge of the clock signal | ## Example @@ -62,7 +62,7 @@ PROGRAM MainProgram END_VAR clock.Execute(); - clk := clock.Clock(); + clk := clock.Q(); END_PROGRAM ```