Re: [beagleboard] ULCD7 Not working on Ubuntu

2014-07-11 Thread ozkannn01
Hi again,

Just let you know about a quick solution on this issue. 

Try to use request_irq() instead of request_threaded_irq(), this solves the 
issue and you will get the irq function called when press the screen. 
However, you need to modify the remaining part of driver file to handle 
press sequences in a proper way.  

Regards,
Ozgur.

On Thursday, July 10, 2014 3:47:24 PM UTC+1, ozka...@gmail.com wrote:


 Hi,

 I have been trying to enable TSC2007 (ULCD) in Kernel 3.7.10-x13 (Robert 
 Nelson) but having an error in tsc2007.c as follows:
  tsc2007: probe of 2-0049 failed with error -22 

 After investigated further discovered that the root of error message seems 
 in /kernel/irq/manage.c in request_threaded_irq function as 
 !irq_settings_can_request. Since this call returns an error, the driver 
 probe returns with the failure.

 Any reply or guidance will be greatly appreciated.

 Regards,
 Ozkan.



 On Saturday, April 6, 2013 10:06:56 PM UTC+1, RobertCNelson wrote:

 On Sat, Apr 6, 2013 at 3:36 PM,  wil...@airinet.com wrote: 
  Good afternoon everyone, I hope everyone is well! 
  
  I have a Beagleboard setup that I am trying to get a touchscreen 
 working on. 
  Here's a list of our hardware: 
  
  ULCD7 (Circuit Co) 
  Beagleboard xM 
  Running Ubuntu 12.10 
  
  -- 
  root@WallController:~# uname -a 
  Linux WallController 3.7.10-x10 #1 SMP Thu Mar 28 13:45:57 UTC 2013 
 armv7l 
  armv7l armv7l GNU/Linux 
  -- 
  
  The kernel Command Line indicates that it is detecting bbtoys-ulcd as 
  buddy2: 
  
  -- 
  [0.00] Kernel command line: console=ttyO2,115200n8 vram= 
  omapfb.mode=dvi:800x480MR-16@60 omapdss.def_disp=dvi 
 root=/dev/mmcblk0p2 ro 
  rootfstype=ext4 rootwait fixrtc buddy=spidev buddy2=bbtoys-ulcd 
 camera=none 
  wl12xx_clk= 
  -- 
  
  I've confirmed that there IS support for the ULCD7 in the linux kernel 
  (tsc2007). I can even see the driver try to initialize the ULCD7 
  
  -- 
  root@WallController:~# dmesg | grep tsc 
  [0.126098] Beagle expansionboard: initializing touchscreen: tsc2007 
  [   26.450286] tsc2007 2-0048: irq 0 busy? 
  [   26.454467] tsc2007: probe of 2-0048 failed with error -22 

 Maybe try bumping the i2c speed down from 400 to 200... 

 This is the patch in the v3.7.x branch that enables the screen and 
 touch controller.. 


 https://github.com/RobertCNelson/stable-kernel/blob/v3.7.x/patches/omap_beagle_expansion/0005-Beagle-expansion-add-CircuitCo-ulcd-Support.patch
  

 Note, it looks like v3.9-rcX is doing the same thing.. 

 Regards, 

 -- 
 Robert Nelson 
 http://www.rcn-ee.com/ 



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] ULCD7 Not working on Ubuntu

2014-07-11 Thread ozkannn01
Hi again,

Just let you know about a quick solution on this issue. 

Try to use request_irq() instead of request_threaded_irq(), this solves the 
issue and you will get the irq function called when press the screen. 
However, you need to modify the remaining part of driver file to handle 
press sequences in a proper way.  


