Skip to content
Merged
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
8 changes: 4 additions & 4 deletions docs/PulseGenerator.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -62,7 +62,7 @@ PROGRAM MainProgram
END_VAR

clock.Execute();
clk := clock.Clock();
clk := clock.Q();

END_PROGRAM
```
Loading