Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

30
votes
8answers
16k views

Detect the specific iPhone/iPod touch model [closed]

Possible Duplicate: Determine device (iPhone, iPod Touch) with iPhone SDK I am making a game that utilizes the peer-to-peer bluetooth capabilities of the iPhone (and probably the iPod touch ...
20
votes
20answers
2k views

Best way to get started with programming other things than your computer?

What is the best way to get started with programming things outside of your computer? I don't mean mainstream things like cell phones with APIs. Please assume working knowledge of C/C++
13
votes
6answers
6k views

Bash Pipe Handling

Does anyone know how bash handles sending data through pipes? cat file.txt | tail -20 Does this command print all the contents of file.txt into a buffer, which is then read by tail? Or does this ...
12
votes
10answers
4k views

Cheap programmable GPS devices

I'd like to start a side project that involves programming with GPS devices. All that I need is a GPS device that can record its location every X seconds or minutes, save those locations locally, and ...
11
votes
2answers
132 views

Known problems on various Android devices?

Is there a site that collects the various issues that exist in various Android devices that an Android developer should know about? Such as "There is a problem with the vibrate feature on phone X. A ...
9
votes
8answers
16k views

Android Device Chooser — device not showing up

I'm using the android plugin for eclipse, and when I try to run my program using a real device through the android device chooser, my phone is not listed as a device. I have updated eclipse and all of ...
8
votes
1answer
2k views

Changing displayed Android device name in Eclipse

When attaching several Android devices to my development machine, it quickly becomes difficult to determine which device is which from Eclipse, because the device names appear to be represented as ...
6
votes
13answers
1k views

What's the smallest device I can program on?

I'm thinking of something smaller than a laptop that i can spend my hours on the way to work doing project euler problems or such. Any ideas?
6
votes
7answers
9k views

C# driver development?

Before I jump headlong into C#... I've always felt that C, or maybe C++, was best for developing drivers on Windows. I'm not keen on the idea of developing a driver on a .NET machine. But .NET ...
5
votes
2answers
113 views

Android resources not found on some devices

We have an application(with moderate amount of strings) which we translate to 27+ languages. We make 2 builds of the application. These 2 builds only differ in the name of the package. So basically we ...
4
votes
1answer
355 views

How to distinguish between USB and floppy devices - C#

I'm trying to recognize drives types by looping around DriveInfo.GetDrives() result. But for both USB and floppy I get the same DriveType.Removable value. How can I distinguish between them? Thanks! ...
4
votes
3answers
1k views

Get the full audio device name from Windows

Is there a way to get the full audio device name in Windows XP and later? I can use MIXERCAPS but the szPname member will limit to 32 characters (including NULL). For an audio device name of ...
4
votes
4answers
6k views

Find out which process has an exclusive lock on a USB device handle

I have a library that reads/writes to a USB-device using CreateFile() API. The device happens to implement the HID-device profile, such that it's compatible with Microsoft's HID class driver. Some ...
3
votes
3answers
510 views

Android Market - This application is available to over 0 devices?

I have published apk to the Android Market, activated and setup for free for all countries. Android Market says, my application is not compatible with any of the devices. I can see an application ...
3
votes
4answers
335 views

Linux programming: which device a file is in

I would like to know which entry under /dev a file is in. For example, if /dev/sdc1 is mounted under /media/disk, and I ask for /media/disk/foo.txt, I would like to get /dev/sdc as response. Using ...
3
votes
1answer
383 views

Get device interface from SetupDiGetClassDevs

is it possible to somehow get interface string for using with CreateFile from SetupDiGetClassDevs function or related functions? I have to scan for my devices connected to computer.
3
votes
2answers
153 views

Weird network devices

I am using NetworkInformation namespace to list all the network devices. NetworkInterface.GetAllNetworkInterfaces(); When I get the list, there are some weird unknown devices: What are they? And ...
3
votes
1answer
239 views

Pre-configured AVDs to match real devices

Looks like Android SDK doesn't come with any AVDs byt default. We need to create a new custom one. But I was wondering if there are pre-configured AVDs available to use that matches exact devices, for ...
3
votes
3answers
1k views

How to let user select a video recording device (web-cam) with OpenCV?

So what I need is something like capture devices list. And some function to get from user on which device he wants to stream. How to do such thing with openCV in win32 C++ console application?
3
votes
4answers
284 views

Best practices for targetting a wide range of devices and screen sizes

As you know android today is many versions many constructors, many screen sizes,... it's quite difficult for developers today to write programs that targets a big part of devices. What would be THE ...
3
votes
2answers
406 views

Best fast authentication mechanism for embedded devices with Nginx & Apache

We have a project deployed with Nginx, Apache, Django and Postgres. The project has large number of embedded devices login in to the server(https) in 5 minutes intervals and send a file to the ...
3
votes
3answers
287 views

Presentation technology for multiple devices

Our application is supposed to serve multiple devices, from simple to smart-phones, IPhones, touch-screens to normal browsers. Application is layered, so we can reuse the business and persistence ...
3
votes
1answer
293 views

Multiple iPhone OS devices attached to one Mac — how to select for build

I have an iPod touch with OS 2.2.1 and an iPhone 3GS with OS 3.0 both attached to my Mac. They both show up in Xcode Organizer. I now would like to be able to select which one of them an application ...
3
votes
2answers
483 views

How might I receive notifications when a USB device is connected?

I'm writing a program to monitor a specific device. This device may or may not always be connected, and when connected may be connected to any one of several different ports; I'd like my program to ...
2
votes
1answer
75 views

Issue while publishing Android app: “This application is available to over 0 devices”

Hello: I note this question has been answered at http://stackoverflow.com/q/8212956/936042 but I hope y'all will entertain my question since I am not able to reproduce the solution. When I upload my ...
2
votes
1answer
85 views

Can I install app to provisioned devices without physically connecting to dev computer

I have successfully provisioned 5 development devices to be used in testing during the development phase. This is working fine because I initially did it by physically plugging each iPhone into my MAC ...
2
votes
1answer
41 views

Sys::Info - Question

From Sys::Info::Device: If DEVICE_ID has the value of available, then the names of the available devices will be returned. Why does $info->device('available'); return no devices when there is at ...
2
votes
4answers
430 views

How to detect a mobile device with javascript?

I have been asked to create an actual HTML page / javascript to simulate detection of the mobile devices (iphone/ipad/android) using javascript code. This will then take the user to a different screen ...
2
votes
2answers
49 views

Reading from a communications resource

I want to read some data from a device connected to a COM port. HANDLE handle =CreateFileW(L"\\\\.\\COM3", GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, FILE_FLAG_OVERLAPPED, NULL); gives ...
2
votes
1answer
485 views

How to add other supported devices to android store

Hey basically i done some of my testing on my HTC wildfire and the application worked fine but for some reason it is not supported in the device list is there any way i could contact google to make it ...
2
votes
1answer
329 views

Testing with console output for multiple devices (iPhone/iPad) at the same time with Xcode

Is it possible to debug / run Xcode iPhone/iPad application project with multiple testing devices at the same time and see console outputs for all of them? I am developing bluetooth application and I ...
2
votes
3answers
290 views

how to detect that Windows finished adding/removing storage devices (not as drive letters, only as devices)

I have some computers with a simplified Windows in which storage devices that are added/removed don't get automatically drive letters. So I have to find a way to detect that are added/removed. One way ...
2
votes
2answers
2k views

Linux: How to map a blockdevice to a USB-device?

if I plugin a USB memory stick, I see a new folder in /sys/bus/usb/devices ... thus a new USB-device. Also I see a new folder in /sys/block ... thus a new block-device. My question is: How can I get ...
2
votes
5answers
1k views

What happens to an open file handler on Linux if the pointed file gets moved, delete

What happens to an open file handler on Linux if the pointed file meanwhile gets: Moved away -> Does the file handler stays valid? Deleted -> Does this lead to an EBADF, indicating an invalid file ...
2
votes
6answers
426 views

Developing for a Windows Mobile Phone, without a contract

Greetings! Anyway, My question, If you want to experiment developing for a Windows Mobile device, how would you go about testing your applications? I know there is a emulator but is not really ...
2
votes
3answers
549 views

How to detect the presence of a default recording device in the system?

How do I detect if the system has a default recording device installed? I bet this can be done through some calls to the Win32 API, anyone has any experience with this? I'm talking about doing this ...
2
votes
11answers
630 views

Mobile devices for developers

I need to develop some programs for mobile devices but haven't decided the platform to build upon. I'm looking for Palm or Pocket PC devices that have Touch screen and Wi-Fi connection and are cheep ...
1
vote
0answers
27 views

Why i am not able to play this Video in to Galaxy Ace but can play it in to Galaxy SII?

Here is the two video file properties : I am playing this video in to both device, Samsung Galaxy Ace and Samsung Galaxy SII. While i run Alone.mp4 then it play fine for both the device. But as ...
1
vote
1answer
57 views

How to get a list of SCSI-Disks in C/C++ under Linux?

i need to get a list or any other enumerable class with info about any connected SCSI-disks, with info just like /proc/scsi/sg/devices Please help me and thanks in advance
1
vote
1answer
52 views

700 ipads - ad hoc distribution

I am developing an app for a company interested on having this app installed in 700 Ipads. Unfortunately this company is not based in the USA and so using app store and B2B is not an option. Is there ...
1
vote
0answers
43 views

Android configuration devices in Eclipse

I am looking for a list of configurations to import on my Eclipse because in my Eclipse I have the screen size 4" and 4.7" but for example I want the screen 4.3" and the same density of HTC EVO 3D. ...
1
vote
1answer
153 views

Galaxy S2 not showing in Eclipse Mac

I have been using my Galaxy S2 for testing my applications with Eclipse for a while now. All of a sudden when I try to run my applications my device does not show in the Device List of Eclipse. I ...
1
vote
1answer
180 views

Physical screen size 'detection' based off user agent in PHP/javascript

So, there are ways to detect 'mobile' browsers and screen sizes using javascript and php.. however, the screen size is always returned in pixels and mobile can mean anything these days. I want to be ...
1
vote
2answers
377 views

Memory/RAM usage on different devices with same app

I made an android game with cocos2d-android. When I test this game on different devices, the RAM usage is varied: Samsung Galaxy Note (2.3.5): Task-Manager show: about 17MB Watchdog: about 23MB ...
1
vote
2answers
109 views

How to show Device date and time in iphone app?

Always i'm struggling with NSDate in iphone apps. I have developed one iphone app for US based client. The app should show the todays date. I have used the following code in my app. The date is ...
1
vote
1answer
99 views

Which is the cleaner way to get a pointer to a struct device in linux?

i'd need to obtain a pointer to a particular device registered in linux. Briefly, this device represents a mii_bus object. The problem is that this device seems doesn't belong to a bus (its ...
1
vote
1answer
181 views

What USB devices (friendly name) are currently connected to PC?

Can I get a list of what devices are currently connected to the computer? I checked this and this thread, but I can't seem to find the actual names (i.e. iPod Touch 4 etc.) is there a way to find the ...
1
vote
3answers
71 views

Can caches have limitations when dealing with devices?

In my computer architecture class, the prof posed the following question to us: "Caches can have serious limitations when dealing with devices. Why is this?" I have no idea why there are ...
1
vote
4answers
2k views

Which is better for building a game, Corona SDK or Xcode? [closed]

I recently looked at Bubble Ball's website, and it says Built With Corona SDK. I've never heard of Corona, and, from what I read, it lets you create games for devices with very little code. I'm not ...
1
vote
4answers
4k views

can't find android device using “adb devices” command

I meet a issue.I develop android application on the Mac Os. And my application run well on the emulator.I want to run it on the device,but when I run "adb devices",I get nothing. ...

1 2 3