#実現したいこと
この質問をお読みいただきありがとうございます。
現在、Androidのホスト機能を用いてmbed(LPC1768)のUSBポートからシリアル通信で送られてきたデータをAndorid端末で受信するアプリを製作しております。
その前段階として、データを受信したらその旨をトーストする機能をつけたいと考えています。
#現在の状況
###問題点
mbedと製作したアプリ間での通信が確認できておりません。
本来ならばmbedは0.5sおきにシリアル信号を送信しているので電源ランプが0.5sおきに点滅するはずなのですが、この場合は点灯したままで送信すらできていない模様です。
###試したこと
pc(Mac)とmbed間の通信は正常に行われていることを確認しております。
また、既製のシリアルモニタアプリ(USB Serial Console)でも通信が行われたことを確認いたしました。
#重点的に見ていただきたいところ
原因がわからないというのが正直な感想ですが、心当たりがあるとしたらソースコード中のconnection.controltransferの部分です。この部分で通信の設定を行なっているらしいのですが、その引数の意味が分からず、ネットに乗っているものをほとんど引用しているだけなので、この点が最も怪しいと個人的には考えております。
回答の方よろしくお願いいたします。
#追記(2020/2/19 11:00)
やはりconnection.controlTransferがうまく行っていません(負の値を返しました)。
この問題への対処法がわかりません。
よろしくお願い申し上げます。
#ソースコード
###Android側
java
1package com.example.**********; 2 3import androidx.appcompat.app.AppCompatActivity; 4import android.graphics.Color; 5import android.hardware.usb.UsbConstants; 6import android.hardware.usb.UsbDevice; 7import android.hardware.usb.UsbManager; 8import android.hardware.usb.UsbDeviceConnection; 9import android.os.Bundle; 10import android.hardware.usb.UsbInterface; 11import android.hardware.usb.UsbEndpoint; 12import android.os.Handler; 13import android.os.Looper; 14import android.widget.TextView; 15import android.widget.Toast; 16import java.util.HashMap; 17 18public class MainActivity extends AppCompatActivity { 19 20 UsbDevice myusbdevice; 21 UsbManager myusbmanager; 22 UsbDeviceConnection connection; 23 UsbEndpoint endpoint; 24 UsbInterface intf; 25 UsbEndpoint readEndpoint; 26 27 @Override 28 protected void onCreate(Bundle savedInstanceState) { 29 super.onCreate(savedInstanceState); 30 setContentView(R.layout.activity_main); 31 } 32 33 public void onResume() { 34 super.onResume(); 35 myusbmanager = (UsbManager) getSystemService(USB_SERVICE); 36 TextView checker = (TextView) findViewById(R.id.check); 37 38 if (ConnectCheck(checker)) { 39 myusbdevice = (UsbDevice) getIntent().getParcelableExtra(UsbManager.EXTRA_DEVICE); 40 41 if (myusbmanager.hasPermission(myusbdevice)) { 42 intf = myusbdevice.getInterface(0); 43 for (int i = 0; i < intf.getEndpointCount(); i++) { 44 endpoint = intf.getEndpoint(i); 45 if (endpoint.getDirection() == UsbConstants.USB_DIR_IN) { 46 if (endpoint.getType() == UsbConstants.USB_ENDPOINT_XFER_BULK) { 47 readEndpoint = endpoint; 48 } 49 } 50 } 51 connection = myusbmanager.openDevice(myusbdevice); 52 if (connection.claimInterface(intf, true)) { 53 //ここのif文までは確実にきていることは確認しております。 54 connection.controlTransfer(0x21, 34, 0, 0, null, 0, 5000); 55 connection.controlTransfer(0x21, 32, 0, 0, new byte[] {(byte)0x80, 0x25, 0x00, 0x00, 0x00, 0x00, 0x08}, 7, 5000); 56 new Thread(new Runnable() { 57 @Override 58 public void run() { 59 final byte[] buffer = new byte[30]; 60 int bytescounts = connection.bulkTransfer(readEndpoint,buffer,30,5000); 61 if(bytescounts >= 0){//bytecountsが0以上であれば受信しています 62 new Handler(Looper.getMainLooper()).post(new Runnable() { 63 @Override 64 public void run() { 65 onRead(); 66 } 67 }); 68 } 69 } 70 }).start(); 71 } 72 } 73 } 74 } 75 76 public void onPause() { 77 super.onPause(); 78 myusbmanager = null; 79 } 80 81 public void onRead(){//受信した旨の通知 82 Toast toast = Toast.makeText(MainActivity.this,"データを受信しました",Toast.LENGTH_LONG); 83 toast.show(); 84 } 85 86 private boolean ConnectCheck(TextView checker){ 87 HashMap<String, UsbDevice> deviceList = myusbmanager.getDeviceList(); 88 89 if(deviceList == null || deviceList.isEmpty()){ 90 checker.setText("unconnected"); 91 checker.setTextColor(Color.RED); 92 return false; 93 } 94 else{ 95 checker.setText("connected"); 96 checker.setTextColor(Color.GREEN); 97 return true; 98 } 99 } 100}
###mbed側
c++
1#include "mbed.h" 2 3Serial pc(USBTX,USBRX); 4int i = 0; 5int main(){ 6 while(1){ 7 pc.printf("%d",i); 8 i++; 9 wait(0.5); 10 } 11}
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/19 01:16