Welcome
Username or Email:

Password:


Missing Code




[ ]
[ ]
Online
  • Guests: 16
  • Members: 0
  • Newest Member: omjtest
  • Most ever online: 396
    Guests: 396, Members: 0 on 12 Jan : 12:51
Members Birthdays:
One birthday today, congrats!
Vaxian (17)


Next birthdays
05/21 Dalus (34)
05/21 Kizmo (37)
05/22 Skynet (32)
Contact
If you need assistance, please send an email to forum at 4hv dot org. To ensure your email is not marked as spam, please include the phrase "4hv help" in the subject line. You can also find assistance via IRC, at irc.shadowworld.net, room #hvcomm.
Support 4hv.org!
Donate:
4hv.org is hosted on a dedicated server. Unfortunately, this server costs and we rely on the help of site members to keep 4hv.org running. Please consider donating. We will place your name on the thanks list and you'll be helping to keep 4hv.org alive and free for everyone. Members whose names appear in red bold have donated recently. Green bold denotes those who have recently donated to keep the server carbon neutral.


Special Thanks To:
  • Aaron Holmes
  • Aaron Wheeler
  • Adam Horden
  • Alan Scrimgeour
  • Andre
  • Andrew Haynes
  • Anonymous000
  • asabase
  • Austin Weil
  • barney
  • Barry
  • Bert Hickman
  • Bill Kukowski
  • Blitzorn
  • Brandon Paradelas
  • Bruce Bowling
  • BubeeMike
  • Byong Park
  • Cesiumsponge
  • Chris F.
  • Chris Hooper
  • Corey Worthington
  • Derek Woodroffe
  • Dalus
  • Dan Strother
  • Daniel Davis
  • Daniel Uhrenholt
  • datasheetarchive
  • Dave Billington
  • Dave Marshall
  • David F.
  • Dennis Rogers
  • drelectrix
  • Dr. John Gudenas
  • Dr. Spark
  • E.TexasTesla
  • eastvoltresearch
  • Eirik Taylor
  • Erik Dyakov
  • Erlend^SE
  • Finn Hammer
  • Firebug24k
  • GalliumMan
  • Gary Peterson
  • George Slade
  • GhostNull
  • Gordon Mcknight
  • Graham Armitage
  • Grant
  • GreySoul
  • Henry H
  • IamSmooth
  • In memory of Leo Powning
  • Jacob Cash
  • James Howells
  • James Pawson
  • Jeff Greenfield
  • Jeff Thomas
  • Jesse Frost
  • Jim Mitchell
  • jlr134
  • Joe Mastroianni
  • John Forcina
  • John Oberg
  • John Willcutt
  • Jon Newcomb
  • klugesmith
  • Leslie Wright
  • Lutz Hoffman
  • Mads Barnkob
  • Martin King
  • Mats Karlsson
  • Matt Gibson
  • Matthew Guidry
  • mbd
  • Michael D'Angelo
  • Mikkel
  • mileswaldron
  • mister_rf
  • Neil Foster
  • Nick de Smith
  • Nick Soroka
  • nicklenorp
  • Nik
  • Norman Stanley
  • Patrick Coleman
  • Paul Brodie
  • Paul Jordan
  • Paul Montgomery
  • Ped
  • Peter Krogen
  • Peter Terren
  • PhilGood
  • Richard Feldman
  • Robert Bush
  • Royce Bailey
  • Scott Fusare
  • Scott Newman
  • smiffy
  • Stella
  • Steven Busic
  • Steve Conner
  • Steve Jones
  • Steve Ward
  • Sulaiman
  • Thomas Coyle
  • Thomas A. Wallace
  • Thomas W
  • Timo
  • Torch
  • Ulf Jonsson
  • vasil
  • Vaxian
  • vladi mazzilli
  • wastehl
  • Weston
  • William Kim
  • William N.
  • William Stehl
  • Wesley Venis
The aforementioned have contributed financially to the continuing triumph of 4hv.org. They are deserving of my most heartfelt thanks.
Forums
4hv.org :: Forums :: Computer Science
« Previous topic | Next topic »   

AD7856 SPI Help

Move Thread LAN_403
Arkin
Tue Jul 20 2010, 10:42PM Print
Arkin Registered Member #2140 Joined: Tue May 26 2009, 09:16PM
Location:
Posts: 53
I have an AD7856 on a breakout board I am trying to get to work for use in my Helicopter autopilot project. The AD7856 is connected to an XC-1A board (centered around the XS1-G4 processor), but uses C (modified into XC for threading purposes).

At this point, I am just trying to read the status register. Using the data sheet, this is what i came up to send to it:
11100101 11010001

Which in Hex, is 0xE5 and 0xD5. The next read should return 16bits for the status register. The read method looks like this
unsigned int spi_in_word(spi_master_interface &i)
{
	// big endian byte order
	unsigned int data = 0;
	data |= (spi_in_byte(i) << 24);
	data |= (spi_in_byte(i) << 16);
	data |= (spi_in_byte(i) << 8);
	data |= spi_in_byte(i);
	return data;
}

and out method:

void spi_out_word(spi_master_interface &i, unsigned int data)
{
  // big endian byte order
  spi_out_byte(i, (data >> 24) & 0xFF);
  spi_out_byte(i, (data >> 16) & 0xFF);
  spi_out_byte(i, (data >> 8) & 0xFF);
  spi_out_byte(i, data & 0xFF);
}

I am unsure about what these are actually doing. When It is sending, does it send as an 8-bit word? I do:
spi_out_word(spi_if, 0xE5);
spi_out_word(spi_if, 0xD1);

And when I read, the ADC should be sending 2 8-bit words (i think). Is this method receiving all 16bits? When i read, this is what i get:
7FCFFFFE
FF9FFFFE
Every read after this, without writing, yields the same "FF9FFFFE".

According to the data-sheet, the first bit should always be 0, and this is not. I have also, instead of sending out a word, sending a byte, which gives:
65D1FFFE
FF9FFFFE


This is the main method of the code:
spi_init(spi_if, 4);
	delay(250);

	spi_select();
	spi_out_byte(spi_if, 0xE5);
	spi_out_byte(spi_if, 0xD1);
	spi_deselect();

	delay(10);

	spi_select();
	word = spi_in_word(spi_if);
	word1 = spi_in_word(spi_if);

	printhexln(word);
	printhexln(word1);

	spi_deselect();

	spi_shutdown(spi_if);

select() pulls the chip select low.
Back to top

Moderator(s): Chris Russell, Noelle, Alex, Tesladownunder, Dave Marshall, Dave Billington, Bjørn, Steve Conner, Wolfram, Kizmo, Mads Barnkob

Go to:

Powered by e107 Forum System
 
Legal Information
This site is powered by e107, which is released under the GNU GPL License. All work on this site, except where otherwise noted, is licensed under a Creative Commons Attribution-ShareAlike 2.5 License. By submitting any information to this site, you agree that anything submitted will be so licensed. Please read our Disclaimer and Policies page for information on your rights and responsibilities regarding this site.