Bluetooth problem cant search, pair and ...

Here is the event list from iConsole:
Manager (3)
9/4/13, 10:11:55 PM
Reachability Flag Status: -R -----l- networkStatusForFlags
Application windows are expected to have a root view controller at the end of application launch
Reachability Flag Status: -R ------- networkStatusForFlags
Preferences (26)
9/4/13, 10:08:13 PM
Unbalanced calls to begin/end appearance transitions for , view ; layer = ; contentOffset: {0, 305.5}>>.
9/4/13, 10:08:41 PM
Unbalanced calls to begin/end appearance transitions for , view ; layer = ; contentOffset: {0, 305.5}>>.
9/4/13, 10:09:13 PM
BTM: setting discoverable status enabled
BTM: setting connectable enabled
BTM: enabling device scanning
BTM: failed to start scanning with error 111
9/4/13, 10:09:14 PM
BTM: local device power state changed
BTM: power is now on
BTM: setting discoverable status enabled
BTM: setting connectable enabled
BTM: enabling device scanning
9/4/13, 10:10:14 PM
BTM: setting discoverable status disabled
BTM: setting pairing disabled
BTM: setting connectable disabled
BTM: disabling device scanning
9/4/13, 10:10:22 PM
BTM: setting discoverable status enabled
BTM: setting pairing enabled
BTM: setting connectable enabled
BTM: enabling device scanning
9/4/13, 10:10:24 PM
BTM: disabling device scanning
BTM: local device power state changed
BTM: power is now off
BTM: setting discoverable status disabled
BTM: setting connectable disabled
9/4/13, 10:10:25 PM
BTM: setting discoverable status disabled
BTM: setting connectable disabled
SpringBoard (4)
9/4/13, 10:09:14 PM
BTM: local device power state changed
BTM: power is now on
9/4/13, 10:10:24 PM
BTM: local device power state changed
BTM: power is now off
assistivetouchd (1)
9/4/13, 10:07:50 PM
AssistiveTouch preference was not enabled. Shutting down
backboardd (1)
9/4/13, 10:11:47 PM
Application 'UIKitApplication:com.apple.Preferences[0x23c4]' quit with signal 9: Killed: 9
kbd (2)
9/4/13, 10:30:45 PM
-[TIXPCDataTransport _handleForPurpose:withReplyBlock:] couldn't get data source for purpose=__TIRDTAB
9/4/13, 10:31:48 PM
-[TIXPCDataTransport _handleForPurpose:withReplyBlock:] couldn't get data source for purpose=__TIRDTAB
mediaserverd (3)
9/4/13, 10:07:43 PM
22:07:43.906 <0x2479000> AudioConverterNew returned -50
22:07:43.953 <0x2479000> IO_ChangeIOFormat: error -50
22:07:43.957 <0x2479000> Queue_ChangeIOFormat: failed (-50)

Hi yeenan,
If you are having issues with the Bluetooth connection on your iPhone, you may find the following article helpful:
iOS: How to troubleshoot Bluetooth connections
http://support.apple.com/kb/TS4562
Regards,
- Brenden

