-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test signal generator wiring and firmware
- Loading branch information
c0pperdragon
committed
Apr 15, 2020
1 parent
2613a72
commit 53ec488
Showing
13 changed files
with
1,238 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directories | ||
node_modules | ||
jspm_packages | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
# ========================= | ||
# Operating System Files | ||
# ========================= | ||
|
||
# OSX | ||
# ========================= | ||
|
||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
|
||
# Thumbnails | ||
._* | ||
|
||
# Files that might appear in the root of a volume | ||
.DocumentRevisions-V100 | ||
.fseventsd | ||
.Spotlight-V100 | ||
.TemporaryItems | ||
.Trashes | ||
.VolumeIcon.icns | ||
|
||
# Directories potentially created on remote AFP share | ||
.AppleDB | ||
.AppleDesktop | ||
Network Trash Folder | ||
Temporary Items | ||
.apdisk | ||
|
||
# Windows | ||
# ========================= | ||
|
||
# Windows image file caches | ||
Thumbs.db | ||
ehthumbs.db | ||
|
||
# Folder config file | ||
Desktop.ini | ||
|
||
# Recycle Bin used on file shares | ||
$RECYCLE.BIN/ | ||
|
||
# Windows Installer files | ||
*.cab | ||
*.msi | ||
*.msm | ||
*.msp | ||
|
||
# Windows shortcuts | ||
*.lnk | ||
|
||
# Quartus II intermediate files | ||
*/db | ||
*/*/db | ||
*/.qsys_edit | ||
*/devkits | ||
*/greybox_tmp | ||
*/*/incremental_db | ||
*/incremental_db | ||
*/*/output_files | ||
*/output_files | ||
*/*/output_file.map | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--Copyright (C) 2018 Intel Corporation. All rights reserved. | ||
--Your use of Intel Corporation's design tools, logic functions | ||
--and other software and tools, and its AMPP partner logic | ||
--functions, and any output files from any of the foregoing | ||
--(including device programming or simulation files), and any | ||
--associated documentation or information are expressly subject | ||
--to the terms and conditions of the Intel Program License | ||
--Subscription Agreement, the Intel Quartus Prime License Agreement, | ||
--the Intel FPGA IP License Agreement, or other applicable license | ||
--agreement, including, without limitation, that your use is for | ||
--the sole purpose of programming logic devices manufactured by | ||
--Intel and sold by Intel or its authorized distributors. Please | ||
--refer to the applicable agreement for further details. | ||
|
||
|
||
component PLL_7_882 | ||
PORT | ||
( | ||
inclk0 : IN STD_LOGIC := '0'; | ||
c0 : OUT STD_LOGIC | ||
); | ||
end component; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!DOCTYPE pinplan> | ||
<pinplan intended_family="MAX 10" variation_name="PLL_7_882" megafunction_name="ALTPLL" specifies="all_ports"> | ||
<global> | ||
<pin name="inclk0" direction="input" scope="external" source="clock" /> | ||
<pin name="c0" direction="output" scope="external" source="clock" /> | ||
|
||
</global> | ||
</pinplan> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
set_global_assignment -name IP_TOOL_NAME "ALTPLL" | ||
set_global_assignment -name IP_TOOL_VERSION "18.1" | ||
set_global_assignment -name IP_GENERATED_DEVICE_FAMILY "{MAX 10}" | ||
set_global_assignment -name VHDL_FILE [file join $::quartus(qip_path) "PLL_7_882.vhd"] | ||
set_global_assignment -name MISC_FILE [file join $::quartus(qip_path) "PLL_7_882.cmp"] | ||
set_global_assignment -name MISC_FILE [file join $::quartus(qip_path) "PLL_7_882.ppf"] |
Oops, something went wrong.