Quantcast
Channel: Intel Communities: Message List
Viewing all 18582 articles
Browse latest View live

Re: D34010WYK + USB SoundCard + Netflix Win 8 App + 5.1 Sound = No go

$
0
0

Hi all,

 

I have an update from the engineering team. A new audio driver that fixes this problem is currently in the final validation phase. I've tested it and it WORKS!  So, stay tuned - the problem with Dolby Digital 5.1 on Netflix is soon going to be a thing of the past!

 

 

 

Lois


Re: Netflix, D34010WYK and 5.1 audio

$
0
0

Hi all,


I have an update from the engineering team. A new audio driver that fixes this problem is currently in the final validation phase. I've tested it and it WORKS!  So, stay tuned - the problem with Dolby Digital 5.1 on Netflix is soon going to be a thing of the past!

 

 

 

Lois

[Newbie] Binary compiled with ADT not working on Galileo

$
0
0

Hi,

 

I am running Yocto on the Galileo and am trying to cross compile an application (using the ADT toolchain) from Ubuntu to run on the board. I compiled it for a 32 bit architecture and "scp"ed the binary onto the board.

 

The problem I'm having is that Yocto says file not found if I try to run ./hello ("hello" is the name of the executable), but if I do ls -al, it does list the file:

root@clanton:~# ls -al

-rwxr-xr-x1 rootroot     7159 Jan  1 00:04 hello

 

root@clanton:~# ./hello

-sh: ./hello: No such file or directory

 

if I look up the file on my host system, it does show that the file is compiled for a 32 bit architecture:

$ file hello

hello: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.24, BuildID[sha1]=0x261723c2a7fa5adacf0b9e6fab654dbe5dba779d, not stripped

 

From online resources, I found that this problem occurs when you try to run a 32 bit executable on a 64 bit architecture, but the Galileo is a 32 bit architecture? Another interesting thing is that if the file hello is compiled for x86_64, running ./hello says it cannot execute the binary (in this case, it does find the binary).

root@clanton:~# ./hello

-sh: ./hello: cannot execute binary file

 

Will someone be able to shed some light on this?

Thanks

How to install or copy the driver i.e .ko file to a particular location via makefile?

$
0
0

This is my makefile..

ifneq ($(KERNELRELEASE),)

obj-m := dmcdus_dd.o

else

KDIR := /usr/src/linux-headers-3.13.0-24-generic/

all:

    $(MAKE) INSTALL_MOD_DIR=kernel/drivers/input/touchscreen -C $(KDIR) M=$$PWD modules_install

 

endif

clean:

    rm -rf *.o *~ core .depend .*.cmd *.ko *.mod.c .tmp_versions sample Module.symvers

 

 

i have specified my required path where i have to move my dmcdus_dd.ko file using INSTALL_MOD_DIR & install it by modules_install. when i type make in the console i get the following results in the console..

 

make INSTALL_MOD_DIR=kernel/drivers/input/touchscreen -C /usr/src/linux-headers-3.5.0-49-generic/ M=$PWD modules_install

make[1]: Entering directory `/usr/src/linux-headers-3.5.0-49-generic'

  DEPMOD  3.5.0-49-generic

make[1]: Leaving directory `/usr/src/linux-headers-3.5.0-49-generic'

 

but when i go to the location "/lib/modules/3.5.0-49-generic/kernel/drivers/input/touchscreen" i dont see dmcdus.ko file in that directory... How can i copy my driver to that location?

Intel Galileo and Large LCD Displays

$
0
0

Can intel galileo be interfaced with large LCD Tv's or displays to be used as a monitor for a computer. Or maybe as a tool for digital signage. Also please elaborate on how to use it as a Linux PC.

PS: i am new to all this !

free Intel Galileo

$
0
0

Hi,I signed up for the Windows Developer for Io T.Although you said that you would give information about when my Galileo kit shipped,you have not give me any information yet.Can you pay attention about this subject?

HTTP Connection: close -> if (!client.connected()) - Galileo

$
0
0

Hi,

 

I am sending a HTTP with "Connection: close" request:

 

client.println("GET http://www.google.com.au/ HTTP/1.1");          // note, the google address is not the real one

client.println("Connection: close");

client.println();

 

I get a reply that the server acknowledge it:

 

HTTP/1.1 200 OK

Date: Mon, 04 Aug 2014 05:57:35 GMT

Expires: -1

Cache-Control: private, max-age=0

Content-Type: text/html; charset=ISO-8859-1

Set-Cookie: PREF=ID=c7372cf97f6b7a33:FF=0:TM=1407131855:LM=1407131855:S=ivf0-SM_bxoycH8J; expires=Wed, 03-Aug-2016 05:57:35 GMT; path=/; domain=.google.com.au