On Thursday, July 10, 2014 3:47:24 PM UTC+1, ozka...@gmail.com wrote:


 Hi,

 I have been trying to enable TSC2007 (ULCD) in Kernel 3.7.10-x13 (Robert 
 Nelson) but having an error in tsc2007.c as follows:
  tsc2007: probe of 2-0049 failed with error -22 

 After investigated further discovered that the root of error message seems 
 in /kernel/irq/manage.c in request_threaded_irq function as 
 !irq_settings_can_request. Since this call returns an error, the driver 
 probe returns with the failure.

 Any reply or guidance will be greatly appreciated.

 Regards,
 Ozkan.



 On Saturday, April 6, 2013 10:06:56 PM UTC+1, RobertCNelson wrote:

 On Sat, Apr 6, 2013 at 3:36 PM,  wil...@airinet.com wrote: 
  Good afternoon everyone, I hope everyone is well! 
  
  I have a Beagleboard setup that I am trying to get a touchscreen 
 working on. 
  Here's a list of our hardware: 
  
  ULCD7 (Circuit Co) 
  Beagleboard xM 
  Running Ubuntu 12.10 
  
  -- 
  root@WallController:~# uname -a 
  Linux WallController 3.7.10-x10 #1 SMP Thu Mar 28 13:45:57 UTC 2013 
 armv7l 
  armv7l armv7l GNU/Linux 
  -- 
  
  The kernel Command Line indicates that it is detecting bbtoys-ulcd as 
  buddy2: 
  
  -- 
  [0.00] Kernel command line: console=ttyO2,115200n8 vram= 
  omapfb.mode=dvi:800x480MR-16@60 omapdss.def_disp=dvi 
 root=/dev/mmcblk0p2 ro 
  rootfstype=ext4 rootwait fixrtc buddy=spidev buddy2=bbtoys-ulcd 
 camera=none 
  wl12xx_clk= 
  -- 
  
  I've confirmed that there IS support for the ULCD7 in the linux kernel 
  (tsc2007). I can even see the driver try to initialize the ULCD7 
  
  -- 
  root@WallController:~# dmesg | grep tsc 
  [0.126098] Beagle expansionboard: initializing touchscreen: tsc2007 
  [   26.450286] tsc2007 2-0048: irq 0 busy? 
  [   26.454467] tsc2007: probe of 2-0048 failed with error -22 

 Maybe try bumping the i2c speed down from 400 to 200... 

 This is the patch in the v3.7.x branch that enables the screen and 
 touch controller.. 


 https://github.com/RobertCNelson/stable-kernel/blob/v3.7.x/patches/omap_beagle_expansion/0005-Beagle-expansion-add-CircuitCo-ulcd-Support.patch
  

 Note, it looks like v3.9-rcX is doing the same thing.. 

 Regards, 

 -- 
 Robert Nelson 
 http://www.rcn-ee.com/ 



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] ULCD7 Not working on Ubuntu

2014-07-10 Thread ozkannn01

Hi,

I have been trying to enable TSC2007 (ULCD) in Kernel 3.7.10-x13 (Robert 
Nelson) but having an error in tsc2007.c as follows:
 tsc2007: probe of 2-0049 failed with error -22 

After investigated further discovered that the root of error message seems 
in /kernel/irq/manage.c in request_threaded_irq function as 
!irq_settings_can_request. Since this call returns an error, the driver 
probe returns with the failure.

Any reply or guidance will be greatly appreciated.

Regards,
Ozkan.



On Saturday, April 6, 2013 10:06:56 PM UTC+1, RobertCNelson wrote:

 On Sat, Apr 6, 2013 at 3:36 PM,  wil...@airinet.com javascript: 
 wrote: 
  Good afternoon everyone, I hope everyone is well! 
  
  I have a Beagleboard setup that I am trying to get a touchscreen working 
 on. 
  Here's a list of our hardware: 
  
  ULCD7 (Circuit Co) 
  Beagleboard xM 
  Running Ubuntu 12.10 
  
  -- 
  root@WallController:~# uname -a 
  Linux WallController 3.7.10-x10 #1 SMP Thu Mar 28 13:45:57 UTC 2013 
 armv7l 
  armv7l armv7l GNU/Linux 
  -- 
  
  The kernel Command Line indicates that it is detecting bbtoys-ulcd as 
  buddy2: 
  
  -- 
  [0.00] Kernel command line: console=ttyO2,115200n8 vram= 
  omapfb.mode=dvi:800x480MR-16@60 omapdss.def_disp=dvi root=/dev/mmcblk0p2 
 ro 
  rootfstype=ext4 rootwait fixrtc buddy=spidev buddy2=bbtoys-ulcd 
 camera=none 
  wl12xx_clk= 
  -- 
  
  I've confirmed that there IS support for the ULCD7 in the linux kernel 
  (tsc2007). I can even see the driver try to initialize the ULCD7 
  
  -- 
  root@WallController:~# dmesg | grep tsc 
  [0.126098] Beagle expansionboard: initializing touchscreen: tsc2007 
  [   26.450286] tsc2007 2-0048: irq 0 busy? 
  [   26.454467] tsc2007: probe of 2-0048 failed with error -22 

 Maybe try bumping the i2c speed down from 400 to 200... 

 This is the patch in the v3.7.x branch that enables the screen and 
 touch controller.. 


 https://github.com/RobertCNelson/stable-kernel/blob/v3.7.x/patches/omap_beagle_expansion/0005-Beagle-expansion-add-CircuitCo-ulcd-Support.patch
  

 Note, it looks like v3.9-rcX is doing the same thing.. 

 Regards, 

 -- 
 Robert Nelson 
 http://www.rcn-ee.com/ 


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: Sound output - Ubuntu on BBxm