Similar Messages

  • E-Recruiting: Problems with search profile and serach templates

    Hi Recruiting-Experts,
    I´m facing problems with "Search Profiles" and "Search Templates"
    (Customizing SPRO --> SAP-E-Recruiting --> Recruitment --> Talent Warehouse --> Candidate --> Candidate Search )
    Out customers wants me to add a new search criterion to the talent search. It's a customer-field (type 'd' --> Date)  belonging to infotype 5106.
    Unfortunately, it doesn't work. The hit list is always empty.
    What I did:
    Customizing (see above)
    Updated search profile (report RCF_RECREATE_SEARCH_PROFILES)
    The result:
    I can see and choose the new search criterion on talent warehouse search site (recruiters startpage)
    I can find the data (internal format yyyymmdd) via transaction SKPR07 (see XML below, ZZEARLIEST_ENTRY 20090901)
    By the way, the hit list is also empty when adding and searching for birthdate.
    Has it got to do with the date stored in internal format?
    Thanks for any comments / help.
    Regards
    CHRIS
    =========================================================================

    Hi Sebastian,
    thanks for your quick answer.
    That's why I didn't get it done for hours yesterday.
    Thanks again,
    Regards
    CHRIS

  • HT201820 Bluetooth problems between macbook air and iphone 5s

    Hello! I can't transfer an mp3 file from my macbook air to my iphone 5s. They actually connect, I can sse the message with the passkey in my iphone, I clic OK, they connected and suddently they get disconnected. Can anyone help me solve this, please? Tha

    The iPhone is not designed to pair with a computer via Bluetooth. It supports only a very limited set of Bluetooth profiles: iOS: Supported Bluetooth profiles - Apple Support
    The following has more details: Bluetooth: Why can't I pair my iPhone or iPad with my computer?
    You may want to look at AirDrop. It does require Bluetooth to be on but the devices do not need to pair: Mac Basics: AirDrop lets you send files from your Mac to nearby Macs and iOS devices - Apple Support

  • Problem  with search help and date fields

    Dear experts,
    I have two text fields and to each i assigned cacs_calendar search help.
    It works well normally but if i make text box output only then i cannot select date.
    I want that text box in its disabled form can be used to select date from cacs_calendar search help
    that i assigned.User should not provide manual input which means fiedls should be otherwise listed in grey.

    Hi Aditya
    If a I/P output field is provided an attribute as output only and though search help is provided , the values in the search help list will also be in read-only mode and u cannot select them at all, may be you can solve ur problem thru different approach.
    when a manual entry is done with wrong value which is not present in F4 help/search help list and
    execution is done SAP will by default throw error saying invalid value

  • Problem with Searching file and writing

    Hi guys,
    i m writing a program to search for a file and if the file exists it will write .
    otherwise printing astatement saying file not found.
    i m passing directory name as an argument.
    in tht there are many ip files.
    the program will search for a particular file in all the zip files.
    i m passing arguments are
    <directory-name> <search-file-name>
    the code is finding the particular file but its not writing to another file.
    i m getting exception as Filenot found.. the code as follows:
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.util.Enumeration;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipFile;
    import java.io.*;
    public class SearchFile {
    public static void main(String args[]) {      
         try{
         Testme(args[0],args[1]);
         catch(Exception e){System.out.println(e);}
    public static void Testme(String lists,String sfile)
         File dir = new File(lists);
    File[] children = dir.listFiles();
         int length =children.length;
    if (length < 0) {
    System.out.println("sorry No files found");
    } else {
    for (int i=0; i<length; i++) {
    // Get filename of file or directory
    File fl=children;
              System.out.println("the File name is "+fl.getName());
                        if(fl.getName().endsWith(".zip"))
                   //System.out.println("The zipped files are"+filename);
                   SearchZip(fl,sfile);
    public static void SearchZip(File zipfile,String searchfile)
              //System.out.println("welcome"+zipfile);
              boolean state=false;
    try {
         int count=0;
              ZipFile zf = new ZipFile(zipfile);
              System.out.println("----------------------------");
              System.out.println("Searching in "+zipfile);
              Enumeration entries = zf.entries();
              //System.out.println("the passed file File name is "+args[1]);
              while (entries.hasMoreElements()) {
              ZipEntry ze = (ZipEntry) entries.nextElement();
              System.out.println("----------------------------");
              System.out.println("Listing FIles " + ze.getName() );
              String files=ze.getName();
              System.out.println("----------------------------");
              File f = new File("geetha.txt");
              byte[] buf = new byte[8184];
              String inputLine = "y";
              if (inputLine.equalsIgnoreCase("y")) {
                   long size = ze.getSize();
                   if (size > 0) {
                        System.out.println("name is " files "size is"+ size);
                        BufferedReader br = new BufferedReader(
                             new InputStreamReader(zf.getInputStream(ze)));
                        String line;
                        if(files.equals(searchfile))
                             System.out.println("File Found...............");
                             FileInputStream in = new FileInputStream(files);
                             FileOutputStream out = new FileOutputStream(f);
                             int len;
                        while ((len = in.read(buf)) > 0) {
                             state=true;
                        out.write(buf, 0, len);
                        System.out.println("successfully Written the file");
                        System.out.println("The File Found is "+state);
              catch (Exception e) {
              System.out.println("File Not Found Please check the File"+e);

    This is a multipost of http://forum.java.sun.com/thread.jspa?threadID=692507&tstart=0
    Please return to that thread Santhosh as you have been given a couple of answers already in that thread.

  • Problem with search engines and BC

    Hi
    This is what google does when look for my website.  is hosted with BC and this domain is listed on the sites that BC gave me. do I need to elliminate this from the list. if yes, how is that done?  I cannot have a site declared insecured by google!
    Thanks for your response

    In this case, the address listed in the certificate does not match the address of the website your browser tried to go to.
    This is what google is telling me.   I cut and pasted part of the response below:
    One possible reason for this is that your communications are being intercepted by an attacker who is presenting a certificate for a different website, which would cause a mismatch. Another possible reason is that the server is set up to return the same certificate for multiple websites, including the one you are attempting to visit, even though that certificate is not valid for all of those websites. Google Chrome can say for sure that you reached *.worldsecuresystems.com, but cannot verify that that is the same site aswww.alechadesigns.com which you intended to reach. If you proceed, Chrome will not check for any further name mismatches.

  • Bluetooth problem with iOS 8 and mazda cx7

    Since downloading iOS 8 my phone won't connect to my car bluetooth unless I force it to.

    Hi ..
    Try the help provided in this support article >  iOS: Troubleshooting car stereo connections

  • Search row and column for return value

    Dear Sir/Madam,
                               I have a problem for searching spreadsheet and hope you can help me out a bit.  Im pretty new to Labview and Im currently using Labview 8.0.  My task is to search the spreadsheet I have attached in row and column-wise, then return the corresponding value out.  I had an attempt in doing this as you can see from the vi that i have attached.  I try inputting the 'read from measurement file' into an array and using delete, index and search array I will be able to find the index value for the relevant row and column that i searched for by inputting them into an index array with the orginal array from the 'read from measurement file'.
                              So ultimately, when i enter a row value of 0.5 and a column value of 0.3, my output will be 1.688.
                              I can't see any mistakes in my logic but I getting really strange results, like I can read my data has been entered into an array but when i try deleting the first column and put it into another array, the orginal array with nothing deleted is outputted hence making my search to give out -1 value. So could you take a look please and give me any suggestion that can solve my problem or enhance the code a bit.  Thank you for your time.
    Best Regards,
    Coato
    P.s for some reason i can't attached the .lvm file of my data hence i have attached the excel version but i think you need to convert it back to .lvm for the 'read from measurement file' function to work.
    Attachments:
    Backswing compensation.csv ‏10 KB
    Backswing comnpensation2.vi ‏109 KB

    Your VI makes absolutely no sense to me, but maybe I don't understand what you are trying to do.
    You seem to have dynamic data with 6 signals and 48 points/channel. Now you reshape this into an array of dynamic data with 4x13 elements from which you slice out one row or column, resp. "delete from array" is NOT the correct tool to do this, use "Index array" with one index unwired to get a row or column as 1D array.
    So you end up with two 1D arrays of dynamic data that you search for DBL. It is difficult to understand how you want to search for an array element that corresponds to a scalar DBL value of 0.1. Your array elements are NOT DBLs but dynamic data, each containing many signals!
    There are two elements on all your data that are "3", the rest are zero. You will never find anything that is 0.1.
    Maybe you can convert your original dynamic data to a 2D array with "rows are signals" using "convert from dynamic data", then operate on the 2D array.
    Coato wrote:
                              So ultimately, when i enter a row value of 0.5 and a column value of 0.3, my output will be 1.688.
    Sorry, Please explain.
    Please make a VI containing a simple 2D aray as diagram constant that contains e.g. 5x5 typical values. Let us know what kind of result you expect from your algorithm..
    LabVIEW Champion . Do more with less code and in less time .

  • Intel iMac; upgraded adobe flash; bluetooth keyboard no longer pairs but magic mouse still OK. With Bluetooth switched on the screen splits into 4 areas and open windows seperate and shrink. Switch off Bluetooth and problem disappears and iMac works OK

    Intel iMac; upgraded adobe flash; bluetooth keyboard no longer pairs but magic mouse still OK. With Bluetooth switched on the screen splits into 4 areas and open windows seperate and shrink. Switch off Bluetooth and problem disappears and iMac works OK with plug-in keyboard and mouse

    Hi, Derek -
    ...the screen splits into 4 areas and open windows seperate and shrink.
    Sounds like Spaces is being activated somehow. With the wired keyboard and mouse in use, select the Exposé & Spaces control pane in System Preferences, click the choice in that pane for Spaces. See what the settings are. There are some activation settings in that pane - by default, F8 activates it.
    It could be that the bluetooth keyboard has some stuck keys and is activating Spaces; or that the activation command has somehow been reset to something that the bluetooth mouse, or bluetooth itself, is triggering.

  • Hey my iphone 4 has a problem regarding carrier. Its always showing searching mode and wifi-address N/A and Bluetooth address 00:00:00:00:00 and call function is disable

    hey my iphone 4 has a problem regarding carrier. Its always showing searching mode and wifi-address N/A and Bluetooth address 00:00:00:00:00 and call function is disable. Please help me. I have tried every thing ..like restore from DFU mode with out sucess.

    Refer to  Note 98458 - SAPMSSY1, CALL_FUNCTION_NOT_FOUND

  • Why Cant i pair iphone and ipod via bluetooth

    Why Cant i pair iphone and ipod via bluetooth

    you cant because you couldn't actually do anything with them even if they were paired. Bluetooth on iphones and ipods is really just for accessories. Its annoying though that you cant transfer files and photos ect. but at least we have iCloud.

  • I cant connect my i phone 4 to my sony vaio laptop via bluetooth  i am  having problem can any one help me how can i connect my i phone 4 to my laptop using bluetooth i tried to paired but it just doesnt work help me pls!!

    i cant connect my i phone 4 to my sony vaio laptop via bluetooth  i am  having problem can any one help me how can i connect my i phone 4 to my laptop using bluetooth i tried to paired but it just doesnt work help me pls!!

    Unless you're trying to tether your phone to your computer or create a personal hotspot, it won't pair with your computer by bluetooth. File transfer by bluetooth is not supported. So, you can quit trying unless you're trying to tether.

  • I have an iPad which I usually connect to my iPhone 4s for 'personal hotspot' when I travel. I am planning to buy a bluetooth keyboard for my iPad and wondering if I will be able to connect/pair iPhone 4s and the keyboard at the same time!! Anyone??

    I have an iPad which I usually connect to my iPhone 4s to use the 'personal hotspot' when I travel. I am planning to buy a bluetooth keyboard for my iPad and wondering if I will be able to connect/pair iPhone 4s and the keyboard at the same time!! Anyone??

    The likely problem is your expectations you cant sync using bluetooth these are the supported profiles
    http://support.apple.com/kb/ht3647

  • Bluetooth pairing and so handoff does not work

    Hi!
    First of all I have a Macbook Pro 15" Retina late 2013 (bought at in the first months of 2014) and and iPhone 5s.
    rMBP has installed OS X Yosemite since yesterday and my iPhone iOS 8.0.2
    Positiv checks:
    - both devices support Bluetooth LE
    - both devices are on the same wi-fi network
    - rMBP support handoff and instant hotspot as displayed in system information screen
    - rMBP could "out call" over facetime and my iPhone to anyone
    - bluetooth is activated on both devices
    - airdrop (for everyone) is activated on both devices
    - handoff in settings -> general on rMBP ist actived
    - handoff in settings -> generall -> handoff & ... ist activated on iPhone too
    Problems:
    - handoff does not work between my rMBP and iPhone
    - in bluetooth settings both devices see each other, but they cannot connect to each other
    if I try to connect bluetooth from rMBP to iPhone I get: network not available
    if I try to connect bluetooth from iPhone to rMBP I get: connections failed
    so what can I do to pair/connect them both to each other for these incredible handoff features I want to use?
    things I tried out:
    - switching airdrop on and off on both devices
    - switching airdrop off and on on both devices
    - switching bluetooth off and on on both devices
    - clearing bluetooth device cach on rMBP and fresh select (pairing) in the settings
    - multiple trys on my iPhone to connect with my rMBP
    - resetting network settings on iPhone
    - resetting all settings on iPhone
    I run out of ideas .... can anybody help me please!

    yes, there is an additional troubleshooting for your iPhone.
    - be sure that you have still OS X Yosemite and iOS 8.0.2 or later (8.1 on Monday) installed on your devices
    - on iOS goto settings -> generall -> scroll down to reset settings (last option on general screen) -> reset all network settings
    - be sure to reconnect to the same WI-FI after you did that
    - be sure to activate Bluetooth
    - be sure that Handoff ist activated on your iPhone (Settings -> General -> Handoff)
    - be sure your MBP ist on the same WI-FI (same bandwith as well, for example both devices have to be on 2,4 GHz)
    if that troubleshooting does not work for you, goto settings -> iCloud -> scroll down to logout from your iCloud on iOS
    and than reconnect to iCloud on your iPhone 5c
    if that troubleshooting does not work too, goto settings -> general -> scroll down to reset settings
    and reset all settings, do the same as before
    you can also check on your MBP:
    - goto Macintosh HD/library/Preferences/By Host and check for files com.apple.Bluetooth......
    - delete them
    - do not forget to activate Bluetooth on MBP
    if you did the two boot-tricks in the troubleshooting, Bluetooth should be reseted to default, and if you open Settings -> Bluetooth on your MBP
    your iPhone should NOT be shown in the list of available Bluetooth devices.
    please tell me, what works for you!

  • I recently purchased a car stereo with Bluetooth capability. I paired my iPhone 4S with it and it wasn't working properly. I went into forget this device. Then found out it was something they did when they installed it. Now it won't pair again. Help

    I recently purchased a new car stereo with Bluetooth capability. I paired my phone with the stereo and it wasn't working correctly, did forget this device. Found out it was a problem with the radio. Now it's fixed and my phone won't pair with it again. How can I pair it again?

    You will need to put the car stereo back into discovery/pairing mode. That may mean you removing the initial pairing of the device. See the user guide for the radio on how to put the device into discovery/pairing mode, and if necessary, how to remove the original pairing. This support document may also provide you with some assistance. http://support.apple.com/kb/TS3581

Maybe you are looking for

  • MacPro Kernel Panic when audio cable is unplugged...

    Hello, My MacPro running SnowLeopard Kernel Panics when I unplug the speaker cable from the back.  No new hardware/software has been installed recently.  Any insight?? thanks!

  • OBIEE 11.1.1.7 installation Issues - Fails on Creating a Domain

    Hi, I have completed all the steps mentioned in different posts in this forum regarding my error, but none of them helps. After comprehensive searching i have tried to install OBIEE with these steps also. 1st time installation: 1. Followed simple ste

  • Having trouble with multiple lines

    I'm trying to fill out this form for an application that is a read/enter/print only PDF, and I got to a multiple line box and instead of being able to enter text in line for line, when you try to enter text it shows as one big format which I can't ch

  • Cursor disabled on one monitor.

    How do I access the second monitor? My active cursor won't cross to the other monitor. The other has the menu and all the icons. I am unable to use the cursor because it won't cross over to the other (second) monitor. I think I changed a setting. But

  • Nokia Lumia 920

    Hello. why can't I move photos from nokia lumia 920 to iphoto? It's possible?