Skip to content

Commit

Permalink
Update mapping for reset button in new PCB
Browse files Browse the repository at this point in the history
The reset button has moved from R11 to T5 in the PCB design. I've left
the old pin in the commit for future reference
  • Loading branch information
marnovandermaas authored and HU90m committed Feb 27, 2024
1 parent c70445f commit 8884a5a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion data/pins_sonata.xdc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ create_clock -period 40.000 -name mainClk -waveform {0.000 20.000} [get_ports ma
set_property -dict { PACKAGE_PIN P15 IOSTANDARD LVCMOS33 } [get_ports mainClk];

## Reset
set_property -dict { PACKAGE_PIN R11 IOSTANDARD LVCMOS33 } [get_ports {nrst}];
## PCB revision 0.3 and above
set_property -dict { PACKAGE_PIN T5 IOSTANDARD LVCMOS33 } [get_ports {nrst}];
## PCB revision 0.2 and below
#set_property -dict { PACKAGE_PIN R11 IOSTANDARD LVCMOS33 } [get_ports {nrst}];

## General purpose LEDs
set_property -dict { PACKAGE_PIN B13 IOSTANDARD LVCMOS33 } [get_ports {usrLed[0]}];
Expand Down

0 comments on commit 8884a5a

Please sign in to comment.