2014-05-22 Thread ozkannn01

Just try to play with parameters available in alsamixer.
# alsamixer

Regards,
Ozkan.


On Friday, February 28, 2014 5:18:20 PM UTC, gmsmith...@gmail.com wrote:

 Hi all,

 I am running a Ubuntu 12.04LTS on BBxm for some time now and am very 
 pleased with it. It does, however, lacked the sound output feature. Did 
 this got fixed in later version like Ubuntu 13 images?

 Thanks in advance.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: QT for Beagleboard xM

2014-02-04 Thread ozkannn01
Just a quick note for the one running Ubuntu on target:
 - Install libqt4-core, libqt4-dev, libqt4-gui and qt4-dev-tools by 
using synaptic package manager on BB-xM
 - qmake - generates Makefile automatically
 - Qt Designer - GUI layout and design
 - Qt Creator - a cross-platform IDE

As an example if you have a main.cpp the following command lines build the 
executable on BB-xM
 - qmake -project
   // creates project file
 - qmake
   // creates Makefile
 - make
   // compile and build main.cpp
 - run the executable generated in the folder.

Regards,
Ozkan.


On Friday, September 9, 2011 3:31:53 PM UTC+1, Melahat Tunalı Karakaş wrote:


 hm, on the target now ubuntu is running, i could build and run my first 
 application on target by following steps on http://
 treyweaver.blogspot.com/2010/10/setting-up-qt-development-envhttp://treyweaver.blogspot.com/2010/10/setting-up-qt-development-envi.
  and 
 copying all folder on target machine. also copying my first application. 
  but where i run the app with ./myFirst -qws it is opening, but after 
 then, the app does not work. when i scroll the mouse on the app,  it 
 freezes and begins to shows the screen that is under the app on the screen. 
 what can be the problem???


 2011/9/9 beagleguy x5...@unb.ca javascript:

 Just on target

 On Sep 9, 2:26 am, Melahat Tunalı Karakaş meltun...@gmail.com wrote:
  For make this, must I use Angstrom on host and target?
 
  2011/9/9 ZubairLK zubair.lutful...@gmail.com
 
 
 
 
 
 
 
   I'd recommend using narcissus to create your Angstrom image.
   Use it's toolchain. And make narcissus install QT on angstrom.
 
   On Sep 8, 4:25 pm, Melahat Tunalı Karakaş meltun...@gmail.com 
 wrote:
thanx, it works
 
2011/9/8 Jyothi jyothik41...@gmail.com
 
 On Sep 8, 12:41 pm, Melahat Tunalı Karakaş meltun...@gmail.com
 wrote:
  Hi, i have Ubuntu Natty host PC and BB xM running Ubuntu Natty 
 also.
   I
 have
  tried to install QT on my host machine to develop applications 
 for my
   BB.
 I
  have followed steps explained inhttp://
 treyweaver.blogspot.com/2010/10/setting-up-qt-development-envi...
   andhttp://processors.wiki.ti.com/index.php/Building_Qt. But it
 continues
  to give me errors such as no tool chain can produce code..., or
   libc.so
 not
  found and so on.
 
  1- Which toolchain i must use?
  2- Which file i must copy to BB?
  3- Is it so hard to develop application for BB running Ubuntu?
 
 Hi,
 
 1.Follow the Treyweaver blog and use the required toolchain 
 mentioned
 in the below link
 
http://www.angstrom-distribution.org/toolchains/
 
 2.After configuring qt in your host system the output files wil be
 present in /opt/qt-arm directory. So copy all the files in 
 /opt/qt-arm
 directory  to the beagleboard
 
 Regards,
 Jyothi
 TenetTechnetronics
 
http://tenettech.com/
http://tenettech.com/blogspot/
 
 --
 You received this message because you are subscribed to the Google
   Groups
 Beagle Board group.
 To post to this group, send email to 
 beagl...@googlegroups.comjavascript:
 .
 To unsubscribe from this group, send email to
 beagleboard...@googlegroups.com javascript:.
 For more options, visit this group at
