안녕하세요..
블루투스 채팅 소스를 이용해서 차량과 통신하는 작업을 하고 있습니다.
차량과의 데이터 통신은 잘되나..
문제점이 차량에서 올라오는 코드가 자기 마음대로(?) 올라 온다는 겁니다..
한줄에 제대로 올라올때도 있고,
두줄에 나눠져서 올라온다든지,
무작위로 말입니다;;;
단말기간의 블루투스통신 에서는 제대로 됩니다만..
 

보시면 알겠지만
010c41 oc ob ec STOPPED> 이런 데이터가 올라오는데,
어쩔때 제대로 한줄에 올라오는데 두줄로 나줘서 올라오기도 한다는 거죠;;;

원인을 모르겠습니다;;;;


main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <ListView android:id="@+id/in"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:stackFromBottom="true"
        android:transcriptMode="alwaysScroll"
        android:layout_weight="1"
    />
    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        >
        <EditText android:id="@+id/edit_text_out"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:layout_gravity="bottom"
        />
        <Button android:id="@+id/button_send"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/send"
        />
    </LinearLayout>
</LinearLayout>