MacOSX

The process can be split in three big steps:

  1. Install the serial link driver
  2. Prepare to get the serial link to work (RxTx driver, only once)
  3. Install the application

In more detail, it goes like this:

  1. Usually the manufacturer did not care about MacOS, so you need to get the serial driver yourself from http://www.silabs.com (CP2102 VCP drivers).

    You do not need that driver if you are using bluetooth.

  2. The trickiest part is the serial link driver with the application (RxTx). It requires the RxTx library to be compatible with the operating system and Java itself.

    You will need to perform the following operations once. The operations make sure that a lock mechanism that is needed by RxTx can work for any user:

    1. go to Applications/Utilities
    2. run Terminal
    3. if you don't work as Admin, log in
      1. type login and press [return]
      2. type the name of the Admin and press [return], enter the password for Admin in next line and press [return]
    4. type sudo mkdir /var/lock and press [return]
    5. enter the password for Admin and press [return]
    6. type sudo chmod 777 /var/lock and press [return]
    7. type exit to log out

    Most of the time this will make things work. You may still get trouble if you have a 64 bit operating system.

    Indeed, at the time of writing, the only RxTx driver available for MacOS is a 32 bit version. You might be running a 64 bit operating system. Your 64 bit operating system can still run 32 bit programs, but when running a 64 bit program, all code it uses 'directly' must be 64 bit. As the RxTx driver does not come as a 64 bit version yet, running Java as a 64 bit version will not work. Quite franckly, there is not real reason to use the 64 bit version of Java, but you probably are if your operating system is 64 bit.
    The solution is to install the 32 bit version of Java instead. I did not look where to find it, send a note to the application author if you know where it is.

  3. Installing the application as indicated elsewhere

When using the Web Start system (running BT747 from the web) the above considerations are still valid. On top of that you also may need to give permission to the application to allow it to use the system's resources.