Skip to content

Commit

Permalink
remove 2 from configuration values until debugged
Browse files Browse the repository at this point in the history
  • Loading branch information
M0stafaRady committed Sep 30, 2024
1 parent ddf7abb commit 425c2af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion verify/uvm-python/spi_seq_lib/configure_spi_seq.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ async def body(self):
await self.send_req(
is_write=True,
reg="CFG",
data_condition=lambda data: data in [0b00, 0b01, 0b10, 0b11],
# data_condition=lambda data: data in [0b00, 0b01, 0b10, 0b11],
data_condition=lambda data: data in [0b00, 0b01, 0b11],
)
rsp = []
await self.get_response(rsp) # wait until writing is done
Expand Down

0 comments on commit 425c2af

Please sign in to comment.