Mirror of CollapseOS
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

11 行
492B

  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 ;