motorola

Android 4.0.4 BLE API, BroadCom - Motorola

梦想的初衷 提交于 2019-12-03 07:54:58
问题 Iam working on a HealthCare project atm. we are making a test setup where we use a Motorola Razr Max with android 4.0.4 as Gateway. The phone's BLE will communicate with a BLE Chip from IT. The reason for picking a Motorola Razr maxx was because IT had it listed on a link! under which phones supported BLE. But but Motorola's BLE API from android 4.0 upgrade dosnt work. I have also tried BroadComs BLE API on the phone - but it isnt supported by the phones BLE chip - so I didnt get fare here.

How to set up android SDK for command line development on linux?

坚强是说给别人听的谎言 提交于 2019-12-03 00:37:30
I'm trying to set up the android SDK to develop a simple program on the command line in Linux (Ubuntu 9.10). I tried eclipse, but it has know problems running on Ubuntu, so I gave up on it. Here's what I've done so far: downloaded android-sdk_r05-linux_86.tgz from http://developer.android.com/sdk/index.html tar xvzf android-sdk_r05-linux_86.tgz ln -s android-sdk-linux_86 android in .tcshrc added setenv PATH .....:/home/user/android/tools source .tcshrc ran 'android'. This opened a gui. Under available packages: I installed everything, and quit the gui. ran 'android list targets' and It listed

Android application crashing on Motorola defy reason <s3dReadConfigFile:75>: Can't open file for reading

百般思念 提交于 2019-12-03 00:04:56
I have been working on an Android application for last couple of weeks. I have been testing it on Samsung s3 and HTC one without any issue. However I brought Motorola defy and while started testing on it, application starts crashing. After looking into logcat I found following issue that might cause crash i.e. <s3dReadConfigFile:75>: Can't open file for reading Could any help me to fix this issue? Why is it crashing on Motorola not on any other Android devices? Thanks in advance. Here is full logcat E 7183/Trace: error opening trace file: Permission denied (13) D 7183/ActivityThread:

Android 4.0.4 BLE API, BroadCom - Motorola

旧巷老猫 提交于 2019-12-02 23:04:25
Iam working on a HealthCare project atm. we are making a test setup where we use a Motorola Razr Max with android 4.0.4 as Gateway. The phone's BLE will communicate with a BLE Chip from IT. The reason for picking a Motorola Razr maxx was because IT had it listed on a link ! under which phones supported BLE. But but Motorola's BLE API from android 4.0 upgrade dosnt work. I have also tried BroadComs BLE API on the phone - but it isnt supported by the phones BLE chip - so I didnt get fare here. So my Question here. what will you suggest I do from here ? Do u know any android phones where

Why am I getting, “Unable to connect to the remote server”?

梦想与她 提交于 2019-12-02 10:09:44
This err msg is the next one I get after resolving “NotSupportedException” as noted here I don't even reach the break point in the server code (set on the first line of the method that should be getting called). This is the relevant server code: [Route("api/PlatypusItems/PostArgsAndXMLFileAsStr")] public async void PostArgsAndXMLFileAsStr([FromBody] string stringifiedXML, string serialNum, string siteNum) { string beginningInvoiceNum = string.Empty; // <= Breakpoint on this line string endingInvoiceNum = string.Empty; XDocument doc = XDocument.Load(await Request.Content.ReadAsStreamAsync()); .

Android Widget shows strange image during update

二次信任 提交于 2019-12-02 05:24:01
I have a strange one here... I have a Motorola i1 with Nextel running android 1.5 I have an android widget. When I start running the Service that updates this Widget I see an image from another widget (Launch DC Contact) It shows this image in my widget's location but when "update" of my widget is done it is replaced with the layout I have for my widget. It is as if there is a cache of widget images and it shows stuff from there until my widget's update is done. If my update takes long then user can see this strange image for 2-3 secs. public void onUpdate(Context context, AppWidgetManager

Writing an OS for Motorola 68K processor. Can I emulate it? And can I test-drive OS development?

|▌冷眼眸甩不掉的悲伤 提交于 2019-11-30 19:01:51
Next term, I'll need to write a basic operating system for Motorola 68K processor as part of a course lab material. Is there a Linux emulator of a basic hardware setup with that processor? So my partners and I can debug quicker on our computers instead of physically restarting the board and stuff. Is it possible to apply test-driven development technique to OS development? Code will be mostly assembly and C. What will be the main difficulties with trying to test-drive this? Any advice on how to do it? You certainly can tdd this project. First off decouple all accesses to the hardware with

Is my “hal_process_report_ind: Bad item quality: 11” something to worry about?

你。 提交于 2019-11-28 07:34:43
问题 I get this error in LogCat while doing dev work. Sounds like a hardware malfunction. Is it? What's it in relation to? I tried searching but found only people talking about cameras. It's on a Motorola Razr M. My device acts quirky a lot (feedback delays often when unlocking and freezing temporarily while playing games) and I wonder if this has something to do with it. Thanks! PID TID Application Tag Text 698 710 qcom_sensors_hal hal_process_report_ind: Bad item quality: 11 (with some context)

devicePolicyManager.lockNow() is not working for Motorola Tablets

寵の児 提交于 2019-11-27 02:20:41
问题 public final static void lockDevice() { try { if (devicePolicyManager.isAdminActive(adminComponent)) { devicePolicyManager.lockNow(); } } catch (final Exception ex) { ... } } The above code does not throw any exception nor it locks the screen for motorola xoom tablets only. (Both Homeycomb and Icecream Sandwitch) The same code works perfectly on other Homeycomb and ICS tablets. I googled, but did not get any solution. Any Ideas.....? 回答1: Possible reasons for this problem 1) I think there is

How can I take mod of a number in assembly in Motorola M6800

折月煮酒 提交于 2019-11-26 18:33:56
问题 How can I take mod of a number for instance a%9 in assembly in Motorola M6800.Please tell me which mnemonics should I use. 回答1: At last if memory serves, the 6800 doesn't have a division instruction (IIRC that was added in the 6809), so you'll have to implement division on your own (or, if you don't care about speed, just subtract the divisor repeatedly until the result is less than the divisor, and that's your remainder). To just figure the remainder (without the division) is actually pretty