Set-Cookie: NID=67=Khn-N2-2ORq6_9hmPCkpXKWskUWbNEXE3UNsX87sveVkOsBfGwEDPU-Y50NmRfKV9JWy-jf5q_sgwGUf36UivdQY_gNUiFaETyExB69pqCt3VXDiZ_7oO1KUHnqx_c2R; expires=Tue, 03-Feb-2015 05:57:35 GMT; path=/; domain=.google.com.au; HttpOnly

P3P: CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info."

Server: gws

X-XSS-Protection: 1; mode=block

X-Frame-Options: SAMEORIGIN

Alternate-Protocol: 80:quic

Connection: close

 

But the code that need to pick it up, doesn't and the stay in endless loop:

 

void loop() {

  if (client.available()) {

    char c = client.read();

    Serial.print(c);

  }

 

   if (!client.connected()) {

      Serial.println("disconnecting");

      client.stop();

      delay(2000);

      while(true);

    }

  }

 

Does the Ardiuno have a problem to close the connection?

DHT workaround for Galileo and Galileo Gen2 using 2 pins instead of one

$
0
0

The main reason the DHT temperature and humidity sensor does not work with the Galileo is because of the tight requirements of one-wire device like the DHT11 and DHT22 sensors.

 

With just one wire, DHT and many other one-wire devices will not work with the Galileo because the Galileo takes too much time when switching a pin from one direction to another.

This is because the Galileo uses IO expanders for the gpio that controls the pin direction and those IO expanders are connected to the Galileo via I2C.

 

One way to get the Galileo to play well with one-wire devices is to use two wires. One dedicated for INPUT and another for OUTPUT.

The workaround I am going to use only requires one extra hardware, a diode.

 

 

DHTGal.PNG

For this example, pin2 is connected to the DHT11.

Cathode of the diode is connected to pin3.

Anode of the diode is connected to the DHT.

 

 

I modified the Adafruit DHT library to work with the Galileo using two pins which I have attached.

I also had to modify replace delayMicroseconds() with a while loop because it is not very reliable for delays less than 200 us for the Galileo

 

Also attached the modified sketch example.

 

Errors are detected occasionally, when the bit pulses are not measured accurately but this is OK because it will fail checksum.

DHTGalSerial.png

 

Note that for the Galileo this will only work for pins 2 and 3 because those are the only pins that are fast enough.

For the Galileo Gen2 this should work for all pins except 7 and 8.

 

I have only tested this with the Galileo and DHT11.

I left my Gen2 at my office cube so I will have to verify it on that tomorrow.


More errors building cross-compiler SDK on Ubuntu 12.10

$
0
0

This time I almost got to the end. I have followed all the instructions in the board sources PDF, and

run this command, finally

 

$ bitbake image-full-galileo -c populate_sdk

 

Five hours later and with 2820 out of 2866 tasks done, the build fails with these errors

 

|   CC    x86_64-softmmu/hw/i386/../ioapic.o

| {standard input}: Assembler messages:

| {standard input}:52666: Warning: end of file not at end of a line; newline inserted

| {standard input}:53815: Error: unknown pseudo-op: `.p'

| {standard input}: Error: open CFI at the end of file; missing .cfi_endproc directive

| x86_64-pokysdk-linux-gcc: internal compiler error: Killed (program cc1)

| Please submit a full bug report,

| with preprocessed source if appropriate.

| See <http://gcc.gnu.org/bugs.html> for instructions.

 

and

 

|   CC    arm-softmmu/hw/arm/../pxa2xx.o

| {standard input}: Assembler messages:

| {standard input}:50450: Warning: end of file not at end of a line; newline inserted

| {standard input}:50524: Error: unknown pseudo-op: `.'

|   CC    x86_64-softmmu/hw/i386/../multiboot.o

| {standard input}: Error: open CFI at the end of file; missing .cfi_endproc directive

| x86_64-pokysdk-linux-gcc: internal compiler error: Killed (program cc1)

| Please submit a full bug report,

| with preprocessed source if appropriate.

| See <http://gcc.gnu.org/bugs.html> for instructions.

| make[1]: *** [target-i386/translate.o] Error 4

| make: *** [subdir-i386-linux-user] Error 2

 

It looks like we're looking at the qemu build.

 

ERROR: Task 1655 (virtual:nativesdk:/home/victor/galileo/meta-clanton_v1.0.1/poky/meta/recipes-devtools/qemu/qemu_1.4.0.bb, do_compile) failed with exit code '1'

 

any suggestions?

Boot from RAID Controller DH77EB

$
0
0

Hi

 

I use the Intel Desktop Board for a VMware whitebox Server together with the Intel RT3WB080  Raid Controller. I installed VMware on a RAID1 Array which i created before with the RAID Controller. After rebooting i´am not possible to boot from the RAID Installation. The POST tell that no OS will be found. I can manually boot from the RAID with the boot drive selection and everything works fine.

 

