Skip to content

Commit

Permalink
change defaults for jtag gpios
Browse files Browse the repository at this point in the history
  • Loading branch information
M0stafaRady committed Mar 13, 2024
1 parent 3070559 commit acfa777
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions verilog/rtl/caravel_core.v
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@ module caravel_core (
);

gpio_defaults_block #(
.GPIO_CONFIG_INIT(`USER_CONFIG_GPIO_27_INIT)
.GPIO_CONFIG_INIT(`GPIO_MODE_MGMT_STD_OUTPUT)
) gpio_defaults_block_27 (
`ifdef USE_POWER_PINS
.VPWR(vccd),
Expand All @@ -996,7 +996,7 @@ module caravel_core (
);

gpio_defaults_block #(
.GPIO_CONFIG_INIT(`USER_CONFIG_GPIO_28_INIT)
.GPIO_CONFIG_INIT(`GPIO_MODE_MGMT_STD_INPUT_PULLDOWN)
) gpio_defaults_block_28 (
`ifdef USE_POWER_PINS
.VPWR(vccd),
Expand All @@ -1006,7 +1006,7 @@ module caravel_core (
);

gpio_defaults_block #(
.GPIO_CONFIG_INIT(`USER_CONFIG_GPIO_29_INIT)
.GPIO_CONFIG_INIT(`GPIO_MODE_MGMT_STD_INPUT_PULLDOWN)
) gpio_defaults_block_29 (
`ifdef USE_POWER_PINS
.VPWR(vccd),
Expand All @@ -1016,7 +1016,7 @@ module caravel_core (
);

gpio_defaults_block #(
.GPIO_CONFIG_INIT(`USER_CONFIG_GPIO_30_INIT)
.GPIO_CONFIG_INIT(`GPIO_MODE_MGMT_STD_INPUT_PULLDOWN)
) gpio_defaults_block_30 (
`ifdef USE_POWER_PINS
.VPWR(vccd),
Expand All @@ -1026,7 +1026,7 @@ module caravel_core (
);

gpio_defaults_block #(
.GPIO_CONFIG_INIT(`USER_CONFIG_GPIO_31_INIT)
.GPIO_CONFIG_INIT(`GPIO_MODE_MGMT_STD_INPUT_PULLDOWN)
) gpio_defaults_block_31 (
`ifdef USE_POWER_PINS
.VPWR(vccd),
Expand Down

0 comments on commit acfa777

Please sign in to comment.