ts-7000
[Top] [All Lists]

[ts-7000] ADC in TS7260 : Please Help Me

To:
Subject: [ts-7000] ADC in TS7260 : Please Help Me
From: "Girisha Durrel De Silva" <>
Date: Tue, 09 Dec 2008 06:18:26 -0000
Hi Guys

I am new to the SBC and I have no idea how to do the ADC in a TS 7260.
I used the code in the manual and the output I get is zero on the
screen. I checked the cct with an oscilloscope and it was working
fine. Therefore, I think I am not doing the ADC correctly on the
board. Can anyone please help me!!!

I need to use only one channel. And therefore I am using the DIO2 pin
8 for the output of my cct and pin to for the ground of my cct.

Girisha

The code I used

#include<unistd.h>
#include<sys/types.h>
#include<sys/mman.h>
#include<stdio.h>
#include<fcntl.h>
#include<assert.h>

int main(int argc, char **argv)
{
        volatile unsigned short * complete;
        volatile unsigned char * lsb, * msb, * control;
        int res;
        int a;
        int fd = open("/dev/mem", O_RDWR);
        assert(fd != -1);

        for(a=0;a<100;a++)
        {       
                lsb = control = (unsigned char *)mmap(0,
getpagesize(),PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0x10c00000);
                msb = lsb + 1;
                complete = (unsigned short *)mmap(0,
getpagesize(),PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0x10800000);

                // Initiate conversion, channel #1, unipolar, 5V
                *control = 0x41;
        
                // Wait for completion
                while ((*complete & 0x80) != 0);
        
                // Print result on a scale from 0 to 2^12 - 1
                res = *lsb;
                res |= *msb << 8;
                printf("result: %d\n", res);
        }
        close(fd);
        return 0;
}





------------------------------------

Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/ts-7000/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/ts-7000/join
    (Yahoo! ID required)

<*> To change settings via email:
     
    

<*> To unsubscribe from this group, send an email to:
    

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/

<Prev in Thread] Current Thread [Next in Thread>
Admin

Disclaimer: Neither Andrew Taylor nor the University of NSW School of Computer and Engineering take any responsibility for the contents of this archive. It is purely a compilation of material sent by many people to the birding-aus mailing list. It has not been checked for accuracy nor its content verified in any way. If you wish to get material removed from the archive or have other queries about the archive e-mail Andrew Taylor at this address: andrewt@cse.unsw.EDU.AU