Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - bam

Pages: [1] 2 3 ... 14
1
Debian / Titchy Question
« on: March 06, 2008, 08:41:36 pm »
so....worthy of doing? Does bluetooth work, suspend/resume, etc....

and

any problems that are to be expected?

oh and

compiler?


tia,
bam

2
Mac Issues / Mac Osx Share Internet Over Bluetooth (using Pan)
« on: February 23, 2008, 12:03:39 am »
Has anyone done this yet, I can connect to my mac fromt he zaurus but still cant ping a website, I would really like to get this set up. bnep0 is up and running. Any ideas on how to proceed?

tia

Bam

3
Mac Issues / Samba Over Bluetooth
« on: January 28, 2007, 02:04:57 pm »
anyway to do this, the idea is zaurus(bt/samba) <--->Mac(bt/samba), ala--> sync ical files.

4
Mac Issues / Ajzaurususb
« on: January 16, 2007, 12:00:05 am »
morning,
any way to have the mac 'autoconnect' anytime its plugged in? I plan  on using iSycCal to execute when it connects. Unless of course there is a better sync solution...

5
General Discussion / Tree!explorer Obex Gui For Send-to Function
« on: December 28, 2006, 01:08:15 am »
modified Meanies bluetooth-gui script to work for Tree!Exploreer Plus Send-To functionality

#!/bin/sh
#
######################################################################
APPNAME="OBEX GUI"
BNAME=`basename $0`
BLUECONTROL=/etc/pcmcia/bluetooth
BTLIST=/etc/bluetooth/devices
BTDEV=/etc/bluetooth/device
SUDO=`which sudo`

sFile=$1

init()
{
  export QSHDLG_APP=$BNAME$1
  INPUT=/var/spool/qshdlg/input_${QSHDLG_APP}
  OUTPUT=/var/spool/qshdlg/output_${QSHDLG_APP}
  CONTROL=/var/spool/qshdlg/control_${QSHDLG_APP}
}

get_device()
{
  if [ -f $BTDEV ] && [ "$DEVICE" = "" ]; then
    DEVICE=`cat $BTDEV`
  fi
 
}


  init dc
  qshdlg custom -C "message,reply"  -A -f lcfont -t "$APPNAME : control" -v "Scan,Start,Stop" &
  while [ ! -p $CONTROL ]
  do
    echo >/dev/null
  done
  if [ "`hciconfig`" = "" ]; then
    echo "Bluetooth service is not started" > $OUTPUT
  else
    echo "Bluetooth service is running" > $OUTPUT
    if [ -f $BTLIST ]; then
      for NODE in `grep ':' $BTLIST`
      do
        if [ "$NODE" != "Scanning" ] && [ "$NODE" != "..." ]; then
          if [ "`echo $NODE |grep ':'`" != "" ]; then
            NODEADDRESS=$NODE
          else
            echo 'item(QString)' "$NODEADDRESS---[$NODE]" > $CONTROL
            FOUND=1
          fi
        fi
      done
      if [ "$FOUND" = "1" ]; then
        echo 'showSelect()' > $CONTROL
        echo "Please select Bluetooth device" > $OUTPUT
      fi
    fi
  fi
  while read RET < $INPUT
  do
    case $RET in
      Start)
         if [ "`hciconfig`" != "" ]; then
           echo "stopping Bluetooth service..." > $OUTPUT
           $SUDO $BLUECONTROL stop
           CARDID=`cardctl ident 0 |grep manfid|cut -d: -f2 2>/dev/null`
           if [ "$CARDID" != "" ] && [ "`grep $CARDID /etc/pcmcia/bluetooth.conf 2>/dev/null`" != "" ]; then
             $SUDO cardctl eject 0
           fi
         fi
         if [ "`cardctl status 0|grep 'no card'`" != "" ]; then
           echo "inserting card..." > $OUTPUT
           $SUDO cardctl insert 0
         fi
         if [ "`cardctl status 0|grep suspended`" != "" ]; then
           echo "resuming card..." > $OUTPUT
           $SUDO cardctl resume 0
         fi
         echo "starting Bluetooth service..." > $OUTPUT
         if [ "`hciconfig`" = "" ]; then
           echo "Bluetooth started" > $OUTPUT
           $SUDO $BLUECONTROL start
         else
           echo "Bluetooth failed to start" > $OUTPUT
         fi
         ;;
      Stop)
         echo "stopping Bluetooth service..." > $OUTPUT
         $SUDO $BLUECONTROL stop
         CARDID=`cardctl ident 0 |grep manfid|cut -d: -f2 2>/dev/null`
         if [ "$CARDID" != "" ] && [ "`grep $CARDID /etc/pcmcia/bluetooth.conf 2>/dev/null`" != "" ]; then
           $SUDO cardctl eject 0
         fi
         if [ "`hciconfig`" = "" ]; then
           echo "Bluetooth stopped" > $OUTPUT
         else
           echo "Bluetooth failed to stop" > $OUTPUT
         fi
         ;;
      Scan)
         if [ "`hciconfig`" = "" ]; then
           echo "Cannot scan. Bluetooth is not enabled." > $OUTPUT
         else
           echo "Scanning for Bluetooth devices..." > $OUTPUT
           FOUND=0
           for NODE in `hcitool scan | $SUDO tee $BTLIST`
           do
             if [ "$NODE" != "Scanning" ] && [ "$NODE" != "..." ]; then
               if [ "`echo $NODE |grep ':'`" != "" ]; then
                 NODEADDRESS=$NODE
               else
                 echo 'item(QString)' "$NODEADDRESS---[$NODE]" > $CONTROL
                 FOUND=1
               fi
             fi
           done
           if [ "$FOUND" = "1" ]; then
             echo 'showSelect()' > $CONTROL
             echo "Please select Bluetooth device" > $OUTPUT
           else
             echo "No Bluetooth device found" > $OUTPUT
           fi
         fi
         ;;
      *)
   if [ "`echo $RET|grep ':'`" != "" ]; then
      DEVICE=`echo $RET|cut -d- -f1`
              echo "selected device is $DEVICE" |tee $OUTPUT
           
              get_device
      echo "Connecting to Device..." > $OUTPUT
 
           if [ -f /etc/bluetooth/obex ]; then
                OFTP=`cat /etc/bluetooth/obex`
           else
                OFTP=`sdptool search FTP|grep Channel|cut -d: -f2`
           fi

        echo 'Connected' > $OUTPUT
          echo "transferring $sFile ..." > $OUTPUT
          obextool push $sFile $DEVICE $OFTP
          echo "Transfer Complete" > $OUTPUT          
              $SUDO touch $BTDEV
              $SUDO chown zaurus:qpe $BTDEV
              echo $DEVICE > $BTDEV
   else
           echo "nothing selected" |tee $OUTPUT
   fi
         
         echo 'reject()' > $CONTROL
         ;;
    esac
  done


