A low cost credit card sized ARM11 based PC device developed by the Raspberry Pi foundation.
40
votes
5answers
13k views
Mono on Raspberry Pi
I've seen a lot of talk about running Mono/.NET code on the Raspberry Pi (Stack Overflow question MonoDevelop ARMv6 on Raspberry Pi). Has there been any succceses in actually running any Mono code on ...
29
votes
6answers
16k views
Cross-compilation for Raspberry Pi in GCC. Where to start?
TL/DR: Where can I find more information about building a GCC 4.7.0 cross-compiling toolchain for ARM (gnueabi) platform (intended to run on a Raspberry Pi device)?
I have just got a brand new ...
26
votes
4answers
10k views
MonoDevelop ARMv6 on Raspberry Pi
Will MonoDevelop compile to the ARMv6, mainly so I can get it running on my Raspberry Pi?
I've noted that Debian can run on the Raspberry Pi and Debian has a set of drivers for Mono.
So does this ...
16
votes
3answers
4k views
Cross-compiling Node.js for ARM6 (Raspberry Pi)
I'm trying to get node.js v0.7.9 to compile for the raspberry pi, but as node and v8 are quite large, I'm hoping to be able to cross-compile on another more powerful PC. I'm using the linux-x86 ...
12
votes
3answers
966 views
Async raspberry pi gpio events in nodejs
I connected a button to the Raspberry Pi GPIO ports:
The pi-gpio node js module allows only to pull the current status but not waiting
for a state change:
gpio.read(16, function(err, value) {
...
12
votes
1answer
444 views
Improving startup time of Clojure REPL with Leiningen on the Raspberry Pi
I got a Rasperry Pi 512 MB version (late 2012) and installed the Developer Preview of Java SE 8 for ARM on it. When I create a new Clojure project with Leiningen and launch the nREPL by doing lein ...
11
votes
1answer
360 views
Wrong result with log10 math function in armv6 on Raspberry Pi
I have this very simple code:
#include <stdio.h>
#include <math.h>
int main()
{
long v = 35;
double app = (double)v;
app /= 100;
app = log10(app);
printf("Calculated ...
10
votes
5answers
6k views
Any Java experience on Raspberry PI?
Is it possible to run average java app server on e.g. jboss or glassfish server on Raspberry pi? Any limitations? Does anyone have an experience in Java development for raspberry pi?
At least any ...
10
votes
3answers
2k views
DAC pops on Song Start/Stop in Raspbian
This has been a plaguing issue for the Raspberry Pi install of Raspbian (Debian Wheezy) since it was first built. Talking directly to the Raspberry Pi foundation and the Raspbian team has given me no ...
9
votes
6answers
4k views
Raspberry Pi cluster, neuron networks and brain simulation
Since the RBPI (Raspberry Pi) has very low power consumption and very low production price, it means one could build a very big cluster with those. I'm not sure, but a cluster of 100000 RBPI would ...
8
votes
3answers
941 views
DateTime.ToString in Mono return invalid date (“00/734718/0001 01:41:38”)
I am trying to get mono (Debian 2.10.8.1-5) to run properly on my raspberry pi with the raspbian distro ("Debian GNU/Linux wheezy/sid"). I have installed mono with apt-get install mono-complete.
...
8
votes
2answers
1k views
Tornado on Raspberry Pi to use websockets as well as monitor serial port Arduino communication
Essentially, what I'm hoping to achieve is a canvas based web interface to control an Arduino, via a Raspberry Pi. The use case is that a user navigates to raspberrypi:8080 which displays a canvas. ...
7
votes
5answers
608 views
PHP Not Executing from Webpage [but is fine from PHP-CLI] on a Raspberry Pi
Setup:
Raspberry Pi
nginx web server
PHP5 & PHP-CLI installed
My Python script "lights.py" is really cool because it turns on/off lights in my living room through a relay connected to an ...
6
votes
5answers
7k views
Cross-Compiling for RaspBerry Pi
With a RaspBerry Pi and from my computer, I'm trying to cross-compile a simple helloWorld written in C++. I'm using Code Sourcery toolchain for linux to compile.
When copy the helloWorld binary to ...
6
votes
1answer
885 views
meteor on armv6l (raspberry pi)
I like the look of meteor, never tried it before, thought it would make a great platform for a web dashboard on my raspberry pi. Tried the recommended installer and got this:
$ curl ...
6
votes
2answers
184 views
Python read output sound not input
Any clue on what the easiest way to read the system sound level is?
I'm planning on creating an equalizer made out of short led strips and hooking them up to an Arduino or RaspberryPi. I've seen a ...
5
votes
1answer
1k views
Learn Assembly Language using Raspberry Pi? [closed]
I did a bit of searching but couldn't find a definitive answer on this, so I am hoping I can get your opinion.
I would like to learn Assembly Language (ARM) - would the Raspberry Pi be a good choice ...
5
votes
1answer
3k views
OpenCV face detection is slow on Raspberry Pi
I am testing Raspberry Pi with OpenCV and Python coding. The video streaming works great (medium speed), but when I run face detection on the stream the CPU is pegged and refreshing the image is slow.
...
5
votes
1answer
312 views
How to configure the RaspberryPi's I2C clock to 100K on Linux
Can someone help to set the I2C clock to 100kHz on the RaspberryPi?
4
votes
2answers
1k views
Windows 7 and c++ : Cross compiling application for use on Raspberry Pi [closed]
I recently got a Raspberry Pi and I've installed the Raspbian “wheezy” image onto it. My main development machine is running Windows 7, and I'm using Qt Creator as my development environment. I'm ...
4
votes
1answer
218 views
Working around invalid conversion from const
I am compiling Percona (MySQL variant) on my Raspberry Pi, which has an ARM processor.
I've encountered an issue during compilation that has been reported, but nobody is willing to fix because ARM is ...
4
votes
2answers
257 views
How to publish a Web Service from VS 2010?
I have created a Web Service on VS 2012 .
Now what I want to do is to invoke this Web Service from a Client but the trick is that the client is running on another computer ( on Raspberry Pi computer ...
4
votes
1answer
3k views
Accessing the GPIO (of a raspberry pi) without ``sudo``
This question might not be specific to the raspberry pi, of course. Also, I'm relatively new to Linux.
I want to write a little library (in node.js, if that matters) to access the GPIO of the ...
4
votes
3answers
136 views
C program a button to perform a task once when pressed (latch)
I am relatively new to c and the Raspberry Pi and am trying simple programs. What I would like is when the button is pressed it printfs once and doesn't printf again until the button is pressed again, ...
4
votes
2answers
226 views
std::shared_future on Raspberry Pi toolchain
I'm trying to cross-compile a large project for the Raspberry Pi. I'm using a toolchain built by crosstool-ng, gcc version 4.7.3. The compilation chokes when it sees std::shared_future. I get this ...
4
votes
2answers
1k views
Options to read webcam using Python/Linux
I am looking to find a way to integrate a webcam into my python program.
I am running on a Raspberry Pi Model A OC'd to 900mHz, so the solution will need to be ARM compatible and (hopefully) ...
4
votes
1answer
2k views
How do I connect an Arduino Uno with Raspberry Pi using I²C
I'm trying to send data through the I²C interface from the Arduino Uno to the Raspberry Pi using I²C. This was the code I used.
In Arduino:
#include <Wire.h>
unsigned int watt;
unsigned int ...
4
votes
1answer
1k views
UPnP detection delay
I have RaspBMC installed on a Raspberry Pi, XBMC on a Window Laptop, and UPnPlay on my Android device. The Raspberry Pi is always on, and is intended to act as the server for the system.
IP Addresses ...
4
votes
1answer
736 views
JavaFx for ARM (Rasberry Pi / BeagleBoard)
I am facing a lot of issues porting an application to ARM platform. I tried Java Embedded SE which works for simple application but fails for audioplayer.
I read this
...
4
votes
1answer
166 views
Init a serial communication with c library open() causes TX to send one bit on RPi
I'm trying to set up a serial communication between the RPI and an FPGA. However, there is an issue when using the standard C library open() to init the serial interface: I'm using a scope to monitor ...
4
votes
0answers
202 views
Cross-compiling C++11 code for Raspberry Pi
I'm trying to port a large project, which makes heavy use of C++11 features, to the Raspberry Pi. The project uses CMAKE and I'm using crosstool-ng for the cross-compiling. I installed dependencies on ...
4
votes
2answers
763 views
JNA native support (/com/sun/jna/linux-arm/libjnidispatch.so) not found in resource path
I have started to build a java service which incorporates JNA to load a native C/C++ lib and i want to run the java service on the Raspberry PI aka arm platform. I have successfully built a stable ...
4
votes
1answer
265 views
sqlcipher ./configuration linux
I want to cross-compile SQL-Cipher with OpenSSL for my Raspberry Pi. I'm using the crosstool-ng as compiler toolchain.
./configure --enable-tempstore=yes CFLAGS="-DSQLITE_HAS_CODEC" ...
3
votes
2answers
123 views
Errors thrown in C++ basic program
I'm a bit of a newbie to C++, but I have some programming experience. I made a basic program, following a guide I found on t'internet. It compiled with g++ easily, but when I ran it it threw these ...
3
votes
3answers
1k views
Will Android run on the Raspberry PI? [closed]
There's so much power in this little beast it seems a great fit for Android - yet there's not much discussion anywhere regarding an Android port to it. Anyone know more?
3
votes
3answers
822 views
Distributed NoSQL database for Raspberry Pi with sharding and replication?
I am looking for a database with the following features:
Runs on Raspberry Pi
NoSQL (Key-Value-Store)
Transaction support
Distributed
Supports sharding
Supports automatically managed data redundancy ...
3
votes
1answer
68 views
Python program possibly causing filesystem errors?
Overview:
Hi. I have a python program that controls a motion sensor between the hours of 9-5. This program is running on a raspberry pi, stored on SD media with occidentals v2.1 Debian OS. The ...
3
votes
2answers
292 views
Python: IDE in one computer, interpreter in other
I'd like to know if it is possible to have the interpreter of Python installed in one computer and having an IDE "linked" to that interpreter in other one, i.e.: I want to program some scripts for my ...
3
votes
3answers
208 views
Writing ARM machine instructions and executing them from C (On the Raspberry pi)
I'm trying to write some self modifying code in C and ARM. I previously asked a similar question about MIPS and am now trying to port over the project to ARM.
My system := Raspbian on raspberry pi, ...
3
votes
1answer
182 views
understanding MSB LSB
I am working on converting a program that runs on a specific micro-controller and adapt it to run on the raspberry pi. I have successfully been able to pull values from the sensor I have been working ...
3
votes
1answer
211 views
Manipulating a bitmap image in memory with linux
I've done a bit of research but haven't found anything useful so far.
In short I would like to be able to create a bitmap/canvas in memory and use an api which has functions for drawing primitive ...
3
votes
2answers
869 views
Hosting asp.net on mono xsp - raspberry pi
I'm trying to run the sample application that comes with xsp package on my Raspberry Pi (running arch linux), but unfortunately apparently the connection is closed before any http response is sent to ...
3
votes
2answers
114 views
Unable to read from Serial Port using C# Mono (RaspberryPi)
Hello stack overflow community,
I'm attempting to write a C# library which looks at all available USB serial ports on a Raspberry Pi so that I can enumerate, identify and communicate with a set of ...
3
votes
2answers
99 views
Losing data in received serial string
So part of a larger project needs to receive a long hex character string from a serial port using a raspberry pi. I thought I had it all working but then discovered it was losing a chunk of data in ...
3
votes
2answers
126 views
Python Targeting System
I am working on a project where I need to program a Raspberry Pi to grab an image from a webcam, search that image for a box and identify what box it is by it's size ratio. The boxes will be a unique ...
3
votes
1answer
904 views
Soft-float version of Raspbian does not boot
I downloaded the hard float image of Raspbian here:
http://www.raspberrypi.org/downloads
I copied the recommended hard-float image on an SD card and the Raspberry Pi boots fine with it.
Then I ...
3
votes
1answer
846 views
Setting up i2c on Raspberry Pi for C?
I'm setting up i2c for an Application written in C, but I've not been able to find any how-to's for it. I'm running a model-b Raspberry Pi on Debian 6 with LXDE. Can anybody show me how to set up i2c ...
3
votes
2answers
2k views
Dirty Regions on XBMC on Raspberry PI
I have a raspberry pi and have loaded the latest standalone from raspbmc.com. When using XBMC, I see that the CPU usage is always above 90%. After looking at the XBMC wiki and FAQs, dirty regions seem ...
3
votes
1answer
551 views
New machine types on qemu
Can a new machine type be added for qemu-system-arm -M <MachineType> without having to recompile qemu or write code? Are there docs to do this? I would like to be able to emulate raspberry pi ...
3
votes
1answer
86 views
Raspberry PI, raw reading a register value in C
Can someone please show me some example on how to read values from Raspberry Pi registers?
I need to check byte in AUX_MU_LSR_REG (0x7E21 5054) but i don't know how to do this without usage of any ...


