... will there be support for the new raspberry pi2 because it has another SoC(bcm2836)
Some modules may have to be recompiled for the ARMv7 architecture, but there is a high degree of compatibility. The peripherals, including the grephics subsystem, seem to be the same. From http://www.raspberrypi.org/raspberry-pi-2-on-sale/ :
Raspberry Pi 2 ... featuring:
-- Roberto Waltman
--
You received this message because you are subscribed to the Google Groups "bcm2835" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bcm2835+u...@googlegroups.com.
To post to this group, send email to bcm...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/bcm2835/54D13427.1070807%40rwaltman.com.
For more options, visit https://groups.google.com/d/optout.
-- Roberto Waltman
And more here:
http://makezine.com/2015/02/02/eben-upton-raspberry-pi-2/
"The shift from an ARMv6 to ARMv7 is an important move for the Foundation as the original Pi was one of the few boards in widespread circulation using the older v6 architecture, and as a result some software projects had no plans to ever support it. Beyond that, efforts like Ubuntu Core for connected devices — which is only supported on ARMv7 and x86 — can be easily ported to the new generation of Pi boards.
However while the new board will need an ARMv7 kernel and modules, user space binaries built for ARMv6 can continue to be used, which means that the new board is fully software compatible with existing Raspberry Pi distributions of Linux."
To view this discussion on the web visit https://groups.google.com/d/msgid/bcm2835/54D1387E.8080902%40rwaltman.com.
For more options, visit https://groups.google.com/d/optout.
-- Roberto Waltman
Hello,
there is still not very much information. It would be helpful to know:
What version OS?
Is it the latest?
Did you try to run the blink example?
Transcript of the make and running blink?
Are you running the example as root?
Is there a
/proc/device-tree/soc/ranges
in your file system?
--
You received this message because you are subscribed to a topic in the Google Groups "bcm2835" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/bcm2835/2yEPp9aVMQY/unsubscribe.
To unsubscribe from this group and all its topics, send an email to bcm2835+u...@googlegroups.com.
To post to this group, send email to bcm...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/bcm2835/4065496.o50RmgMdaG%40zulu.
For more options, visit https://groups.google.com/d/optout.
-Wl,--whole-archive -lbcm2835 -Wl,--no-whole-archivepublic class Sht1xSensor {
native float getTemperatureInFahrenheit();
native float getTemperatureInCelcius();
native float getHumidity();
static {
System.loadLibrary("sht1x-java");
}
static public void main(String argv[]) {
Sht1xSensor sensor = new Sht1xSensor();
float temp = sensor.getTemperatureInFahrenheit();
float humidity = sensor.getHumidity();
System.out.println("The current temperature (degrees F) is: " + temp);
System.out.println("The current relative humidity is: " + humidity);
}
}#include "Sht1xSensor.h"
#include <RPi_SHT1x.h>
/*
* Class: Sht1xSensor
* Method: getTemperatureInCelcius
* Signature: ()F
*/
JNIEXPORT jfloat JNICALL Java_Sht1xSensor_getTemperatureInCelcius
(JNIEnv *env, jobject obj)
{
unsigned char noError = 1;
unsigned short int sensorTicks;
// Wait at least 11ms after power-up (chapter 3.1)
delay(20);
// Set up the SHT1x Data and Clock Pins
SHT1x_InitPins();
// Reset the SHT1x
SHT1x_Reset();
// Request Temperature measurement
noError = SHT1x_Measure_Start( SHT1xMeaT );
if (!noError) {
return;
}
// Read Temperature measurement
noError = SHT1x_Get_Measure_Value( (unsigned short int*) &sensorTicks );
if (!noError) {
return;
}
// Calculate the temp based on the reading
float tempReading = (float)sensorTicks;
return (jfloat)SHT1x_CalcTemperature(&tempReading);
}
/*
* Class: Sht1xSensor
* Method: getTemperatureInFahrenheit
* Signature: ()F
*/
JNIEXPORT jfloat JNICALL Java_Sht1xSensor_getTemperatureInFahrenheit
(JNIEnv *env, jobject obj)
{
jfloat tempInCelcius = Java_Sht1xSensor_getTemperatureInCelcius(env, obj);
return (jfloat) (tempInCelcius * 9 / 5) + 32;
}
/*
* Class: Sht1xSensor
* Method: getHumidity
* Signature: ()F
*/
JNIEXPORT jfloat JNICALL Java_Sht1xSensor_getHumidity
(JNIEnv *env, jobject obj)
{
}## A fatal error has been detected by the Java Runtime Environment:## SIGSEGV (0xb) at pc=0x64cedbe4, pid=11662, tid=1983800432## JRE version: Java(TM) SE Runtime Environment (8.0-b132) (build 1.8.0-b132)# Java VM: Java HotSpot(TM) Client VM (25.0-b70 mixed mode linux-arm )# Problematic frame:# C [sht1x+0x2be4] bcm2835_peri_write+0x14## Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again## If you would like to submit a bug report, please visit:# The crash happened outside the Java Virtual Machine in native code.# See problematic frame for where to report the bug.#
--------------- T H R E A D ---------------
Current thread (0x00879000): JavaThread "main" [_thread_in_native, id=11663, stack(0x76397000,0x763e7000)]
siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x00000027
Registers: r0 = 0x00000027 r1 = 0x00000000 r2 = 0x00800000 r3 = 0x00000027 r4 = 0x74319348 r5 = 0x742047d0 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x763e5ad4 r9 = 0x65765238 r10 = 0x00879000 fp = 0x763e5a1c r12 = 0x64cedbd0 sp = 0x763e5a18 lr = 0x64ced0f8 pc = 0x64cedbe4 cpsr = 0x60000010
Top of Stack: (sp=0x763e5a18)0x763e5a18: 763e5a34 74204754 763e5ad4 0087912c0x763e5a28: 0000052c 01000000 763e5a4c 742047f00x763e5a38: 763e5ad4 0087912c 00000001 000000000x763e5a48: 763e5ac8 742e73fc 00879000 000000000x763e5a58: 00000001 00000000 763e5bac 008776580x763e5a68: 763e5a8c 766cac98 742dd688 008790000x763e5a78: 763e5af8 763e5ad4 00000000 000000010x763e5a88: 763e5ac8 742e7274 00000000 00000005
Instructions: (pc=0x64cedbe4)0x64cedbc4: e8bd8008 64cf7698 64cef380 e1a020010x64cedbd4: e59f101c e1a03000 e5d11000 e35100000x64cedbe4: 05802000 012fff1e e59f0008 e1a010030x64cedbf4: eafffc52 64cf7698 64cef3a4 e1a02001
Register to memory mapping:
r0 = 0x000000270x00000027 is an unknown value
r1 = 0x000000000x00000000 is an unknown value
r2 = 0x008000000x00800000 is an unknown value
r3 = 0x000000270x00000027 is an unknown value
r4 = 0x743193480x74319348 is at code_begin+1800 in [CodeBlob (0x74318c08)]Framesize: 0BufferBlob (0x74318c08) used for native signature handlers
r5 = 0x742047d00x742047d0: Java_Sht1xSensor_getTemperatureInFahrenheit+0 in /usr/local/lib/libsht1x-java.so at 0x74204000
r6 = 0x000000000x00000000 is an unknown value
r7 = 0x000000000x00000000 is an unknown value
r8 = 0x763e5ad40x763e5ad4 is pointing into the stack for thread: 0x00879000
r9 = 0x657652380x65765238 is an unknown value
r10 = 0x008790000x00879000 is a thread
fp = 0x763e5a1c0x763e5a1c is pointing into the stack for thread: 0x00879000
r12 = 0x64cedbd00x64cedbd0: bcm2835_peri_write+0 in /usr/local/lib/sht1x at 0x64ceb000
sp = 0x763e5a180x763e5a18 is pointing into the stack for thread: 0x00879000
lr = 0x64ced0f80x64ced0f8: SHT1x_InitPins+0x14 in /usr/local/lib/sht1x at 0x64ceb000
pc = 0x64cedbe40x64cedbe4: bcm2835_peri_write+0x14 in /usr/local/lib/sht1x at 0x64ceb000
Stack: [0x76397000,0x763e7000], sp=0x763e5a18, free space=314kNative frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)C [sht1x+0x2be4] bcm2835_peri_write+0x14
[error occurred during error reporting (printing native stack), id 0xb]
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)j Sht1xSensor.getTemperatureInFahrenheit()F+0j Sht1xSensor.main([Ljava/lang/String;)V+9v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread ) 0x64e12000 JavaThread "Service Thread" daemon [_thread_blocked, id=11669, stack(0x64f0a000,0x64f5a000)] 0x008f5c00 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=11668, stack(0x64f5a000,0x64fda000)] 0x008f4400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=11667, stack(0x64fda000,0x6502a000)] 0x008d6400 JavaThread "Finalizer" daemon [_thread_blocked, id=11666, stack(0x651a1000,0x651f1000)] 0x008d1400 JavaThread "Reference Handler" daemon [_thread_blocked, id=11665, stack(0x651f1000,0x65241000)]=>0x00879000 JavaThread "main" [_thread_in_native, id=11663, stack(0x76397000,0x763e7000)]
Other Threads: 0x008cd000 VMThread [stack: 0x65241000,0x652c1000] [id=11664] 0x64e14000 WatcherThread [stack: 0x64d80000,0x64e00000] [id=11670]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap: def new generation total 4864K, used 808K [0x65a00000, 0x65f40000, 0x6a740000) eden space 4352K, 18% used [0x65a00000, 0x65aca018, 0x65e40000) from space 512K, 0% used [0x65e40000, 0x65e40000, 0x65ec0000) to space 512K, 0% used [0x65ec0000, 0x65ec0000, 0x65f40000) tenured generation total 11008K, used 0K [0x6a740000, 0x6b200000, 0x74200000) the space 11008K, 0% used [0x6a740000, 0x6a740000, 0x6a740200, 0x6b200000) Metaspace used 1740K, capacity 2202K, committed 2328K, reserved 4400K
Card table byte_map: [0x6598b000,0x65a00000] byte_map_base: 0x6565e000
Polling page: 0x76fbc000
CodeCache: size=32768Kb used=643Kb max_used=643Kb free=32124Kb bounds [0x742db000, 0x74383000, 0x762db000] total_blobs=155 nmethods=18 adapters=70 compilation: enabled
Compilation events (10 events):Event: 0.466 Thread 0x008f5c00 14 ! java.io.BufferedReader::readLine (304 bytes)Event: 0.473 Thread 0x008f5c00 nmethod 14 0x74375208 code [0x74375390, 0x7437617c]Event: 0.474 Thread 0x008f5c00 15 java.util.LinkedList::indexOf (73 bytes)Event: 0.475 Thread 0x008f5c00 nmethod 15 0x74376bc8 code [0x74376cc0, 0x74376e44]Event: 0.479 Thread 0x008f5c00 16 sun.nio.cs.UTF_8$Decoder::decodeArrayLoop (671 bytes)Event: 0.505 Thread 0x008f5c00 nmethod 16 0x74376f48 code [0x74377460, 0x74378778]Event: 0.505 Thread 0x008f5c00 17 java.io.UnixFileSystem::normalize (75 bytes)Event: 0.507 Thread 0x008f5c00 nmethod 17 0x7437b7c8 code [0x7437b8e0, 0x7437ba9c]Event: 0.510 Thread 0x008f5c00 18 java.lang.Math::min (11 bytes)Event: 0.511 Thread 0x008f5c00 nmethod 18 0x7437bc48 code [0x7437bd20, 0x7437bda8]
GC Heap History (0 events):No events
Deoptimization events (0 events):No events
Internal exceptions (3 events):Event: 0.176 Thread 0x00879000 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.defineClass(Ljava/lang/String;[BII)Ljava/lang/Class; name or signature does not match> (0x65a0f780) thrown at [/HUDSON/workspace/8-2-build-glinux-arm-vfp-hflt/jdk8/2238/hotspot/src/share/vEvent: 0.176 Thread 0x00879000 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.prefetchRead(Ljava/lang/Object;J)V name or signature does not match> (0x65a0fa00) thrown at [/HUDSON/workspace/8-2-build-glinux-arm-vfp-hflt/jdk8/2238/hotspot/src/share/vm/prims/jni.cpp, lEvent: 0.487 Thread 0x00879000 Exception <a 'java/security/PrivilegedActionException'> (0x65ab9348) thrown at [/HUDSON/workspace/8-2-build-glinux-arm-vfp-hflt/jdk8/2238/hotspot/src/share/vm/prims/jvm.cpp, line 1248]
Events (10 events):Event: 0.503 loading class java/security/AllPermissionEvent: 0.503 loading class java/security/AllPermission doneEvent: 0.503 loading class java/security/UnresolvedPermissionEvent: 0.504 loading class java/security/UnresolvedPermission doneEvent: 0.504 loading class java/security/BasicPermissionCollectionEvent: 0.505 loading class java/security/BasicPermissionCollection doneEvent: 0.507 loading class sun/launcher/LauncherHelper$FXHelperEvent: 0.508 loading class sun/launcher/LauncherHelper$FXHelper doneEvent: 0.510 loading class java/lang/ClassLoaderHelperEvent: 0.510 loading class java/lang/ClassLoaderHelper done
Dynamic libraries:00008000-00009000 r-xp 00000000 b3:06 539716 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/bin/java00010000-00011000 rw-p 00000000 b3:06 539716 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/bin/java00871000-0099f000 rw-p 00000000 00:00 0 [heap]64ceb000-64cf0000 r-xp 00000000 b3:06 262749 /usr/local/lib/libsht1x.so64cf0000-64cf7000 ---p 00005000 b3:06 262749 /usr/local/lib/libsht1x.so64cf7000-64cf8000 rw-p 00004000 b3:06 262749 /usr/local/lib/libsht1x.so64cf8000-64d2a000 r--s 0023c000 b3:06 664858 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/lib/ext/jfxrt-controls.jar64d2a000-64d80000 r--s 00408000 b3:06 664860 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/lib/ext/jfxrt-graphics.jar64d80000-64d81000 ---p 00000000 00:00 0 64d81000-64e00000 rw-p 00000000 00:00 0 [stack:11670]64e00000-64e7e000 rw-p 00000000 00:00 0 64e7e000-64f00000 ---p 00000000 00:00 0 64f0a000-64f0d000 ---p 00000000 00:00 0 64f0d000-64f5a000 rw-p 00000000 00:00 0 [stack:11669]64f5a000-64f5d000 ---p 00000000 00:00 0 64f5d000-64fda000 rw-p 00000000 00:00 0 [stack:11668]64fda000-64fdd000 ---p 00000000 00:00 0 64fdd000-6502a000 rw-p 00000000 00:00 0 [stack:11667]6502a000-651a1000 r--p 00000000 b3:06 803006 /usr/lib/locale/locale-archive651a1000-651a4000 ---p 00000000 00:00 0 651a4000-651f1000 rw-p 00000000 00:00 0 [stack:11666]651f1000-651f4000 ---p 00000000 00:00 0 651f4000-65241000 rw-p 00000000 00:00 0 [stack:11665]65241000-65242000 ---p 00000000 00:00 0 65242000-65310000 rw-p 00000000 00:00 0 [stack:11664]65310000-654e4000 r--s 03c85000 b3:06 664771 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/lib/rt.jar654e4000-65785000 rw-p 00000000 00:00 0 65785000-6598b000 ---p 00000000 00:00 0 6598b000-6598e000 rw-p 00000000 00:00 0 6598e000-659b1000 ---p 00000000 00:00 0 659b1000-659b7000 rw-p 00000000 00:00 0 659b7000-659ff000 ---p 00000000 00:00 0 659ff000-65f40000 rw-p 00000000 00:00 0 65f40000-6a740000 ---p 00000000 00:00 0 6a740000-6b200000 rw-p 00000000 00:00 0 6b200000-74200000 ---p 00000000 00:00 0 74204000-74205000 r-xp 00000000 b3:06 262735 /usr/local/lib/libsht1x-java.so74205000-7420c000 ---p 00001000 b3:06 262735 /usr/local/lib/libsht1x-java.so7420c000-7420d000 rw-p 00000000 b3:06 262735 /usr/local/lib/libsht1x-java.so7420d000-74213000 rw-p 00000000 00:00 0 74213000-7425b000 ---p 00000000 00:00 0 7425b000-7425e000 rw-p 00000000 00:00 0 7425e000-742db000 ---p 00000000 00:00 0 742db000-74383000 rwxp 00000000 00:00 0 74383000-762db000 ---p 00000000 00:00 0 762db000-762f2000 r-xp 00000000 b3:06 664792 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/lib/arm/libzip.so762f2000-762f9000 ---p 00017000 b3:06 664792 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/lib/arm/libzip.so762f9000-762fa000 rw-p 00016000 b3:06 664792 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/lib/arm/libzip.so762fa000-76304000 r-xp 00000000 b3:06 1707642 /lib/arm-linux-gnueabihf/libnss_files-2.13.so76304000-7630b000 ---p 0000a000 b3:06 1707642 /lib/arm-linux-gnueabihf/libnss_files-2.13.so7630b000-7630c000 r--p 00009000 b3:06 1707642 /lib/arm-linux-gnueabihf/libnss_files-2.13.so7630c000-7630d000 rw-p 0000a000 b3:06 1707642 /lib/arm-linux-gnueabihf/libnss_files-2.13.so7630d000-76316000 r-xp 00000000 b3:06 1707764 /lib/arm-linux-gnueabihf/libnss_nis-2.13.so76316000-7631d000 ---p 00009000 b3:06 1707764 /lib/arm-linux-gnueabihf/libnss_nis-2.13.so7631d000-7631e000 r--p 00008000 b3:06 1707764 /lib/arm-linux-gnueabihf/libnss_nis-2.13.so7631e000-7631f000 rw-p 00009000 b3:06 1707764 /lib/arm-linux-gnueabihf/libnss_nis-2.13.so7631f000-76330000 r-xp 00000000 b3:06 1707581 /lib/arm-linux-gnueabihf/libnsl-2.13.so76330000-76337000 ---p 00011000 b3:06 1707581 /lib/arm-linux-gnueabihf/libnsl-2.13.so76337000-76338000 r--p 00010000 b3:06 1707581 /lib/arm-linux-gnueabihf/libnsl-2.13.so76338000-76339000 rw-p 00011000 b3:06 1707581 /lib/arm-linux-gnueabihf/libnsl-2.13.so76339000-7633b000 rw-p 00000000 00:00 0 7633b000-76341000 r-xp 00000000 b3:06 1707586 /lib/arm-linux-gnueabihf/libnss_compat-2.13.so76341000-76348000 ---p 00006000 b3:06 1707586 /lib/arm-linux-gnueabihf/libnss_compat-2.13.so76348000-76349000 r--p 00005000 b3:06 1707586 /lib/arm-linux-gnueabihf/libnss_compat-2.13.so76349000-7634a000 rw-p 00006000 b3:06 1707586 /lib/arm-linux-gnueabihf/libnss_compat-2.13.so7634a000-7636d000 r-xp 00000000 b3:06 664844 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/lib/arm/libjava.so7636d000-76375000 ---p 00023000 b3:06 664844 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/lib/arm/libjava.so76375000-76376000 rw-p 00023000 b3:06 664844 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/lib/arm/libjava.so76376000-7637f000 r-xp 00000000 b3:06 664829 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/lib/arm/libverify.so7637f000-76387000 ---p 00009000 b3:06 664829 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/lib/arm/libverify.so76387000-76388000 rw-p 00009000 b3:06 664829 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/lib/arm/libverify.so76388000-7638e000 r-xp 00000000 b3:06 1707590 /lib/arm-linux-gnueabihf/librt-2.13.so7638e000-76395000 ---p 00006000 b3:06 1707590 /lib/arm-linux-gnueabihf/librt-2.13.so76395000-76396000 r--p 00005000 b3:06 1707590 /lib/arm-linux-gnueabihf/librt-2.13.so76396000-76397000 rw-p 00006000 b3:06 1707590 /lib/arm-linux-gnueabihf/librt-2.13.so76397000-7639a000 ---p 00000000 00:00 0 7639a000-763e7000 rw-p 00000000 00:00 0 [stack:11663]763e7000-7644f000 r-xp 00000000 b3:06 1707752 /lib/arm-linux-gnueabihf/libm-2.13.so7644f000-76456000 ---p 00068000 b3:06 1707752 /lib/arm-linux-gnueabihf/libm-2.13.so76456000-76457000 r--p 00067000 b3:06 1707752 /lib/arm-linux-gnueabihf/libm-2.13.so76457000-76458000 rw-p 00068000 b3:06 1707752 /lib/arm-linux-gnueabihf/libm-2.13.so76458000-76994000 r-xp 00000000 b3:06 664804 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/lib/arm/client/libjvm.so76994000-7699b000 ---p 0053c000 b3:06 664804 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/lib/arm/client/libjvm.so7699b000-769c5000 rw-p 0053b000 b3:06 664804 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/lib/arm/client/libjvm.so769c5000-76de6000 rw-p 00000000 00:00 0 76de6000-76e06000 r-xp 00000000 b3:06 1707584 /lib/arm-linux-gnueabihf/libgcc_s.so.176e06000-76e0d000 ---p 00020000 b3:06 1707584 /lib/arm-linux-gnueabihf/libgcc_s.so.176e0d000-76e0e000 rw-p 0001f000 b3:06 1707584 /lib/arm-linux-gnueabihf/libgcc_s.so.176e0e000-76f32000 r-xp 00000000 b3:06 1707613 /lib/arm-linux-gnueabihf/libc-2.13.so76f32000-76f39000 ---p 00124000 b3:06 1707613 /lib/arm-linux-gnueabihf/libc-2.13.so76f39000-76f3b000 r--p 00123000 b3:06 1707613 /lib/arm-linux-gnueabihf/libc-2.13.so76f3b000-76f3c000 rw-p 00125000 b3:06 1707613 /lib/arm-linux-gnueabihf/libc-2.13.so76f3c000-76f3f000 rw-p 00000000 00:00 0 76f3f000-76f41000 r-xp 00000000 b3:06 1707611 /lib/arm-linux-gnueabihf/libdl-2.13.so76f41000-76f48000 ---p 00002000 b3:06 1707611 /lib/arm-linux-gnueabihf/libdl-2.13.so76f48000-76f49000 r--p 00001000 b3:06 1707611 /lib/arm-linux-gnueabihf/libdl-2.13.so76f49000-76f4a000 rw-p 00002000 b3:06 1707611 /lib/arm-linux-gnueabihf/libdl-2.13.so76f4a000-76f5e000 r-xp 00000000 b3:06 664808 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/lib/arm/jli/libjli.so76f5e000-76f65000 ---p 00014000 b3:06 664808 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/lib/arm/jli/libjli.so76f65000-76f66000 rw-p 00013000 b3:06 664808 /usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt/jre/lib/arm/jli/libjli.so76f66000-76f7a000 r-xp 00000000 b3:06 1707627 /lib/arm-linux-gnueabihf/libpthread-2.13.so76f7a000-76f81000 ---p 00014000 b3:06 1707627 /lib/arm-linux-gnueabihf/libpthread-2.13.so76f81000-76f82000 r--p 00013000 b3:06 1707627 /lib/arm-linux-gnueabihf/libpthread-2.13.so76f82000-76f83000 rw-p 00014000 b3:06 1707627 /lib/arm-linux-gnueabihf/libpthread-2.13.so76f83000-76f85000 rw-p 00000000 00:00 0 76f8b000-76f93000 rw-s 00000000 b3:06 1573647 /tmp/hsperfdata_root/1166276f93000-76f95000 r-xp 00000000 b3:06 1180452 /usr/lib/arm-linux-gnueabihf/libcofi_rpi.so76f95000-76f9c000 ---p 00002000 b3:06 1180452 /usr/lib/arm-linux-gnueabihf/libcofi_rpi.so76f9c000-76f9d000 rw-p 00001000 b3:06 1180452 /usr/lib/arm-linux-gnueabihf/libcofi_rpi.so76f9d000-76fba000 r-xp 00000000 b3:06 1707594 /lib/arm-linux-gnueabihf/ld-2.13.so76fbc000-76fbd000 r--p 00000000 00:00 0 76fbd000-76fc0000 rw-p 00000000 00:00 0 76fc0000-76fc2000 rw-p 00000000 00:00 0 76fc2000-76fc3000 r--p 0001d000 b3:06 1707594 /lib/arm-linux-gnueabihf/ld-2.13.so76fc3000-76fc4000 rw-p 0001e000 b3:06 1707594 /lib/arm-linux-gnueabihf/ld-2.13.so7e7ec000-7e80d000 rw-p 00000000 00:00 0 [stack]7ecaa000-7ecab000 r-xp 00000000 00:00 0 [sigpage]ffff0000-ffff1000 r-xp 00000000 00:00 0 [vectors]
VM Arguments:jvm_args: -Djava.library.path=/usr/local/lib java_command: Sht1xSensorjava_class_path (initial): .Launcher Type: SUN_STANDARD
Environment Variables:PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/binUSERNAME=rootSHELL=/bin/bashDISPLAY=localhost:10.0
Signal Handlers:SIGSEGV: [libjvm.so+0x4c7b40], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004SIGBUS: [libjvm.so+0x4c7b40], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004SIGFPE: [libjvm.so+0x3cc1ac], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004SIGPIPE: [libjvm.so+0x3cc1ac], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004SIGXFSZ: [libjvm.so+0x3cc1ac], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004SIGILL: [libjvm.so+0x3cc1ac], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000SIGUSR2: [libjvm.so+0x3cc2dc], sa_mask[0]=0x00000000, sa_flags=0x10000004SIGHUP: [libjvm.so+0x3cc710], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004SIGINT: [libjvm.so+0x3cc710], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004SIGTERM: [libjvm.so+0x3cc710], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004SIGQUIT: [libjvm.so+0x3cc710], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
--------------- S Y S T E M ---------------
OS:PRETTY_NAME="Raspbian GNU/Linux 7 (wheezy)"NAME="Raspbian GNU/Linux"VERSION_ID="7"VERSION="7 (wheezy)"ID=raspbianID_LIKE=debianANSI_COLOR="1;31"HOME_URL="http://www.raspbian.org/"SUPPORT_URL="http://www.raspbian.org/RaspbianForums"BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"
uname:Linux 3.18.7-v7+ #755 SMP PREEMPT Thu Feb 12 17:20:48 GMT 2015 armv7llibc:glibc 2.13 NPTL 2.13 rlimit: STACK 8192k, CORE 0k, NPROC 7349, NOFILE 4096, AS infinityload average:0.01 0.02 0.05
/proc/meminfo:MemTotal: 949328 kBMemFree: 609384 kBMemAvailable: 870244 kBBuffers: 40368 kBCached: 234428 kBSwapCached: 0 kBActive: 205428 kBInactive: 100780 kBActive(anon): 31556 kBInactive(anon): 704 kBActive(file): 173872 kBInactive(file): 100076 kBUnevictable: 0 kBMlocked: 0 kBSwapTotal: 102396 kBSwapFree: 102396 kBDirty: 56 kBWriteback: 0 kBAnonPages: 31328 kBMapped: 40812 kBShmem: 852 kBSlab: 21868 kBSReclaimable: 14780 kBSUnreclaim: 7088 kBKernelStack: 1528 kBPageTables: 1420 kBNFS_Unstable: 0 kBBounce: 0 kBWritebackTmp: 0 kBCommitLimit: 577060 kBCommitted_AS: 306896 kBVmallocTotal: 1105920 kBVmallocUsed: 3876 kBVmallocChunk: 865084 kB
CPU:total 4 (ARMv7), vfp
/proc/cpuinfo:processor : 0model name : ARMv7 Processor rev 5 (v7l)BogoMIPS : 57.60Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 lpae evtstrm CPU implementer : 0x41CPU architecture: 7CPU variant : 0x0CPU part : 0xc07CPU revision : 5
processor : 1model name : ARMv7 Processor rev 5 (v7l)BogoMIPS : 57.60Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 lpae evtstrm CPU implementer : 0x41CPU architecture: 7CPU variant : 0x0CPU part : 0xc07CPU revision : 5
processor : 2model name : ARMv7 Processor rev 5 (v7l)BogoMIPS : 57.60Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 lpae evtstrm CPU implementer : 0x41CPU architecture: 7CPU variant : 0x0CPU part : 0xc07CPU revision : 5
processor : 3model name : ARMv7 Processor rev 5 (v7l)BogoMIPS : 57.60Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 lpae evtstrm CPU implementer : 0x41CPU architecture: 7CPU variant : 0x0CPU part : 0xc07CPU revision : 5
Hardware : BCM2709Revision : a21041Serial : 000000005f115d27
Memory: 4k page, physical 949328k(609384k free), swap 102396k(102396k free)
vm_info: Java HotSpot(TM) Client VM (25.0-b70) for linux-arm-vfp-hflt JRE (1.8.0-b132), built on Mar 4 2014 06:39:31 by "java_re" with gcc 4.7.2 20120910 (prerelease)
time: Wed Mar 18 05:40:05 2015elapsed time: 0 seconds--
You received this message because you are subscribed to the Google Groups "bcm2835" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bcm2835+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/bcm2835/8dc7571d-0adc-454b-b620-4f6423f6e4a9%40googlegroups.com.
...