LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware > Linux - Embedded & Single-board computer
User Name
Password
Linux - Embedded & Single-board computer This forum is for the discussion of Linux on both embedded devices and single-board computers (such as the Raspberry Pi, BeagleBoard and PandaBoard). Discussions involving Arduino, plug computers and other micro-controller like devices are also welcome.

Notices


Reply
  Search this Thread
Old 05-07-2009, 12:04 PM   #1
Yoreki
LQ Newbie
 
Registered: May 2009
Posts: 4

Rep: Reputation: 0
Question Searching SBC/DSP board/microcontroller; 4ADC/1kHz/USB Host


Hello,

I am looking for something along the lines of a Single Board Computer (SBC), a Digital Signal Processing (DSP) board, or a microcontroller. Though I am open to any other suggestions, but what I essentially need to be able to do is the following.

Requirements:
- 4 channel ADC
- Sample rate of 1kHz; meaning I want to be able to sample from all 4 channels at a rate of 1kHz, whether that means sampling each input individually (in a round-like fashion at a higher rate in order to complete sampling all 4 channels at an overall rate of 1kHz), or sampling all 4 channels at the same time each at a rate of 1kHz.
- Can write to USB (USB Host port)
Project Breakdown: I have 4 analogue signals I need converted to digital signals, and store on a USB key, at a rate of 1kHz.

I am very new to working with these pieces of equipment, so please be understanding if I make any errors in talking about them, or am completely mistaken about the components to use.

I have so far been steered in the direction of using a SBC or a DSP board. However, I’ve been searching for days going over board after board, and I can’t find anything that has a high enough sample rate. The closest I’ve found to what I need is a series of ARM single board computers, the TS-7000 series.

http://www.embeddedarm.com/products/...ts-7800-series

Other than the TS-7800, the others didn’t seem to come close enough. Even the TS-7800, after reading the manual closely and inquiring about the meanings of some parts, I still found that when operating with 4 channels the overall sample rate would only be 0.5kHz (2kHz/ch).

I would really appreciate any advice, or experience that anyone can share with me. If you know of an actual component that fits my requirements that would be amazing, but even if you’re just able to steer me in a good direction it would be greatly appreciated.

Thanks a lot, hope I can get some feedback soon,

Tyler

Last edited by Yoreki; 05-07-2009 at 12:06 PM.
 
Old 05-08-2009, 03:50 AM   #2
salasi
Senior Member
 
Registered: Jul 2007
Location: Directly above centre of the earth, UK
Distribution: SuSE, plus some hopping
Posts: 4,070

Rep: Reputation: 897Reputation: 897Reputation: 897Reputation: 897Reputation: 897Reputation: 897Reputation: 897
The answer that you get is very heavily dependant on exactly what question you ask...
Quote:
Originally Posted by Yoreki View Post

Requirements:
- 4 channel ADC
- Sample rate of 1kHz; meaning I want to be able to sample from all 4 channels at a rate of 1kHz, whether that means sampling each input individually (in a round-like fashion at a higher rate in order to complete sampling all 4 channels at an overall rate of 1kHz), or sampling all 4 channels at the same time each at a rate of 1kHz.
- Can write to USB (USB Host port)
Project Breakdown: I have 4 analogue signals I need converted to digital signals, and store on a USB key, at a rate of 1kHz.
...The closest I’ve found to what I need is a series of ARM single board computers, the TS-7000 series.

http://www.embeddedarm.com/products/...ts-7800-series

Other than the TS-7800, the others didn’t seem to come close enough. Even the TS-7800, after reading the manual closely and inquiring about the meanings of some parts, I still found that when operating with 4 channels the overall sample rate would only be 0.5kHz (2kHz/ch).
I don't know the 7800 in any detail, but...
the processor's A/D is way faster than that (I'm assuming that its on chip, there may also be an off chip A/D with multipexer on that board, let's say, roughly 1uS), but if you try to perform signal capture by, say, running a cron job as frequently as you can to grab 4 channels worth of data (it'd be worse, in this scenario, to get one at once) you'd be looking at more like 1 second per capture.

So, how fast you can have the data is very heavily dependant on how you perform data capture; so far you haven't even said that you intend to use an operating system, but I assume that the implication of posting here is that such a thing is at least on your mind.

