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
8 changes: 4 additions & 4 deletions apax-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "@simatic-ax/generators",
"version": "0.0.0-placeholder",
"dependencies": {
"@simatic-ax/io": "^10.0.1",
"@simatic-ax/io": "^11.0.0",
"@ax/system-timer": "^10.2.7"
},
"devDependencies": {
Expand Down Expand Up @@ -778,9 +778,9 @@
},
"@simatic-ax/io": {
"name": "@simatic-ax/io",
"version": "10.0.1",
"integrity": "sha512-by9/1chsUqPIjPGKt9xk2WqJe1WhzBlerIqoxY4R+NwcgKE3QXxi1SiqXLRYCrB1TE427j992VGJukZIH9WS3Q==",
"resolved": "https://npm.pkg.github.com/download/@simatic-ax/io/10.0.1/9c4b3c262176c6374949c37dd764341aa196adf0",
"version": "11.0.0",
"integrity": "sha512-S4yuFXXIEfv9QIbFS6JWDBCA+VMkZ/v2WorLDAaWzCtjL6pNDqvZClqkJ7ssXIA3Tntbe0PWPZOgChHJObyTYw==",
"resolved": "https://npm.pkg.github.com/download/@simatic-ax/io/11.0.0/a6376e04d2d39c555f1a546f0b513aaacf924f3d",
"dependencies": {
"@ax/system-math": "^10.2.7",
"@ax/system-timer": "^10.2.7"
Expand Down
2 changes: 1 addition & 1 deletion apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ devDependencies:
"@simatic-ax/snippetscollection": ^1.1.0
"@ax/axunit-mocking": ^9.0.0
dependencies:
"@simatic-ax/io": ^10.0.1
"@simatic-ax/io": ^11.0.0
"@ax/system-timer": ^10.2.7
# Files which 'apax pack' will include
files:
Expand Down
16 changes: 11 additions & 5 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
# Changelog

## 2022-06-21
## [Unreleased]

Version 0.0.1
### Changed

- First Version
- Rename `ItfBinSignal` to `IBinSignal` to align with @simatic-ax/io v11 breaking change

## 2022-06-22
## [0.0.3] - 2022-06-22

Version 0.0.3
### Added

- Add docu link to PulseGenerator

## [0.0.1] - 2022-06-21

### Added

- First Version
2 changes: 1 addition & 1 deletion src/PulseGenerator.st
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ NAMESPACE Simatic.Ax.Generators

{axcode:docs-v0:@simatic-ax/generators:PulseGenerator.md}
CLASS PulseGenerator
IMPLEMENTS ItfBinSignal
IMPLEMENTS IBinSignal
VAR PUBLIC
PulseTime : LTIME := T#1s; // Pulse duration
PauseTime : LTIME := T#1s; // Pause duration ( PulseTime + PauseTime = Period )
Expand Down
12 changes: 0 additions & 12 deletions test/OnDelayMockWithTwoTimers.st
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,6 @@ NAMESPACE Simatic.Ax.Mocks
elapsedTime: LTIME;
END_VAR

VAR PRIVATE
risingEdge: BOOL;
previousSignal: BOOL;
startTime: LTIME;
currentDuration: LTIME;
END_VAR

VAR INTERNAL
reset: BOOL := FALSE;
preset: BOOL := FALSE;
presetDuration: LTIME := LT#0ns;
END_VAR
VAR_TEMP
state : REF_TO OnDelayMockState;
END_VAR
Expand Down
Loading