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 ;