http://groups.google.com/group/beagleboard?hl=en.
 
   --
   You received this message because you are subscribed to the Google 
 Groups
   Beagle Board group.
   To post to this group, send email to 
   beagl...@googlegroups.comjavascript:
 .
   To unsubscribe from this group, send email to
   beagleboard...@googlegroups.com javascript:.
   For more options, visit this group at
  http://groups.google.com/group/beagleboard?hl=en.

 --
 You received this message because you are subscribed to the Google Groups 
 Beagle Board group.
 To post to this group, send email to beagl...@googlegroups.comjavascript:
 .
 To unsubscribe from this group, send email to 
 beagleboard...@googlegroups.com javascript:.
 For more options, visit this group at 
 http://groups.google.com/group/beagleboard?hl=en.




-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] ITU-R BT 656 compatible camera interface

2013-12-18 Thread ozkannn01
Hi there,

I just would like to share my experience on enabling BT.656 support in BBxM 
where Kernel 3.7.13 (stable-kernel) is in use. The changes made were inside 
of omap3isp and board-omap3beagle. Basically bridge and bt656 parameters 
were missing. The parallel bridge needs to be disable to collect YCbCr8 
input data. In order to do these configuration in ccdc_config_sync_if() and 
ccdc_configure() functions, you can check out the latest version of 
ispccdc.c in TI Kernel distribution.

Regards,
Ozkan.




-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Ubuntu SGX Install issue

2013-11-27 Thread ozkannn01
Hi,

I have BB-xM and just want to check SGX acceleration. 

Environment: BBxM - Ubuntu 12-10 LXDE - Kernel 3.7.10-x13 

To do that I have followed the steps written in 
http://elinux.org/BeagleBoardUbuntu#SGX_Video_Acceleration. 
Since there is no install-image.sh I have copied the tar files into my SD 
Card manually. 

However, when I run test scripts in /usr/bin/armhf/es5.0 in BB-xM, I am 
getting an error says error while loading shared libraries: 
/usr/lib/libsrv_um.so: file too short. Then, I have realized that there is 
no .ko (bufferclass_ti, omaplfb, pvrsrvkm) and also libsrv_um.so file size 
is 0 in the filesystem in BBxM. What did I wrong?

Any help would be greatly appreciated.

Regards,
Ozkan.


On Monday, June 7, 2010 1:57:22 AM UTC+1, RobertCNelson wrote:

 On Sun, Jun 6, 2010 at 6:08 PM, Michael Gibs gib...@gmail.comjavascript: 
 wrote:
  Hello
 
  this is what I get on my Rev C3 board:
 
  ubuntu@beagleboard:~/SGXFull$ uname -a
  Linux beagleboard 2.6.33.4-l3 #1 PREEMPT Fri May 14 05:45:42 UTC 2010

 You haven't met the minimal kernel requirements:
 http://elinux.org/BeagleBoardUbuntu#SGX_Video_Acceleration

 Upgrade to 2.6.34 +

 http://rcn-ee.net/deb/lucid/v2.6.34-l1/install-me.sh

 (on beagle) /bin/bash install-me.sh

  armv7l GNU
  ubuntu@beagleboard:~/SGXFull$ ls
  create_sgx_package.download
  OMAP35x_Graphics_SDK_setuplinux_3_01_00_06.bin
  GFX_3_01_00_06_libs.tar.gz   run-SGX.sh
  GFX_Linux_SDKSDK
  GFX_Linux_SDK.tar.gz SDK_BIN
  install-SGX.sh   target_libs.tar.gz
  ubuntu@beagleboard:~/SGXFull$ ./install-SGX.sh
  Extracting target files to rootfs
  update-rc.d: warning: /etc/init.d/pvr missing LSB information
  update-rc.d: see http://wiki.debian.org/LSBInitScripts
   System start/stop links for /etc/init.d/pvr already exist.
  ubuntu@beagleboard:~/SGXFull$ ./run-SGX.sh
  Stopping PVR
  Starting PVR
  FATAL: Module omaplfb not found.
  FATAL: Module bufferclass_ti not found.
  mknod: missing operand after `0'
  Try `mknod --help' for more information.
  chmod: cannot access `/dev/pvrsrvkm': No such file or directory
  mknod: missing operand after `0'
  Try `mknod --help' for more information.
  chmod: cannot access `/dev/bc_cat': No such file or directory
  Starting SGX fixup for ES3.x
 
  Regards
 
  --
  You received this message because you are subscribed to the Google 
 Groups Beagle Board group.
  To post to this group, send email to beagl...@googlegroups.comjavascript:
 .
  To unsubscribe from this group, send email to 
 beagleboard...@googlegroups.com javascript:.
  For more options, visit this group at 
 http://groups.google.com/group/beagleboard?hl=en.
 
 

 -- 
 Robert Nelson
 http://www.rcn-ee.com/



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Using gst-dsp Video Encoding/Decoding

