Skip to content

Commit

Permalink
fix: PR #67 - $(IN)DBus-Sel disable moved to the end of the selection.
Browse files Browse the repository at this point in the history
The idea behind is to avoid shifting of all Bit-s by 1 (so according to
the request).
  • Loading branch information
jerzyjamroz committed Sep 19, 2023
1 parent bb1e97d commit 4f09c8c
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions evrApp/Db/evrin.db
Original file line number Diff line number Diff line change
Expand Up @@ -120,24 +120,25 @@ record(mbbo, "$(IN)DBus-Sel") {
field( DTYP, "Obj Prop uint16")
field( OUT , "@OBJ=$(OBJ), PROP=DBus Mask")
field( PINI, "YES")
field( ZRST, "Disabled")
field( ONST, "Bit 0")
field( TWST, "Bit 1")
field( THST, "Bit 2")
field( FRST, "Bit 3")
field( FVST, "Bit 4")
field( SXST, "Bit 5")
field( SVST, "Bit 6")
field( EIST, "Bit 7")
field( ZRVL, "0x0")
field( ONVL, "0x1")
field( TWVL, "0x2")
field( THVL, "0x4")
field( FRVL, "0x8")
field( FVVL, "0x10")
field( SXVL, "0x20")
field( SVVL, "0x40")
field( EIVL, "0x80")
field( VAL, "8") # Default value: Disable
field( ZRST, "Bit 0")
field( ONST, "Bit 1")
field( TWST, "Bit 2")
field( THST, "Bit 3")
field( FRST, "Bit 4")
field( FVST, "Bit 5")
field( SXST, "Bit 6")
field( SVST, "Bit 7")
field( EIST, "Disabled")
field( ZRVL, "0x1")
field( ONVL, "0x2")
field( TWVL, "0x4")
field( THVL, "0x8")
field( FRVL, "0x10")
field( FVVL, "0x20")
field( SXVL, "0x40")
field( SVVL, "0x80")
field( EIVL, "0x0")
field( NISV, "INVALID")
field( TESV, "INVALID")
field( ELSV, "INVALID")
Expand Down

0 comments on commit 4f09c8c

Please sign in to comment.