1. 24 10月, 2022 1 次提交
  2. 20 4月, 2022 1 次提交
  3. 08 3月, 2021 1 次提交
  4. 17 12月, 2019 1 次提交
  5. 13 12月, 2019 1 次提交
  6. 21 2月, 2019 1 次提交
  7. 22 1月, 2019 1 次提交
  8. 29 10月, 2018 1 次提交
  9. 06 9月, 2018 1 次提交
  10. 23 8月, 2018 1 次提交
  11. 26 12月, 2014 1 次提交
    • G
      ymodem: fix a race-condition in handshaking · d479960a
      Grissiom 提交于
      As we are sending C continuously, there is a chance that the
      sender(remote) receive an C after sending the first handshake package.
      So the sender will interpret it as NAK and re-send the package. So we
      just ignore it and proceed.
      d479960a
  12. 13 9月, 2014 2 次提交
  13. 14 7月, 2014 1 次提交
  14. 09 10月, 2013 1 次提交
    • G
      components/utilities: add ymodem · 56741987
      Grissiom 提交于
      Real-YModem implemented a flexible YModem support. It use callback-based
      structure to let the user application to deal with the data. It contains
      3 examples:
      
          1. echo.c: write the data recieved on YModem to an other device
          2. null.c: discard the YModem data
          3. tofile.c: write the data to the file system
      
      Currently, it does not support batch file transmission.
      56741987