You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.dbf files are used to group database enums together. For example, IOB has:
38_98 39_97 39_99,LIOB33.IOB_Y1.PULLTYPE.PULLDOWN
Which says that bits 38_98 39_97 39_99 form an enum group. Additionally, the tag LIOB33.IOB_Y1.PULLTYPE.PULLDOWN, a tag implicitly part of the group with no bits set, should also be included.
I recently added utility function add_site_group_zero() to help streamline creating tags for these. This could be used to create some metadata that could be processed on the resulting .rdb (pre-dbfixup .db) to figure out where these groups are, which is essentially what I do.
The text was updated successfully, but these errors were encountered:
.dbf files are used to group database enums together. For example, IOB has:
Which says that bits 38_98 39_97 39_99 form an enum group. Additionally, the tag LIOB33.IOB_Y1.PULLTYPE.PULLDOWN, a tag implicitly part of the group with no bits set, should also be included.
Noting the .rdb has:
Which becomes this .db:
I recently added utility function add_site_group_zero() to help streamline creating tags for these. This could be used to create some metadata that could be processed on the resulting .rdb (pre-dbfixup .db) to figure out where these groups are, which is essentially what I do.
The text was updated successfully, but these errors were encountered: