Keyboard Shortcuts
ctrl + shift + ? :
Show all keyboard shortcuts
ctrl + g :
Navigate to a group
ctrl + shift + f :
Find
ctrl + / :
Quick actions
esc to dismiss
Likes
- Electronics101
- Messages
Search
How limitting do you think a scope would be if it were limitted to 35 volts?
How limitting do you think a scope would be if it were limitted to
35 volts? There is a PC based scope - USB interfaced, that I have been eyeballing. It isn't cheap, around $300.00, but it is dual channel and rated up to 60 Mhz which should be fine for me. The real kicker that I am liking about the PC scopes is recording. For some reason, I think that is important, not sure why, but I do ;- ) The drawback is that voltage limit though. While most everything I check is 5~12 volts, I have checked the output of my Stepper Driver and that is at 41 volts. This is the one that is being considered Chris |
Re: Trouble sleeping leads to a number of questions about Micros & discretes...
Gates wet dream - I dunno, some things are going that way in a manor
of speaking. It seems as though the convergence of various technologies (TV, Phone, Computers, Security systems, home automation systems, etc.) is making it more like a probability than not. Even Linux and that "Way of computing life" is running a parallel line (Free for everyone who wants it). Since the exploitation of the internet into the consumer realm, the home computer has become much less of a "Computer" much more of a "Communicator" for many people. I would wager a guess that there are probably as many people using computers now for just internet and email than for all other functions. Frankly, I am sick of all the upgrades of software I have to keep buying to run my business. I would much prefer to sit at this "Terminal" and use the applications via on-line through the internet. I don't have to upgrade the software or pay for it. It would bring the power of any application to any user - I am sure you would have to pay for it one way or another. So for me, who is surrounded by computers and has too many here now, I would like to see them morph back into a terminal that allows me to use any software out there without having to buy it and then continue to pay for it through upgrades that do nothing more than complicate it to point of being useless. I think the trend is going to go in that direction more and more over the comming decades. Anyway, I don't think I will ever attempt to make a computer out of discretes or even relays - I just don't have enough room or money ;-) Chris --- In Electronics_101@..., "Roy J. Tellason" <rtellason@...> wrote: used in reality.the world would be under ten.At one time it looked like the Internet was going to make that a connected to me thatyour TV.That sounds like gates' wet dream, or something. And it seems to there's a whole lot of folks that are not going to be inclined tobuy into such nonsense.can be killed but can't be tamed. --Robert A. Heinlein, "The PuppetMasters" -lies. --James M Dakin |
Re: PIC interrupts
--- In Electronics_101@..., "Len Shelton" <len@...> wrote:
Predko and have a question about the interrupts he uses in his assemblercode for the 16F684. Like other PICs I am familiar with, the 16F684 seems touse 0x04 as the interrupt vector, but Myke doesn't seem to use it. Instead hejust repeatedly bit checks the INTCON flags. Doesn't the PIC jump to 0x04anyhow on an interrupt? What am I missing? Is it that he is clearing theinterrupt flag before the interrupt latency cycles have expired? If so, am Icorrect that the newer PICs don't have such interrupt latency?(twice even) and it has not shown up. I may be on moderated status becauseI have never posted there before, but I figured the moderator would haveauthorized my post by now.Sure, but the PIC will only branch to the interrupt vector if interrupts are enabled. He probably didn't do that because he wanted to test the flags directly. FWIW, some peripherals on some devices not only require GIE to be set but they also require PEIE to be set. Richard |
Re: Best way of replying
Roy J. Tellason
On Friday 06 October 2006 09:17 am, LT Ron Wright wrote:
M Dakin, --- In Electronics_101@..., "Roy J. Tellason"That's the third or fourth time you've done that -- responding to a name that's included in my sig, not to me... And we've touched on this before. -- Member of the toughest, meanest, deadliest, most unrelenting -- and ablest -- form of life in this section of space, a critter that can be killed but can't be tamed. --Robert A. Heinlein, "The Puppet Masters" - Information is more dangerous than cannon to a society ruled by lies. --James M Dakin |
Re: Trouble sleeping leads to a number of questions about Micros & discretes...
Roy J. Tellason
On Friday 06 October 2006 02:06 am, Dave Mucha wrote:
That sounds like gates' wet dream, or something. And it seems to me thatYes, that's why people thought the total number of computers used inAt one time it looked like the Internet was going to make that a reality. there's a whole lot of folks that are not going to be inclined to buy into such nonsense. -- Member of the toughest, meanest, deadliest, most unrelenting -- and ablest -- form of life in this section of space, a critter that can be killed but can't be tamed. --Robert A. Heinlein, "The Puppet Masters" - Information is more dangerous than cannon to a society ruled by lies. --James M Dakin |
Re: Trouble sleeping leads to a number of questions about Micros & discretes...
Roy J. Tellason
On Thursday 05 October 2006 06:16 pm, Stefan Trethan wrote:
Those large early computers (and it really doesn't matter if we areHere's one: ...if anybody's interested. He cheated, though, and used a chip for the "main memory". -- Member of the toughest, meanest, deadliest, most unrelenting -- and ablest -- form of life in this section of space, a critter that can be killed but can't be tamed. --Robert A. Heinlein, "The Puppet Masters" - Information is more dangerous than cannon to a society ruled by lies. --James M Dakin |
Re: Best way of replying
Roy J. Tellason
On Thursday 05 October 2006 12:54 pm, AnaLog Services, Inc. wrote:
Many folks do not trim previous material, and this often makes looking forI think you've nailed the other significant point in this... I understand the part that top posting is considered some kind of rudeSo is leaving in piles of extraneous crap that's not pertinent to the reply. :-) -- Member of the toughest, meanest, deadliest, most unrelenting -- and ablest -- form of life in this section of space, a critter that can be killed but can't be tamed. --Robert A. Heinlein, "The Puppet Masters" - Information is more dangerous than cannon to a society ruled by lies. --James M Dakin |
PIC interrupts
Len Shelton
I've been reading through my 123 Microcontroller Experiments by Myke Predko
toggle quoted message
Show quoted text
and have a question about the interrupts he uses in his assembler code for the 16F684. Like other PICs I am familiar with, the 16F684 seems to use 0x04 as the interrupt vector, but Myke doesn't seem to use it. Instead he just repeatedly bit checks the INTCON flags. Doesn't the PIC jump to 0x04 anyhow on an interrupt? What am I missing? Is it that he is clearing the interrupt flag before the interrupt latency cycles have expired? If so, am I correct that the newer PICs don't have such interrupt latency? Here is a sample of the code: btfss INTCON, T0IF goto $ - 1 bcf Servo1Pin movwf TMR0 bcf INTCON, T0IF Is the PIClist dead? I tried to send a message there two weeks ago (twice even) and it has not shown up. I may be on moderated status because I have never posted there before, but I figured the moderator would have authorized my post by now. Thanks, Len |
Re: Best way of replying
Hi John, ------ (optional but welcome)
toggle quoted message
Show quoted text
Outlook defaults to top posting. This assumes I am current with the thread and only want the most recent post. If not, I have to read bottom to top. Very unnatural. Bottom posting seems a more natural read. How do I bottom post with the greatest ease? I like interline/interleaved posts, when only two people are posting. Add a top post to an interline post, then add a bottom post, I'm getting dizzy. Snipping is great medicine for long winded posts. Works well with interline posts. -------------------------------------------------------------------------------- Mark Twain sent his latest manuscript to his publisher with a 10 page synopsis. The last line read: I'm sorry for the long winded description, I did not have time to write a short one. The most thought in the fewest words is sublime. Joe ----- Original Message -----
From: John Popelish To: Electronics_101@... Sent: Thursday, October 05, 2006 9:48 PM Subject: Re: [Electronics_101] Best way of replying jamodeo1@... wrote: > Gentlemen, > Please reduce your boil to a simmer. > Where is the common ground, re: email protocol ? > I need to know as I maybe an offender. Sorry, I can't assume to know the consensus, I can only do my best to support my own opinions when asked for them. I'm not at a boil, I am just telling how the alternatives look from my vantage point. As far as I am concerned, you are responsible for your own decisions and the consequences of those decisions, as I am for mine. What do you think of the arguments offered, so far? |
Re: Best way of replying
Stefan Trethan
On Fri, 06 Oct 2006 21:02:58 +0200, Bob Hyland-PMP <BobHyland@...> wrote:
I dunno, i don't see a problem with verbs in german? Maybe you have an example to illustrate the point? Anyway, german and english are extremely similar if you compare them to some other languages.... ST |
Re: Best way of replying
Bob Hyland-PMP
--- "AnaLog Services, Inc." <wireline@...> wrote:
BAH! (*waving the paw*) English got NOTHIN' on German. Observer these quotes from Mark Twain: The Germans have an inhuman way of cutting up their verbs. Now a verb has a hard time enough of it in this world when it's all together. It's downright inhuman to split it up. But that's just what those Germans do. They take part of a verb and put it down here, like a stake, and they take the other part of it and put it away over yonder like another stake, and between these two limits they just shovel in German. - Mark Twain's Speeches, "Disappearance of Literature" Whenever the literary German dives into a sentence, that is the last you are going to see of him till he emerges on the other side of his Atlantic with his verb in his mouth. - A Connecticut Yankee in King Arthur's Court Or, this gem from his text "The Awful German Language": ...finally, all the parentheses and reparentheses are massed together between a couple of king-parentheses, one of which is placed in the first line of the majestic sentence and the other in the middle of the last line of it -- after which comes the VERB, and you find out for the first time what the man has been talking about... Bob H. |
Re: Trouble sleeping leads to a number of questions about Micros & discretes...
Stefan Trethan
On Fri, 06 Oct 2006 20:24:08 +0200, Bob Hyland-PMP <BobHyland@...> wrote:
If you had 4 computers only, it would be highly impractical to use any one of them. So in effect, for us it'd be like there were no computers at all. What i was meaning to say is it makes little difference for most of the population if there are 4 no computers at all. So can the world function with only 4 computers like Dave said? Yes - just like it can function without any at all. Even with networking 4 computers in the world would be much more similar to no computers than our current situation, so i don't agree with Dave 4 computers would be enough. ST |
Re: Trouble sleeping leads to a number of questions about Micros & discretes...
Bob Hyland-PMP
--- "Stefan Trethan" <stefan_trethan@...> wrote:
*snip* So what?Stefan: That is like arguing that the world (or even the Universe) would continue to function without humans. This is true, but hardly interesting. At least Ron's comments contextualize the conversation. Just my thoughts... Bob H. (electronic philosopher...) |
Re: Best way of replying
Stefan Trethan
On Fri, 06 Oct 2006 17:40:51 +0200, WT <pharmapack@...> wrote:
Actually, it is partly true that languages in Far East Asia reverses That's true for many languages, for example German/English. Often you'll get a sentence that's just awkward, not strictly wrong. It is much easier once you can think in the language you are trying to write in, compared to thinking up what you want to say in your mother tongue and translating it. I catch myself all the time making mistakes of that kind, and there are many more cases where i don't catch myself ;-). It probably doesn't help that i never properly learned grammar, even for German. I always got by allright using "what sounds right". I won't even start about english grammar... Anyway, this is an electronics forum, so it doesn't matter. ST |
Re: Best way of replying
WT
Actually, it is partly true that languages in Far East Asia reverses
toggle quoted message
Show quoted text
subject, verb, etc. depending on which country we are referring to. Take a simple example of Chinese (including Japanese and Korean) names. It always start with the family name first, then the first name. Another Chinese language difference is that there is no such thing as plural unless you add an additive. And hence, you will notice things like "you is" being spoken or written by a Far East Asian. But, relations like uncle, aunt, etc. are very specific to the tune of 1st, 2nd, or 3rd paternal or maternal uncle/aunt. In the Philippines, subjects and verbs are reverse as well. You say "I am going there" in English but you say "Going I am there" in Pilipino (the Philippine national language). As to being polite, it is very true. And the Japanese carries it to the extreme. When they say "yes, yes", they do not meant they agree to what you are saying. They only meant they understood what you are saying. ----- Original Message -----
From: "AnaLog Services, Inc." <wireline@...> To: <Electronics_101@...> Sent: Friday, October 06, 2006 11:16 PM Subject: Re: [Electronics_101] Re: Best way of replying The notion that other cultures might reverse left and right is of coursefor many folks with English as a second language. That is because weconstruct our sentences a bit differently than most other languages. Subject, verb,with whenthe military though, right?) 2really there's no way. I'm told that can be quite frustrating if you help me 4 my shool project" (which i should be doing myself but can't be |
Re: Best way of replying
AnaLog Services, Inc.
The notion that other cultures might reverse left and right is of course silly. However, it is true that English sentence structure is difficult for many folks with English as a second language. That is because we construct our sentences a bit differently than most other languages. Subject, verb, and modifier positioning in English is often not intuitive for speakers of many other languages.
toggle quoted message
Show quoted text
----- Original Message -----
From: "Stefan Trethan" <stefan_trethan@...> To: <Electronics_101@...> Sent: Friday, October 06, 2006 9:02 AM Subject: Re: [Electronics_101] Re: Best way of replying On Fri, 06 Oct 2006 15:05:06 +0200, LT Ron Wright <mccrpt@...> |
Re: Best way of replying
Stefan Trethan
On Fri, 06 Oct 2006 15:05:06 +0200, LT Ron Wright <mccrpt@...> wrote:
My Ya really oughta know howta spell tha' her bein' ya wife an all! ;-) You probably meant that as a joke, but you are with the military after all... ;-) (And before i start a discussion: that _WAS_ meant as a joke. You are with the military though, right?) I wasn't aware far east people tend to reverse the meaning of words, but what i'm told is that some are reluctant to offend or disappoint people. So if you ask for something they'll sometimes say "sure, no problem" when really there's no way. I'm told that can be quite frustrating if you aren't aware of it. I don't think language was ever a problem on this list, but what is a problem is people not even trying to use proper language, like "I need u 2 help me 4 my shool project" (which i should be doing myself but can't be bothered). ST |
Re: Best way of replying
AnaLog Services, Inc.
I have never seen top posting create as many problems as bottom posting does. The arguments against top posting too much remind me of the irrational objection to ending sentences a preposition with.
toggle quoted message
Show quoted text
----- Original Message -----
From: John Popelish To: Electronics_101@... Sent: Thursday, October 05, 2006 10:11 PM Subject: Re: [Electronics_101] Best way of replying AnaLog Services, Inc. wrote: > What you say is all true, but top posting makes life easier > if you are looking at hundreds of mailing list messages every day. (snip) Every one of your and my posts to this group are received by 4284 members of this list and reviewed by who knows how many more people in the future. You are more concerned by what is efficient for you than what is efficient for all of them. You don't take much effort to trim the posts you are replying so that your response makes good sense and you are not concerned with people searching your contributions and making sense of them in the future. You also do not have your email program set up to wrap lines to a reasonable length, so I had to do this wrapping for you, before I could display your words in an intelligible way before responding. These are certainly your choices to make. But don't be surprised if many of that 4284 have figured out that you are not at all interested in their problems with your message, and have kill filed you, rather than take the effort to make sense of your posts. You see poor practices involving trimming and editing and your solution is to add yet another poor practice, to allow people to read read responses without having to see those poor practices. But your solution doesn't improve communications. It makes communication worse, and a lot worse if everyone did as you do. We would have only long quoted, reverse order strings with uncontexted replys appearing at the top of a big mess. The difficulty in understanding the conversation might cut down on the number of responses, I have to admit. That would lower your daily message count, but there is an easier way for you to accomplish that. The best argument I can make is to try to set an example that would encourage others to take the effort to help the reader, rather than do what takes the least effort from me. |
Re: Trouble sleeping leads to a number of questions about Micros & discretes...
Stefan Trethan
On Fri, 06 Oct 2006 15:22:49 +0200, LT Ron Wright <mccrpt@...> wrote:
ST,So what? Dave said the world would function with 4 computers, i said it has worked for quite a while without any at all. I dunno what you are on about? Nobody was considering the meaning of life, the universe, and everything here, nor was anyone discussing the merits of computers. ST |
Re: Trouble sleeping leads to a number of questions about Micros & discretes...
LT Ron Wright
ST,
The world did ok until electricity and computers, that is the half that survived. Before 1900 half the kids did not see the age of 6. We did not get Gout and cancer related deceases, but then again cancer is normally found late in life after 50 and not too long ago if you were over 40 you were living on borrowed time. Today if you die from natural causes before 80 you probably lived ruff and wild life. We tend to live in our present time and think our generation is going to see the world end, hi. We are the chosen. ron --- In Electronics_101@..., "Stefan Trethan" <stefan_trethan@...> wrote: 4 'computers' theif you limit the definition to the PC and connect everyone to electricity.Internet. You'd need at least a somewhat capable micro locally, and to me this isthe same as a computer (because it is). |
to navigate to use esc to dismiss