1. 04 3月, 2014 1 次提交
  2. 16 2月, 2014 1 次提交
  3. 30 12月, 2013 1 次提交
  4. 29 12月, 2013 1 次提交
  5. 25 10月, 2013 3 次提交
  6. 23 10月, 2013 1 次提交
  7. 24 9月, 2013 1 次提交
  8. 22 8月, 2013 2 次提交
  9. 20 8月, 2013 2 次提交
    • G
      dev/portal: implement portal device · 6e676e77
      Grissiom 提交于
      Portal is a device that connect devices. Currently, you can only connect
      pipes in portal. Pipes are unidirectional. But with portal, you can
      construct a bidirectional device with two pipes.
      6e676e77
    • G
      dev/pipe: make pipe a type of device · 7e68096a
      Grissiom 提交于
      Pipe have many differences with char device. The main difference is
      altough pipe have both read and write, it is unidirectional in nature.
      7e68096a
  10. 19 8月, 2013 6 次提交
  11. 25 7月, 2013 1 次提交
  12. 24 7月, 2013 2 次提交
  13. 29 6月, 2013 1 次提交
  14. 28 6月, 2013 2 次提交
  15. 23 6月, 2013 1 次提交
  16. 15 6月, 2013 1 次提交
  17. 11 6月, 2013 1 次提交
  18. 06 6月, 2013 1 次提交
    • G
      usb: add USB_MSG_PLUG_OUT event · ed19483c
      Grissiom 提交于
      When the core received an USB_MSG_PLUG_OUT event, it will stop all the
      classes. This make a chance that the classes could get rid off doing
      useless stuff while the USB cable is plugged out.
      ed19483c
  19. 30 5月, 2013 1 次提交
  20. 25 5月, 2013 3 次提交
  21. 23 5月, 2013 1 次提交
  22. 17 5月, 2013 4 次提交
  23. 12 5月, 2013 2 次提交
    • G
      usbdevice/core: use static message queue · b3e38f53
      Grissiom 提交于
      Although currently the only message send to the queue is struct
      udev_msg, in order to keep backward compacity and for extention in the
      future, we set the size of message to 32.
      b3e38f53
    • G
      usbdevice/core: use static thread instead of dynamic thread · f0d50a7b
      Grissiom 提交于
      It also add two configurations for the USB device even loop thread:
      
          RT_USBD_THREAD_STACK_SZ to set the stack size, default to 2048
          RT_USBD_THREAD_PRIO     to set the priority, default to 8
      
      You can overwrite the default values in rtconfig.h
      f0d50a7b