Skip to search.
tern · TERN Community

Group Information

  • Members: 473
  • Category: Computers
  • Founded: Nov 2, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

  Messages Help
Advanced
Messages 698 - 727 of 2261   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
698 xman_di@...
xman_di Offline Send Email
Aug 3, 2004
2:38 am
I am looking to create a device that can respond to an ip network using the Tern devices. I was thinking I could use a Flashcore-B (I already use it), and a...
699 johnmcg_ft Offline Send Email Aug 3, 2004
2:39 am
I have a number of FN controllers and the development version of the Paradigm package. I have followed the published procedure to download a hex file to the...
700 TERN (Chon)
tern_inc Offline Send Email
Aug 3, 2004
3:23 am
John, No rest for the weary! Always a working vacation. I feel like I'm missing part of the story, I'm not used to what you described. Do you have other FNs...
701 TERN (Chon)
tern_inc Offline Send Email
Aug 3, 2004
3:23 am
Mark, Welcome back! - The Memcard won't really work with the FB. They don't have the right expansion headers, and the result even if we made it work really ...
702 Larry
funbrain43 Offline Send Email
Aug 14, 2004
5:09 pm
I have a AE86D. What is the maximum output voltage on the digital outputs?...
703 Luke
darthlookie Offline Send Email
Aug 14, 2004
5:09 pm
Chon, Yes, I am actually writing to the file structure directly. Why would I ever do so ridiculous a thing? Because I'm basing most of what I'm trying off of...
704 vocemanago Offline Send Email Aug 14, 2004
5:10 pm
... basic ... packets ... Check out the methodology that DHCP uses and you can get an idea of how to do it. RFC 2131 might be the document to look over. You...
705 John McGloughlin
johnmcg_ft Offline Send Email
Aug 14, 2004
5:10 pm
Hi Chon, Apologies for taking you from vacation. I have tried with the ae86_115.hex and I get many lines of V markers and then the end of file message and...
706 Michael Brown
brownaroo Offline Send Email
Aug 14, 2004
5:10 pm
Hi all I'm new to the tern world and am using the R-Drive. I am writing an application using ser1 and ser2. Now I have 2 issues I need help with. I have...
707 david_bergeron Offline Send Email Aug 14, 2004
5:10 pm
Where can I get the dimensional layout for the FC0 board?...
708 david_bergeron Offline Send Email Aug 14, 2004
5:11 pm
I would like to use my own 5V supply to power the R-Engine-A instead of the on-board power supply. I would then feed 5V power to the board using Vcc and GND...
709 TERN (Chon)
tern_inc Offline Send Email
Aug 16, 2004
7:23 am
Larry, There are different types of "digital outputs" available on our boards. - Processor I/Os (PIO) are 0 or 5V on the 188-186 families, 3.3V on the 586, -...
710 TERN (Chon)
tern_inc Offline Send Email
Aug 16, 2004
7:23 am
Luke, Good thorough analysis. Anyone that's evaluating various options should certainly consider what you're looking at. fs_fseek() is far slower compared to...
711 TERN (Chon)
tern_inc Offline Send Email
Aug 16, 2004
7:23 am
Michael, ... From: Michael Brown [mailto:brownaroo@...] Sent: Sunday, August 08, 2004 3:34 PM To: tern@yahoogroups.com Subject: [TERN] R Drive RS232 ...
712 TERN (Chon)
tern_inc Offline Send Email
Aug 16, 2004
7:24 am
David, On the vast majority of our boards, you can directly feed in 5V power directly to VCC/GND on any of the pin headers. This definitely includes the...
713 Bill Finger
creare_coder Offline Send Email
Aug 17, 2004
4:56 pm
I'm going to develop an internet server on a 586-Engine, and I'm wondering if anyone has had any luck porting a TCP stack to the Paradigm compiler. I'm...
714 Jeff Thomson
jkt95m Offline Send Email
Aug 17, 2004
9:31 pm
I am attempting to write to a SanDisk 64Mb Compact Flash card on a FlashCore-B board. When I attempt to execute the fs_initPCFlash() function, it returns an...
715 TERN (Chon)
tern_inc Offline Send Email
Aug 18, 2004
12:04 am
Jeff, The card is a generic, vanilla SanDisk CF card? There might be compatibility problems with accelerated cards like the "Ultra II", etc. Before heading off...
716 TERN (Chon)
tern_inc Offline Send Email
Aug 19, 2004
4:06 pm
All, Just wanted to follow up with the group. We took a look at John's specific project/configuration files, and found the problem there. When compiling .HEX...
717 Matt Piotrowski
mpiotrow Offline Send Email
Aug 24, 2004
11:29 pm
I have an upcoming project which will require me to print text on a printer after having collected data on an RD processor board....but I'm unsure how to go...
718 John McGloughlin
johnmcg_ft Offline Send Email
Aug 25, 2004
4:08 pm
Hi Matt, I have used some Seiko thermal printers in the past, they use RS232 or parallel and printing is straight ASCII, ESC codes for graphics and expanded ...
719 Moz
list@... Send Email
Aug 25, 2004
4:18 pm
... Lots of them - most barcode and till printers are serial based, and you can get wide sheet ones. It's more a matter of deciding what sort of printer you...
720 Peter Butler
pnb2488 Offline Send Email
Aug 27, 2004
6:28 pm
I like assembly language. Oh, I write C and even C++ but assembly is what I like. I am setting up a TD40 for a client. I read somewhere that the 82C55 ...
721 mattdarr Offline Send Email Aug 30, 2004
3:51 pm
I'm using a Flash Core B as a general digital input data logger and am wondering what the simplest way is to read individual pin states. Speed is not a...
722 Matt Piotrowski
mpiotrow Offline Send Email
Aug 30, 2004
5:08 pm
From what I understand, you'll have to decode it. For example, here's a line from my code: stat = pio_rd(1) & 0x200; //PIO P25, Pin 18 All that I'm doing in...
723 TERN (Chon)
tern_inc Offline Send Email
Sep 1, 2004
3:39 am
Peter, I've seen the specs that suggest the 82C55 requires waitstates when going faster than 8 MHz with an 8-bit processor... but I've never personally...
724 Matt Piotrowski
mpiotrow Offline Send Email
Sep 1, 2004
8:47 pm
Moz, I just contacted the HP sales department directly in order to get information about the RS232 based printers. They were, however, unable to find any that...
725 TERN (Chon)
tern_inc Offline Send Email
Sep 1, 2004
10:42 pm
Matt, I know next to nothing about this, but just did some googling around, and came across options for the "Oki Microline" printers. You can google it up and...
726 Fernando Delgado R.
homo_tern Offline Send Email
Sep 1, 2004
10:43 pm
Matt. If you seek printer information, I recomend the EPSON printer commands this is still alive at using the RS-232 port, the major models of printers work on...
727 Moz
list@... Send Email
Sep 2, 2004
12:47 am
... I've recently only worked with barcode/receipt printers that use thermal paper rolls. If that's not what you're looking for I'm not sure where you'd look,...
Messages 698 - 727 of 2261   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help