Questions tagged [pandaboard]

The PandaBoard is a low-power single-board computer development platform based on the Texas Instruments OMAP4430 system on a chip (SoC).

Official Documentation and Software Releases by Texas Instruments can be found here: Omappedia::Pandaboard

52 questions
0
votes
1 answer

L2 Cache lock down on Pandaboard (Cortex-A9)

Is there a way to lock L2 cache on Pandaboard ES with running Ubuntu there? TRM says that it is possible, but I don't know it feasible on Pandaboard. I've tried to compile kernel object and set there bits in Auxiliary Control Register using cp15,…
0
votes
1 answer

UART4 with Pandaboard and Arch Linux

I'm trying to use UART4 in my Pandaboard with Arch Linux. I'm using the latest kernel (4.2.0-2-ARCH) so I can't configure MUX in the old way using omap_mux, I have to do it using Device Tree Overlay. This is new to me so it's hard, I've never done…
Andres
  • 6,080
  • 13
  • 60
  • 110
0
votes
1 answer

can't connect panda-es to HDMI/DVI display

I am getting the following pop up message on my monitor while connecting HDMI cable to panda to view console on my HDMI display. The current input timing is not supported by the monitor display. Please change your timing to 1920x1080@60Hz or any…
zappy
  • 1,864
  • 3
  • 18
  • 36
0
votes
2 answers

Problems setting Eclipse IDE for cross-compiling for Arm based PandaBoard-ES

I am trying to set up the Eclipse IDE for cross-compiling C++ code, which should run on the Arm based PandaBoard-ES device. My machine runs an 64Bit Fedora 20. I followed this how-to and after installing the 32Bit version of glibc (glibc.i686) I…
karlitos
  • 1,604
  • 3
  • 27
  • 59
0
votes
0 answers

cross-compile from desktop ubuntu to Pandaboard ubuntu c++

I am trying to cross-compile a simple c++ program from my ubuntu 11.10 64bit desktop machine to run on my panda board running Ubuntu12.04 but cannot get the program to run. I can successfully build and run the program on the panda board by…
user1400716
  • 1,126
  • 5
  • 13
  • 32
0
votes
0 answers

detect change in pseudo files Linux

I am trying to read a value from a pseudo file in a linux system. Basically, I am using a pandaboard and trying to detect a change on GPIO pin. for the first time when I thought about it, I though of having a while(1) loop and keep opening the file…
I.el-sayed
  • 325
  • 1
  • 5
  • 18
0
votes
1 answer

How to install Arch linux on pandaboard

Im having problems with the installation. I tried this already , http://archlinuxarm.org/platforms/armv7/ti/pandaboard i don't know if im doing it correctly because when i connect it to the HDMI and the tv, nothing seems to work.
0
votes
1 answer

Cross-compiling Hello World for Pandaboard Linaro Linux

I am trying to cross-compile a simple application for the Pandaboard running Linaro Android Linux, v13.04. I am using the Linaro tool-chain in a Ubuntu 12.04 virtual machine. I can modify and cross-compile the kernel successfully, and compile…
Digilee
  • 191
  • 1
  • 2
  • 11
0
votes
0 answers

Is it possible to make PandaBoard as Bluetooth Headset

I have a requirement to make Pandaboard as Bluetooth Headset. Is it possible to achieve this? I followed below URL to flash the source code into sdcard. Before flashing I modified system/etc/bluetooth/audio.conf file. In the audio.config file I…
Deepak Ramesh
  • 403
  • 1
  • 5
  • 13
0
votes
1 answer

Pandaboard bootup issue

I have panda board Rev A6. I tried to port JB 4.2.1 on it. But it could not boot up. If I tried the same thing with my older panda board Rev A4 it works fine. After some googling I come to know that both have different memory. I had made changes…
0
votes
1 answer

Getting an error 'integer expression expected', while comparing two integers

# Program which notifies the User through 'notify-send' when device temperature exceeds the threshold. #!/bin/bash Temp=adb shell cat /sys/devices/platform/omap/omap_temp_sensor.0/temperature if [ $Temp -gt 42000 ] then notify-send Temperature…
WEshruth
  • 769
  • 3
  • 16
  • 32
0
votes
2 answers

reading and writing a register linux device driver

I am writing a watchdog timer device driver for Pandaboard(Omap4) for educational purposes(I know the driver already exist). I want to know how I can access watchdog timer registers (e.g. WDT_WLDR(timer load register) has address offset 0x0000002C…
salman khalid
  • 11
  • 1
  • 3
0
votes
1 answer

Installing ROS on pcDuino (Lubuntu 12.04 ARM)

Last week, I've purchased a pcDuino. It comes with Lubuntu v12.04. In order to download, compile, and install ROS; I'm following the documentation of Pandaboard from this link http://www.ros.org/wiki/groovy/Installation/PandaBoard/Source . However,…
mozcelikors
  • 2,582
  • 8
  • 43
  • 77
0
votes
1 answer

Colouring 3D objects

I have many objects in my scene and I want to colour every object with different colours. Now, my fragment shader consists of : void main (void)\ {\ gl_FragColor = vec4(0.82, 0.41, 0.12 ,1.0);\ }"; and the vertex shader consists of : attribute…
Hellboy
  • 1,199
  • 2
  • 15
  • 33
0
votes
1 answer

Camera in OpenGL ES

I have a scene as follows : A 3D box with its base centered at origin and four rectangles surrounding the base of the box. We can think it as a building with streets on all its four sides. I want to get the projection view model matrix. I have…
Hellboy
  • 1,199
  • 2
  • 15
  • 33