Skip to content

Commit

Permalink
py/tt: Enable power gate by default if not specified
Browse files Browse the repository at this point in the history
Since we want to power gate everything ...

Signed-off-by: Sylvain Munaut <[email protected]>
  • Loading branch information
smunaut committed Mar 13, 2024
1 parent f96c629 commit 44b469a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/tt.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def __init__(self, placer, cfg_data):
self.pos_y = cfg_data.get('y')
self.width = cfg_data.get('width', 1)
self.height = cfg_data.get('height', 1)
self.pg_vdd = cfg_data.get('pg_vdd', False)
self.pg_vdd = cfg_data.get('pg_vdd', True)
self.analog = cfg_data.get('analog', False)

def as_dict(self):
Expand Down

0 comments on commit 44b469a

Please sign in to comment.