debug panels for COM

This commit is contained in:
minjaesong
2023-03-25 12:35:45 +09:00
parent f1ceac0451
commit 8533a1e085
3 changed files with 40 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ import java.util.concurrent.atomic.AtomicInteger
abstract class BlockTransferInterface(val isMaster: Boolean, val isSlave: Boolean) {
protected var recipient: BlockTransferInterface? = null
var recipient: BlockTransferInterface? = null; protected set
val ready = AtomicBoolean(true)
val busy = AtomicBoolean(false)