2013-11-20 Thread ozkannn01
Hi again,

Just a quick update regarding to my experience so far, it is better to 
implement a program rather than trying to use the scripts if you would like 
to know the details of how gstreamer is working. One of the good 
document/reference on this subject is available in 
docs.gstreamer.com/display/GstSDK/Home.

Regards,
Ozkan. 

On Thursday, July 25, 2013 9:06:28 AM UTC+1, ozka...@gmail.com wrote:

 Hi again,

 Does /dev/video0 exist?
 $ ls /dev/video0
 Yes, I confirm that video0-6 available in /dev/. LI5M03 camera established 
 into the board and I'm getting its video with the following comment:
 mplayer tv:// -tv driver=v4l2:device=/dev/video6:out fmt+uyvy

 I get the same error with video6 as:
 root@arm:~/test# gst-launch v4l2src device=/dev/video6 ! dspmp4venc 
 ! filesink location=./myfile.mp4

 what does 'dmesg' say about v4l devices available?
 I just run dmesg | grep v4l, nothing listed unfortunately.

 Any idea?

 Regards,
 Ozkan.


 On Wednesday, July 24, 2013 11:09:53 AM UTC+1, Victor Manuel Jáquez Leal 
 wrote:

 On Wed, Jul 24, 2013 at 11:56 AM,  ozka...@gmail.com wrote: 
  Hi there, 
  
 A simple pipeline to test would be like this: 
  
 gst-launch v4l2src device=/dev/video0 ! dspmp4venc ! filesink 
 location=./myfile.mp4 
  
  When I try this command I have got the following error: 
  
  root@arm:~/test# gst-launch v4l2src device=/dev/video0 ! dspmp4venc ! 
  filesink location=./myfile.mp4 
  Setting pipeline to PAUSED ... 
  ERROR: Pipeline doesn't want to pause. 
  ERROR: from element /GstPipeline:pipeline0/GstV4l2Src:v4l2src0: Device 
  '/dev/video0' is not a capture device. 
  Additional debug info: 
  v4l2_calls.c(515): gst_v4l2_open (): 
  /GstPipeline:pipeline0/GstV4l2Src:v4l2src0: 
  Capabilities: 0x402 
  Setting pipeline to NULL ... 
  Freeing pipeline ... 


 Does /dev/video0 exist? 

 $ ls /dev/video0 

 If so, does it represent a video capture device? are there more 
 /dev/video*? what does 'dmesg' say about v4l devices available? 

 Also you should ask to the mailing list, not to me. 



  
  FYI: I have confirmed gst-inspect and also dsp-test seems working 
 fine. 
  
  Any idea why I'm getting an error from the pipeline? 
  Thanks in advance. 
  
  Ozkan. 
  
  On Tuesday, April 26, 2011 8:58:09 AM UTC+1, Victor Manuel Jáquez Leal 
  wrote: 
  
  Hi, 
  
  I guess you first need to read about gstreamer: 
  http://gstreamer.freedesktop.org/documentation/ 
  
  Now, using the shell in the beagle, you can execute gst-inspect, which 
  is a tool to list and introspect the gstreamer elements that you have 
  installed in the board. 
  
  For example, in my setup: 
  
  $ gst-inspect | grep dsp 
  dvdspu:  dvdspu: Sub-picture Overlay 
  dsp:  dspdummy: DSP dummy element 
  dsp:  dspvdec: DSP video decoder 
  dsp:  dspadec: DSP audio decoder 
  dsp:  dsph263enc: DSP video encoder 
  dsp:  dspmp4venc: DSP MPEG-4 video encoder 
  dsp:  dspjpegenc: DSP video encoder 
  dsp:  dsph264enc: DSP video encoder 
  dsp:  dspvpp: DSP VPP filter 
  
  As you can see I've 3 video encoders: dsph263enc, dsph264enc and 
  dspmp4venc 
  
  If you run 'gst-inspect myencoder' you will get myencoder's details 
  and parameters. 
  
  A simple pipeline to test would be like this: 
  
  gst-launch v4l2src device=/dev/video0 ! dspmp4venc ! filesink 
  location=./myfile.mp4 
  
  I don't have a camera, so I can't test this pipeline right now, but, 
  in theory, it should work. 
  
  Afterwards you would craft more complex pipelines for audiovideo 
  recording or so. 
  
  vmjl 
  
  On Mon, Apr 25, 2011 at 5:58 PM, Jeff jeff@gmail.com wrote: 
   I'm running PTAMM on my BeagleBoard xM-revB and it uses mpeg 
 encoding/ 
   decoding to stream video from a webcam while crunching data and 
   displaying mappings using OpenGL. Currently the video stream is very 
   slow so I want to try to modify the program so that the DSP handles 
   all of the video streaming. I have gst-dsp setup and I have verified 
   that the DSP is working, I'm just wondering where to start as far as 
   implementing the gst-dsp encoder/decoder into my project. Any help 
   would be appreciated! 
   
   -- 
   You received this message because you are subscribed to the Google 
   Groups Beagle Board group. 
   To post to this group, send email to beagl...@googlegroups.com. 
   To unsubscribe from this group, send email to 
   beagleboard...@googlegroups.com. 
  
   For more options, visit this group at 
   http://groups.google.com/group/beagleboard?hl=en. 
   
   



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: BeagleBone running ubuntu and connected to internet using 3G usb

