ed8a52d1db
These calls were all moved into `main.c`, however this call was not removed from litex. As a result, litex was calling `board_init()` twice. This is currently not a problem, as `fomu` is able to be initialized twice without issue, however future boards may have issue with this. This fixes #2991. Signed-off-by: Sean Cross <sean@xobs.io> |
||
---|---|---|
.. | ||
boards | ||
common-hal | ||
hw | ||
supervisor | ||
.gitignore | ||
background.c | ||
background.h | ||
crt0-vexriscv.S | ||
fatfs_port.c | ||
irq.h | ||
Makefile | ||
mpconfigport.h | ||
mpconfigport.mk | ||
mphalport.c | ||
mphalport.h | ||
qstrdefsport.h | ||
README.rst |
LiteX (FPGA) ============ `LiteX <https://github.com/enjoy-digital/litex>`_ is a Python-based System on a Chip (SoC) designer for open source supported Field Programmable Gate Array (FPGA) chips. This means that the CPU core(s) and peripherals are not defined by the physical chip. Instead, they are loaded as separate "gateware". Once this gateware is loaded, CircuitPython can be loaded on top of it to work as expected. Installation ------------- You'll need ``dfu-util`` to install CircuitPython on the Fomu. Make sure the foboot bootloader is updated. Instructions are here: https://github.com/im-tomu/fomu-workshop/blob/master/docs/bootloader.rst Once you've updated the bootloader, you should know how to use ``dfu-util``. It's pretty easy! To install CircuitPython do: .. code-block:: shell dfu-util -D adafruit-circuitpython-fomu-en_US-<version>.dfu It will install and then restart. CIRCUITPY should appear as it usually does and work the same.