You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2020/10/24 21:04:47 UTC

[GitHub] [incubator-nuttx] spiriou opened a new pull request #2091: usbdev: add Android Debug Bridge driver

spiriou opened a new pull request #2091:
URL: https://github.com/apache/incubator-nuttx/pull/2091


   ## Summary
   
   Add USB device driver for Android Debug Bridge.
   https://developer.android.com/studio/command-line/adb
   
   ## Impact
   
   None
   
   ## Testing


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] xiaoxiang781216 edited a comment on pull request #2091: usbdev: add Android Debug Bridge driver

Posted by GitBox <gi...@apache.org>.
xiaoxiang781216 edited a comment on pull request #2091:
URL: https://github.com/apache/incubator-nuttx/pull/2091#issuecomment-716158186


   @spiriou nice contribution! Have you ported adb command tool?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] v01d commented on pull request #2091: usbdev: add Android Debug Bridge driver

Posted by GitBox <gi...@apache.org>.
v01d commented on pull request #2091:
URL: https://github.com/apache/incubator-nuttx/pull/2091#issuecomment-716208655


   Thanks for the info. I don't think adb will be the right protocol to use over BLE then.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #2091: usbdev: add Android Debug Bridge driver

Posted by GitBox <gi...@apache.org>.
xiaoxiang781216 commented on pull request #2091:
URL: https://github.com/apache/incubator-nuttx/pull/2091#issuecomment-716158186


   @spiriou nice contrition! Have you ported adb command tool?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] spiriou commented on pull request #2091: usbdev: add Android Debug Bridge driver

Posted by GitBox <gi...@apache.org>.
spiriou commented on pull request #2091:
URL: https://github.com/apache/incubator-nuttx/pull/2091#issuecomment-716208468


   > > @spiriou do you have some reference to understand the ADB protocol? I would like to know if it is possible for it to be used over BLE. If it works over a serial connection maybe it could be made to work over BLE UART but it is possibly not a good solution
   > 
   > Hi @v01d I think it could help you: https://github.com/cstyan/adbDocumentation
   
   @v01d ADB is basically a TLV communication over a serial link (binary). If you can provide a serial channel over BLE, then it may be possible. One other issue is that the adb client from android platform tools only support USB or TCP connection. Hence you would also have to provide on host side a TCP <-> BLE serial application.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] acassis merged pull request #2091: usbdev: add Android Debug Bridge driver

Posted by GitBox <gi...@apache.org>.
acassis merged pull request #2091:
URL: https://github.com/apache/incubator-nuttx/pull/2091


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] spiriou commented on pull request #2091: usbdev: add Android Debug Bridge driver

Posted by GitBox <gi...@apache.org>.
spiriou commented on pull request #2091:
URL: https://github.com/apache/incubator-nuttx/pull/2091#issuecomment-716180112


   Exactly, I'll submit it after this pull request


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] acassis commented on pull request #2091: usbdev: add Android Debug Bridge driver

Posted by GitBox <gi...@apache.org>.
acassis commented on pull request #2091:
URL: https://github.com/apache/incubator-nuttx/pull/2091#issuecomment-716199055


   > @spiriou do you have some reference to understand the ADB protocol? I would like to know if it is possible for it to be used over BLE. If it works over a serial connection maybe it could be made to work over BLE UART but it is possibly not a good solution
   
   Hi @v01d I think it could help you: https://github.com/cstyan/adbDocumentation


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #2091: usbdev: add Android Debug Bridge driver

Posted by GitBox <gi...@apache.org>.
xiaoxiang781216 commented on pull request #2091:
URL: https://github.com/apache/incubator-nuttx/pull/2091#issuecomment-716179653


   But I suppose that we need a tool on device side to handle the command from host, like adbd on Android device.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] spiriou commented on pull request #2091: usbdev: add Android Debug Bridge driver

Posted by GitBox <gi...@apache.org>.
spiriou commented on pull request #2091:
URL: https://github.com/apache/incubator-nuttx/pull/2091#issuecomment-716179096


   > @spiriou nice contribution! Have you ported adb command tool?
   
   It works with the "adb" command tool from Android platform tools. You can download it from https://developer.android.com/studio/releases/platform-tools
   
   Tested with "adb shell/push/pull/forward/reverse/logcat".


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] v01d commented on pull request #2091: usbdev: add Android Debug Bridge driver

Posted by GitBox <gi...@apache.org>.
v01d commented on pull request #2091:
URL: https://github.com/apache/incubator-nuttx/pull/2091#issuecomment-716185471


   @spiriou do you have some reference to understand the ADB protocol? I would like to know if it is possible for it to be used over BLE. If it works over a serial connection maybe it could be made to work over BLE UART but it is possibly not a good solution


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org