Mirror of CollapseOS
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
498B

  1. ( -- )
  2. ( The opposite of sdcWaitResp: we wait until response is 0xff.
  3. After a successful read or write operation, the card will be
  4. busy for a while. We need to give it time before interacting
  5. with it again. Technically, we could continue processing on
  6. our side while the card it busy, and maybe we will one day,
  7. but at the moment, I'm having random write errors if I don't
  8. do this right after a write, so I prefer to stay cautious
  9. for now. )
  10. : _ready BEGIN _idle 0xff = UNTIL ;