make sure to add a command in Tree!Explorer Plus Send-to
select command, then the name of this script "obex-gui %1 &", no quotes. Then you should be able to liong tap->send to->obex-gui. The dialog box pops-up select the device and press ok. thanks to Meanie for the original bluetooth-gui script.

6
General Discussion / Visualq Source
« on: December 12, 2006, 04:59:58 am »
anyone been able to find the source code for visualq?

7
Qt/Qtopia / Tximage 0.2
« on: November 25, 2006, 06:49:30 pm »
I have tried Dev-Img-1.6 and Meanies zGCC using 'tmake -o Makefile tximage.pro' seems to create the Makefile but.....when I go to compile it using 'make' a ton of errors occurs, any ideas? I was trying to resize the thumbnails to take advantage of the extra space in landscape mode.

8
General Discussion / Wmv And Mplayer
« on: October 17, 2006, 04:30:52 am »
anyone got wmv files to play under stock rom with mplayer? i know there are codecs that allow playing of these files under linux, but are they processor specific(the codecs)?

9
General Discussion / Stratagus Bfm
« on: October 07, 2006, 12:35:10 am »
http://mandicor.org/

seems to work, add it to the list of other data that works, BOS and WCII

10
General Discussion / Odd Find
« on: September 15, 2006, 03:52:25 am »
I somehow remember everyone complaining about hancomm sheet always opening to 200%, well today I opened a sheet I saved in "Contents"(actually symlinked it I think) and guess what it actually retained the setting for 75%.....how odd..

11
General Discussion / Cryptoapi
« on: September 15, 2006, 01:33:34 am »
anyone happen to know Tetsu? maybe we can get him to enable the CryptoAPI in his kernel s we can get crypto support in losetup? I am going to try and compile the modules using the kernel source and the very old cryptoapi source. we'll see

12
Software / Mp3 To Wav File Conversion
« on: September 12, 2006, 05:24:13 am »
anyone know what will do this? mencoder? perhaps, or is there another alternative?

13
Linux Applications / Bestcrypt 1.6-6
« on: September 11, 2006, 03:37:49 am »
anyone have an idea on how to solve this?


misc.o: In function `LoadKeygens':
/hdd2/build_system/src_compile/bestcrypt/bcrypt/src/misc.c:617: undefined reference to `dlopen'
/hdd2/build_system/src_compile/bestcrypt/bcrypt/src/misc.c:617: relocation truncated to fit: R_ARM_PC24 dlopen


that way I can support an ipk for bestcrypt, without having to "tweak" it after installs

14
User Request for Applications / Losetup
« on: September 08, 2006, 03:56:06 am »
anyone seen the source code around, I cant seem to find it anywhere...

15
Python / Tkinter
« on: August 21, 2006, 02:03:26 am »
I used tkinter from another feed to add to Kopsis python image but still get _tkinter not found)err rather not configured for your install) any ideas on how to get this to work?

Pages: [1] 2 3 ... 14