2013-10-29 Thread ozkannn01
If needed the followings work fine for Three Mobile (Huawei) USB Dongle.

$ cat /etc/wvdial.conf
[Dialer Defaults]
Init1 = ATZ
Init2 = ATQ0 V1 E1 S0=0 C1 D2 +FCLASS=0
Stupid Mode = 1
Modem Type = Analog Modem
ISDN = 0
New PPPD = yes
Phone = *99#
Modem = /dev/ttyUSB0
Username = three
Password = three
Dial Command = ATDT
Baud = 9600

[Dialer three]
Init2 = ATZ
Init3 = ATQ0 V1 D2 C1 S0=0 +IFC=2,2
Init5 = AT+CGDCONT=1,IP,3internet
ISDN = 0
Modem = /dev/ttyUSB0
Modem Type = Analog Modem
Baund = 460800

$wvdial three


Regards,
Ozkan.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] H264 Encoding in BB-xM...

2013-10-28 Thread ozkannn01
Hi,

I am currently using Ubuntu 12.10, Kernel 3.7.10-x13 where gst-dsp is 
enabled. I'm tasked to encode the video camera output (UYVY) to H264 in 
BB-xM. I see that there is no related dll64P (h264venc_sn.dll64P) available 
in /lib/dsp. Also, no H264 encoding supported in ffmpeg or avconv (ffmpeg 
-codecs | grep H.264).

So, how can I proceed in this circumstances? I'm looking forward to some 
guidance. Thanks in advance.

Regards,
Ozkan.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: leopard lbcm5m1 not working

2013-10-23 Thread ozkannn01
I don't know which kernel you are currently using but it is worth to try to 
set camera=li5m03. Also, please check if the probe of mt9p031 driver is 
called. If it is not, you need to also check its I2C address settings. Hope 
this helps!

Regards,
Ozkan.


On Tuesday, October 22, 2013 5:01:32 AM UTC+1, chuansi...@gmail.com wrote:

 I am a freshman with beagleboard-xM Rev C. And i want use the lbcm5m1 
 camera moudle with angstrom OS which i made according to the website(
 http://circuitco.com/support/index.php?title=BeagleBoard-xM). After this, 
 i do like this:

 $opkg update

 $opkg install kernel-module-mt9p031

 $opkg install ntpdate

 $sync

 then, i set u-boot.bin in uEnv.txt like camera=lbcm5m03 or camera=lbcm5m1. 
 Unfortunately, both of them are failed.

 Now, i cann't find /dev/video1 in directory /dev. 

 i also compile the kernel according to the website 
 https://github.com/Aptina/BeagleBoard-xM/blob/master/MT9P031/Angstrom/README_MT9P031.txt,but
  
 after load the kernel, the information like this would come out :

 [  153.071716] mt9p031 2-0048: Unable to initialize sensor 
  

 [  154.132324] i2c_omap i2c_omap.2: controller timed out   
  

 [  155.351165] i2c_omap i2c_omap.2: controller timed out waiting for start 
 condh

 i will be grateful for your help. i hope someone will guide me or point my 
 errors.





-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.