a_e115fb: Add taobao prefix (Similar to what we do on aliexpress's boards from unknown vendors).
This commit is contained in:
parent
4e0e381f47
commit
0ae1417eb5
|
@ -9,7 +9,7 @@
|
||||||
from migen import *
|
from migen import *
|
||||||
from migen.genlib.resetsync import AsyncResetSynchronizer
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
||||||
|
|
||||||
from litex_boards.platforms import a_e115fb
|
from litex_boards.platforms import taobao_a_e115fb
|
||||||
|
|
||||||
from litex.soc.cores.clock import CycloneIVPLL
|
from litex.soc.cores.clock import CycloneIVPLL
|
||||||
from litex.soc.cores.led import LedChaser
|
from litex.soc.cores.led import LedChaser
|
||||||
|
@ -40,7 +40,7 @@ class _CRG(Module):
|
||||||
class BaseSoC(SoCCore):
|
class BaseSoC(SoCCore):
|
||||||
def __init__(self, sys_clk_freq=int(50e6), with_led_chaser=True,
|
def __init__(self, sys_clk_freq=int(50e6), with_led_chaser=True,
|
||||||
**kwargs):
|
**kwargs):
|
||||||
platform = a_e115fb.Platform()
|
platform = taobao_a_e115fb.Platform()
|
||||||
|
|
||||||
# CRG --------------------------------------------------------------------------------------
|
# CRG --------------------------------------------------------------------------------------
|
||||||
self.submodules.crg = _CRG(platform, sys_clk_freq)
|
self.submodules.crg = _CRG(platform, sys_clk_freq)
|
Loading…
Reference in New Issue