Can somebody tell me why i´am not able to boot from the RAID Controller? Is there a Setting in the bios that i should set? I see an Option in the RAID Menu for set boot drive, but this one is already set.

 

Kind regards

Rico

Function failed: do_compile

$
0
0

Hi all,

 

I am facing the do_compile issue when build the image $bitbake image-full.

 

| AutoGen aborting on signal 11 (Segmentation fault) in state OPTIONS

| ./mk-agen-texi.sh: line 243: 10404 Aborted                 (core dumped) ${cmd}

| leaving /home/administrator/projects/iot/galileo/meta-clanton_v1.0.1/yocto_build/tmp/work/x86_64-linux/autogen-native/5.12-r3/build/doc/ag-texi-9212.d in place

| make[2]: *** [agdoc.texi] Terminated

| make[2]: Leaving directory `/home/administrator/projects/iot/galileo/meta-clanton_v1.0.1/yocto_build/tmp/work/x86_64-linux/autogen-native/5.12-r3/build/doc'

| make[1]: *** [all-recursive] Error 1

| make[1]: Leaving directory `/home/administrator/projects/iot/galileo/meta-clanton_v1.0.1/yocto_build/tmp/work/x86_64-linux/autogen-native/5.12-r3/build'

| make: *** [all] Error 2

| ERROR: oe_runmake failed

| ERROR: Function failed: do_compile (see /home/administrator/projects/iot/galileo/meta-clanton_v1.0.1/yocto_build/tmp/work/x86_64-linux/autogen-native/5.12-r3/temp/log.do_compile.2943 for further information)

ERROR: Task 1165 (/home/administrator/projects/iot/galileo/meta-clanton_v1.0.1/poky/meta/recipes-devtools/autogen/autogen-native_5.12.bb, do_compile) failed with exit code '1'

 

 

Can anyone suggest the solution??

Re: Intel AC7260 limited access after sleep

$
0
0

Update on my side after 3 days:

I still get issues with wakeup from sleep. Pretty sure like Mathew says - sleep, wakeup at different SSID and you have to restart.

So this latest driver does not fix the issue completely.

Re: Bluetooth 4.0 LE (Low Energy/Smart) Drivers for Intel Centrino 6235 need fix

$
0
0

No, the BT adapter does not appear as Generic Bluetooth Adapter in device manager.

 

When I say generic, I mean a driver/software provided from Intel in their download page which is not OEM. In other words I am not using  Bluetooth Drivers

provided by OEM laptop manufacturer e.i Toshiba or HP.

Re: Galileo Arduino firmware update error

$
0
0

Hi IvanW,

 

First I would recommend you to try downloading and installing the Galileo IDE in another computer, to see if the problem is with your computer because from your reply it seems like everything should be working properly. Also, what OS are you using?  It is also possible that the port you are using may be causing problems, the recommended is a USB 2.0, not a 3.0.

 

Regards

Sergio

Re: USB Controller Issue Windows 8.1 Motherboard DH67BL

$
0
0

system restore only allows for restore to the state before the last applied Windows update. However, I need to restore it to a state that was a week ago and it is not showing me that date. So, system restore is not helpful. I don't remember which drive it was. Guess I need to reinstall Windows.


Intel NUC D54250WYKH : issue with kingston SSD V300 sata

$
0
0

Hi,

I just bought a NUC D54250WYKH and I installed my SSD that works on 2 different computers. The SSD is a V300 120G on sata interface.

 

The bios of Nuc updated with last bios and the SSD have the last firmware.

 

The bios doesn't detect the SSD. If I put the ssd in an USB box, the bios see the SSD via the USB. If I put another hard disk (not  SSD), the NUC detect the hard disk on the sata port.

 

But if I put my SSD on the sata interface. impossible the detect this SSD. What is the issue ?

 

Regards

 

Sébastien

Re: USB programming questions

Re: 8.1 dont like old games graphic issues with many people ?

Re: Noisy? 1600W Common Redundant Power Supply FXX1600PCRPS

$
0
0

I updated firmware for the workstation board W2600CR one hour ago. (successfully )

Before updating FW I disconnected two chassis fans, since they are very loud. And this situation is detected and updates to FRU/SDR repo.

 

After reboot the fan of the power supply FXX1200PCRPS become full speed!!! Even louder than with two chassis fans!!! OMG!!!

So I stop working immediately since it is midnight at my timezone.

 

My best guess is that decreasing the number of the fans in the whole system will boost the speed of remaining fan(s). Need to fix that at day time. Or it is impossible to live with us.

For your reference.

Re: "Display driver Intel graphics accelerator drivers for windows 8(R) stopped responding and has successfully recovered" occurring with all Intel and Lenovo driver updates

$
0
0

Thanks for the response.  As you'll see from my original post, I have already forced the Intel generic drivers in step #7.

 

I received the error message in step #3 prior to and immediately after a clean install.

Viewing all 18582 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>