May I tell you my own story ?
CS mount camera module is well plugged into CSI connector, correctly enabled in raspi-config and though isn't detected on my B+ board
As I read here and there, everything should work.
I've been verifying raspi-blacklist.conf and none of the two lines spi or i2c are commented out.
A friend of mine which got both revB and revB+ boards confirms that his CS camera doesn't work either on RPi B+
What I had been testing is that the very first time raspistill runs, the camera LED blinks shortly then never again after.
Wandering around GPIO pin # assignment, I succeeded in lighting the camera LED by running the following Python file:
Code: Select all
#!/usr/bin/env python
import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setwarnings(False)
GPIO.setup(41,GPIO.OUT,initial=True)
This doesn't help in running rapsistill either...
Running
Code: Select all
vcgencmd get_cameraDoes it help in finding a common solution?
Thank you for your inputs.
