Skip to content

Commit

Permalink
change power ports direction to inout
Browse files Browse the repository at this point in the history
  • Loading branch information
NouranAbdelaziz committed Jul 8, 2024
1 parent 9759aef commit 0e84466
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion EF_TMR32.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ A 32-bit timer and PWM generator with the following features:
license: APACHE 2.0
author: Mohamed Shalan
email: [email protected]
version: v1.0.6
version: v1.0.7
date: 08-07-2024
category: digital
tags:
Expand Down
4 changes: 2 additions & 2 deletions hdl/rtl/bus_wrappers/EF_TMR32_APB.pp.v
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ module EF_TMR32_APB #(
PRW = 16
) (
`ifdef USE_POWER_PINS
input wire VPWR,
input wire VGND,
inout VPWR,
inout VGND,
`endif
input wire PCLK,
input wire PRESETn,
Expand Down
4 changes: 2 additions & 2 deletions hdl/rtl/bus_wrappers/EF_TMR32_APB.v
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ module EF_TMR32_APB #(
PRW = 16
) (
`ifdef USE_POWER_PINS
input wire VPWR,
input wire VGND,
inout VPWR,
inout VGND,
`endif
`APB_SLAVE_PORTS,
output wire [1-1:0] pwm0,
Expand Down

0 comments on commit 0e84466

Please sign in to comment.