We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thinking of something like this for organizing the libraries.
nexys-a7-fpga-libs/ │ ├── src/ │ ├── protocols/ │ │ ├── uart/ │ │ ├── spi/ │ │ ├── i2c/ │ │ └── ... (other protocols) │ ├── displays/ │ │ ├── vga/ │ │ ├── hdmi/ │ │ ├── displayport/ │ │ ├── seven_segment/ │ │ └── ... (other display modules) │ ├── audio/ │ │ ├── microphone/ │ │ ├── filtering/ │ │ └── ... (other audio modules) │ ├── utilities/ │ │ ├── pulse_generator/ │ │ ├── synchronizer/ │ │ └── ... (other utility modules) │ └── ... (other categorical files) │ ├── test/ │ ├── protocols/ │ │ ├── uart/ │ │ ├── spi/ │ │ ├── i2c/ │ │ └── ... (other protocol tests) │ ├── displays/ │ │ ├── vga/ │ │ ├── hdmi/ │ │ ├── displayport/ │ │ ├── seven_segment/ │ │ └── ... (other display tests) │ ├── audio/ │ │ ├── microphone/ │ │ ├── filtering/ │ │ └── ... (other audio tests) │ ├── utilities/ │ │ ├── pulse_generator/ │ │ ├── synchronizer/ │ │ └── ... (other utility tests) │ └── ... (other categorical test files) │ ├── docs/ │ ├── protocols/ │ │ ├── uart/ │ │ │ ├── README.md │ │ │ └── ... (UART documentation) │ │ ├── spi/ │ │ └── ... (other protocol docs) │ ├── displays/ │ │ ├── ... (display documentation) │ ├── audio/ │ │ ├── ... (audio documentation) │ ├── utilities/ │ │ ├── ... (utility documentation) │ └── ... (other documentation) │ ├── scripts/ │ └── ... (build, synthesis, simulation scripts) │ ├── examples/ │ └── ... (example projects using multiple modules) │ └── README.md
The text was updated successfully, but these errors were encountered:
CCarrMcMahon
No branches or pull requests
Thinking of something like this for organizing the libraries.
The text was updated successfully, but these errors were encountered: