Add Rocket and Boom to CoreManager

This commit is contained in:
Zitao Fang
2020-05-31 10:51:11 -07:00
parent 71bac7b7c9
commit 3fcfc133b1
5 changed files with 12 additions and 111 deletions

View File

@@ -148,7 +148,9 @@ class WithControlCore extends Config((site, here, up) => {
})
class WithTraceIO extends Config((site, here, up) =>
GenericConfig(Map("trace" -> true)) (site, here, up) orElse {
case BoomTilesKey => up(BoomTilesKey) map (tile => tile.copy(trace = true))
GenericConfig(Map("trace" -> true), {
case RocketTilesKey => false
case _ => true
}) (site, here, up) orElse {
case TracePortKey => Some(TracePortParams())
})