You probably have to take some decisions, none of which are an easy 'this makes all things simple' kind of outcome. So, at some point, you have to decide on which difficulties you are prepared to work to overcome and which you aren't.

Pretty much any board that you might find will have an a/d (hardware) that will cope with your speed requirement, but whether you can actually exploit that with the software that you choose to use is another matter entirely. Of course, you haven't been entirely clear about your data writing requirement and, if you were, for example, to throw the OS away (a bit dramatic, but as an example...) you'd be able to exploit the a/d more fully, but then you'd have difficulty with USB writing.
 
Old 05-08-2009, 08:03 AM   #3
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,676

Rep: Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892
I would disagree with the statement that any board would cope with the OPs desired sample rate. Sample rate is both hardware and software/firmware dependent. The TS-7800 onboard ADC provides an analog to digital capture function by way of an on-board AVR microcontroller. My first guess would be the microcontroller is the limiting speed factor

However, this peripheral board has 2 channel 100ksps capability. It would require 2 boards.
http://www.embeddedarm.com/products/...oduct=TS-ADC16

I have not had time to look for other options.
 
Old 05-08-2009, 11:47 AM   #4
Yoreki
LQ Newbie
 
Registered: May 2009
Posts: 4

Original Poster
Rep: Reputation: 0
I believe michaelk is right in that

Quote:
The TS-7800 onboard ADC provides an analog to digital capture function by way of an on-board AVR microcontroller. My first guess would be the microcontroller is the limiting speed factor
At least I'm pretty sure of this, I took a pretty good look into it and I even looked at the datasheet of the AVR I believed to be on the board.

Thanks for the recommendation michaelk, but I don't believe that board has a USB host port on it

-----

To salasi,

Sorry if I haven't provided enough information, I'm trying to figure out what approach to take for the problem, whether to go with a SBC, a DSP board, or a microcontroller accompanied by other parts. I'm in fact asking a bunch of different forums for opinions, and I'm lacking in information regarding these fields so I'm not always sure what kind of information is needed or wanted. I will try and get into better detail.

I didn't specify whether I was using on operating system or not because I wanted to leave my problem more open ended to see what is available.

One of the main things I'm leaning towards is using a Linux OS on a SBC, as it seems like the simplest way to write to a USB host port. I have never done anything like this before, so I don't know about the different ways software can effect the sampling rate I can achieve. Do you have any resources I can look into for this?

As far as the writing requirement goes... not too sure what you mean by that. I need to be able to read from all 4 channels at a rate of 1kHz, and I then need to record that data to a USB key. So I suppose I need to be able to write at a rate that keeps up with my reading rate. I assume I can vary this later in the programming I do depending on the amount of data the board can hold at a time?

If I'm still lacking in the information I've given you please ask me more questions, I'm learning as I go here but I'm willing to learn

Thanks again.
 
Old 05-08-2009, 12:01 PM   #5
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,676

Rep: Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892
Quote:
but I don't believe that board has a USB host port on it
This is a peripheral board not a SBC. It connects to the TS-7800 or any other PC104 SBC.
 
Old 05-11-2009, 12:34 PM   #6
Yoreki
LQ Newbie
 
Registered: May 2009
Posts: 4

Original Poster
Rep: Reputation: 0
Alright, so then it's just a separate board for the ADC?
 
Old 05-11-2009, 12:51 PM   #7
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,676

Rep: Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892
Correct. According to the link I provided you can have up to 4 cards in a system.
 
Old 05-14-2009, 01:36 PM   #8
Yoreki
LQ Newbie
 
Registered: May 2009
Posts: 4

Original Poster
Rep: Reputation: 0
Thanks, I'll keep it in mind
 
  


Reply

Tags
dsp, frequency, help, microcontroller, rate, sample, usb


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
ARM based WinCE/Embedded Linux Development Board (SBC) @ jointech.com.hk jointech Linux - Hardware 2 09-01-2007 12:44 AM
PCI board preventing USB host controller from getting hardware interrupts?? Brad.Scalio@noaa.gov Linux - Server 0 06-13-2007 06:27 AM
Required to achieve host to host communication via USB file transfer cable may1284 Linux - General 1 03-14-2007 04:02 PM
sbc dsl using sbc's wireless usb adapter jmill_1 Linux - Wireless Networking 1 01-19-2006 11:16 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware > Linux - Embedded & Single-board computer

All times are GMT -5. The time now is 05:58 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration