You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for the new port. First of all, what is the PLL error you are seeing? I didn't see anything when I ran it myself.
Anyway, the code looks good but FYI you can simplify your command-line to just fusesoc run --target=icefun servant since you have set the default_tool to icestorm already and nextpnr is the default pnr tool for this tool backend.
One change I would like to see is to use the new Flow API instead of the old Tool API since the Tool API will eventually be deprecated. In this case the change is very easy. Replace default_tool: icestorm with flow: icestorm to use the new API. Then you need to replace the tools section with a flow_options section that contains nextpnr_options: [--hx8k, --package, cb132 --freq, 16]. You can look at the tinyfpga_bx target if you are unsure about the syntax.
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I'm working to get a servant running on an iceFUN board.
The changes I have made here allow me to run the following command without errors to give code I can upload to my device.
fusesoc run --target=icefun --tool=icestorm servant --pnr=nextI have noticed that icestick and icebreaker also give similar errors relating to PLLs.
It would be nice to expand this so that a simple example (e.g. zephyr_phil) can be run on the board easily in one line as a demo.