master的 req延迟一拍,使得0x20寄存器可以修改的同时发起请求

This commit is contained in:
Ruige Lee
2025-05-27 10:30:48 +08:00
parent 65ea42d5dd
commit 6b74a9eed5
2 changed files with 4 additions and 2 deletions

View File

@@ -716,7 +716,9 @@ trait SlaveParserProbe{ this: SlaveParserBase =>
when( downRecParser.io.frameReq.fire & downRecParser.io.frameReq.bits.frameStyle === FRAME_STYLE_PROBE ){ //下行来了一个嗅探包
isReadyToProbe := true.B
assert( downSendGen.io.stateCurr === STATE_IDLE )
when( downSendGen.io.stateCurr =/= STATE_IDLE ){
printf("Error! downSendGen is busy while a Probe-Frame arrival!\n")
}
} .elsewhen( upRecParser.io.frameReq.fire & upRecParser.io.frameReq.bits.frameStyle === FRAME_STYLE_PROBE ){ //上行来了一个嗅探包
isReadyToProbe := false.B
} .elsewhen( isWatchDogOverflow ){