<tnt>
This is what I defined. (previously I had them all in one resource, but I split them now since that seemed easier).
<tnt>
Really ATM all I needs are the ctl signals and they're outputs, but I'd like to be able to tristate them. (No need for input) and AFAICT I need GPIOTristate for that.
<tnt>
So I just tried : setattr(self.submodules, f'adrv{i:d}_ctl', GPIOTristate(platform.request("adrv9009_ctl", i)))
<tnt>
(setattr because it's in a loop).
<tnt>
(If I use the same syntax and GPIOOut, that works, so it's a bit counter-intuitive that just replacing 'Out' with 'Tristate' dosn't work)
<bjonnh>
I may just order that one, I'm still waiting on my ULX3S
<bjonnh>
Is it complicated to deal with that ARM on the Zynq-7000?
<bjonnh>
lets say I just want to do FPGA for now, but may be happy to have some Arm later
<tnt>
with jtag you can configure the fpga and completely ignore the ARM part.
<bjonnh>
neat
<tnt>
(that's what I'm doing now on a UltraScale+ Zynq :)
<bjonnh>
I'll need to find a Jtag cable, they sell them for the same price as the board :D
<trabucayre>
cable is onboard
<trabucayre>
you have just fo find an usb cable :)
<bjonnh>
<3
<trabucayre>
JTAG interface is onboard
<trabucayre>
FT2232 (one interface for JTAG, second for UART)
<bjonnh>
"Briefly describe the reasons you chose Digilent for your purchase today." "Because your board works with Opensource toolchains #litex"
<bjonnh>
I'm sure they will be happy about that
<trabucayre>
you can you use linux (on PS side) to communicate with the LiteX gateware into PL too
Martoni42 has quit [Ping timeout: 268 seconds]
<bjonnh>
My experience with FPGAs stopped at making leds blink on a Fomu, so I'll go slowly :D
<trabucayre>
try to communicate with LedChaser :)
zjason` has quit [Remote host closed the connection]
zjason` has joined #litex
frogeyes has joined #litex
rlittl01 has quit [Ping timeout: 256 seconds]
futarisIRCcloud has quit [Quit: Connection closed for inactivity]
<jeffdi>
(venv) jeffs-mbp:verilog jeffdi$ make VexRiscv_MinDebug_Cache.v
jeffdi has quit [Excess Flood]
<jeffdi>
Hello - I’m trying to build a version of the VexRiscv min+debug core with a small amount of cache (e.g. 64 bytes). I’ve installed scala and sbt on a Mac via Brew, but getting errors running the make targets in pythondata-cpu-vexriscv. any suggestions?
<jeffdi>
WARNING: A terminally deprecated method in java.lang.System has been called
<zyp>
that warning looks like it can be ignored, which errors are you getting?
<mithro>
I ordered 20 of the Digilent Arty A7 35T boards :-)
<mithro>
jeffdi: Can you provide a link to the complete output?
<bjonnh>
mithro: are you stockpiling ?
<mithro>
tcal: Has a lot of experience with sbt and LiteX thanks to his work on the CFU playgournd (http://cfu-playground.rtfd.io/)
<mithro>
bjonnh: I send them out to people who contribute to my projects
<tcal>
jeffdi: yes, especially the first time you run the build, there are lots of warning that can be ignored. I don't recall seeing that one...I recall ones about duplicate main methods.
<tcal>
jeffdi: is the ./ext/VexRiscv/ submodule loaded? What do you see in that directory?
<jeffdi>
tcal: just posted the output from find ext -print
<tcal>
In the verilog/ directory with the `Makefile` that you're using, there should be an ext/ directory, and VexRiscv inside that, unless things are completely different with mac development.
futarisIRCcloud has joined #litex
<jeffdi>
tcal: yes, there is
<tcal>
jeffdi: FYI if we can't get to the bottom of this before I need to run, try asking at https://gitter.im/SpinalHDL/VexRiscv (you can log in with your github credentials) . @Dolu1990 is the creator of VexRiscv.
<tcal>
Oh, that might be your issue. Run `git submodule`. Also, `cd` into `ext/VexRiscv` and run `git remote -v`. If the submodule is loaded correctly, for the latter command, you'll see:
<tcal>
jeffdi: If the submodule is not loaded correctly, then first you have to recursively delete `target/` in `ext/VexRiscv`, and then run `git submodule update --init --recursive` while sitting in the `verilog/` directory above.
<jeffdi>
tcal: thank you!! i think that did it! its running now...