User Tools


Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
vivado_features [2020/05/21 10:50]
nelson [2. Wedged or Frozen Simulation]
vivado_features [2020/05/28 14:35] (current)
nelson [3.0 Redo Your Project]
Line 12: Line 12:
 Before implementing anything in this section remember that anytime you make a change to your verilog code the simulation needs to be rerun. ​ Your code describes your circuit and if you change it you change the circuit you are simulating. ​ Before implementing anything in this section remember that anytime you make a change to your verilog code the simulation needs to be rerun. ​ Your code describes your circuit and if you change it you change the circuit you are simulating. ​
  
-=== "Have you turned it off and on again?" ​==+=== 2.1 Have you turned it off and on again? ==
 It sounds cliche, but it often works. Sometimes relaunching the simulation isn't sufficient and the old simulation needs to be closed by exiting out of the simulator completely. ​ To do this, what we mean is this: It sounds cliche, but it often works. Sometimes relaunching the simulation isn't sufficient and the old simulation needs to be closed by exiting out of the simulator completely. ​ To do this, what we mean is this:
  
Line 22: Line 22:
 Or, you may need to completely exit Vivado and restart it. Or, you may need to completely exit Vivado and restart it.
  
-=== Are Multiple Copies of Vivado Running?​== +=== 2.2 Are Multiple Copies of Vivado Running?​== 
-This is a common problem. ​ Make sure there is only one copy of Vivado running. ​ Sometimes the GUI will be gone but there is a Vivado process running. ​ You can run "Task Manager"​ in windows ​and look for a Vivado process if nothing else works. ​ If you find any Vivado processes running, kill them.  If you don't have permissions to kill them (they are left from some other user - should never happen), power cycle the machine.+This is a common problem. ​ Make sure there is only one copy of Vivado running. ​ Sometimes the GUI will be gone but there is a Vivado process running. ​ You can run "Task Manager"​ in Windows ​and look for a Vivado process if nothing else works. ​ If you find any Vivado processes running, kill them.  If you don't have permissions to kill them (they are left from some other user - should never happen), power cycle your entire ​machine.
  
-=== Set Force Recompile to True==+=== 2.3 Set Force Recompile to True==
 //Note: This should have already been done if you followed all of the instructions in the [[tutorials:​vivado_project_setup]] tutorial.// //Note: This should have already been done if you followed all of the instructions in the [[tutorials:​vivado_project_setup]] tutorial.//
  
Line 36: Line 36:
   - Exit out of your simulation if you haven'​t already and reopen it.  If this doesn'​t work you may need to restart Vivado after making the change.   - Exit out of your simulation if you haven'​t already and reopen it.  If this doesn'​t work you may need to restart Vivado after making the change.
  
-=== Clearing the Cache == +=== 2.4 Clearing the Cache == 
-This entails deleting everything in your project EXCEPT the project file (.xpr extension), your design sources (the .sv files), and your TCL files. ​ This is DANGEROUS in that every semester a few students mistakenly delete their source files when they do this.  Before doing so, make a copy of them somewhere safe (emailing them to yourself is a good option).+This entails deleting everything in your project EXCEPT the project file (.xpr extension), your design sources (the .sv files), and your TCL files.  ​ 
 + 
 +This is DANGEROUS in that every semester a few students mistakenly delete ​all their source files when they do this.  Before doing so, make a copy of them somewhere safe (emailing them to yourself is a good option).
  
   - Exit out of Vivado.   - Exit out of Vivado.
-  - Open your file explorer and navigate to your project (It should be in your J-Drive). +  - Open your file explorer and navigate to your project (if you are running LabConnect it should be in your J-Drive, otherwise it will just be wherever you created the project). 
-  - There will be several files including a .xpr file, which is your actual project, your .tcl files, and a .srcs file, which has all of your source code.  **All 3 of these are very important. ​ Do NOT delete them!** ​The rest of them however, are created every time you open your project in Vivado and run a simulation or run other analysis tools. ​Deleting these files/​directories will get rid of anything in your simulator that might be preventing new simulations from being started or running correctly.+  - There will be several files including a .xpr file, which is your actual project, your .tcl files, and a .srcs file, which has all of your source code.  **All 3 of these are very important. ​ Do NOT delete them!** ​There are directories, ​however, ​that are created every time you open your project in Vivado and run a simulation or run other analysis tools. ​You may delete "​proj.sim"​ to get rid of anything in your simulator that might be preventing new simulations from being started or running correctly.
   - Now reopen Vivado and open your project, or open your .xpr file and it will automatically be opened in Vivado.   - Now reopen Vivado and open your project, or open your .xpr file and it will automatically be opened in Vivado.
  
-Sometimes you will get errors about not being able to delete some files - this can be a sign that multiple Vivado processes are running. ​ See below to fix.+Sometimes you will get errors about not being able to delete some files - this can be a sign that multiple Vivado processes are running. ​ See above to fix. 
 + 
 +===== 3. Redo Your Project ===== 
 +We have seen cases where the only thing that fixes it is to create a new project with the same files. ​ Here are the steps to do so:
  
 +  - Make a new directory.
 +  - Locate and copy all .sv, .xdc, and .tcl files from the existing project over to the new directory.  ​
 +    * When you let Vivado create your .sv files, it usually buries them deep in a directory with a .srcs on the end of the name.  Find them all and copy them over.
 +  - Start Vivado and create a new project in the new location.
 +  - Add all the source files.
 +  - Add the constraint file.
  
 +At this point you have a clean project with just the files you need.