Go to Post [Programming a swerve drive] It's really really simple, unless you actually do it. - Ether [more]
Home
Go Back   Chief Delphi > Technical > Programming
CD-Media   CD-Spy  
portal register members calendar search Today's Posts Mark Forums Read FAQ rules

 
Closed Thread
 
Thread Tools Rate Thread Display Modes
  #1   Spotlight this post!  
Unread 07-02-2006, 21:04
demerski demerski is offline
Registered User
AKA: JJD
FRC #1027 (Mechatronic Maniacs)
Team Role: Mentor
 
Join Date: Feb 2005
Rookie Year: 2004
Location: West Springfield, MA
Posts: 5
demerski is an unknown quantity at this point
Re: Gear tooth sensor / GTS on DIO 3,4,5,6?

Quote:
Originally Posted by Alan Anderson
One more thing occurs to me, and please forgive my nagging about it, but can you double-check to make sure you're not still testing the state of the input pin and deciding whether to increment or decrement the counter? If that code is still there, then you're actually getting counts for the short pulse (because you're always reading it as low by the time you test it), but you're counting one way and then immediately the other way for the long pulses so it doesn't look like you're counting at all.
No problem...it is easy to overlook the obvious! I think we're ok, though. For the GTS, the interrupt handler looks like this:

Code:

void Int_3_Handler(unsigned char RB4_State)
{
  // this function will be called when an interrupt 3 occurs
  LF_Count = LF_Count + 1;
}
So it should just increment on any interrupt, no? For the encoders, it was set up like this:
Code:

void Int_4_Handler(unsigned char RB5_State)
{
  // this function will be called when an interrupt 4 occurs
  if ((rc_dig_in04 == 0) && (LR_Last_State == 1))
  {
    if (LR_PHASE_B_PIN == 0)
    {
      LR_Count = LR_Count - 1;
    }
    else
    {
      LR_Count = LR_Count + 1;
    }
  }
// remember the input state for next time
LR_Last_State = rc_dig_in04;
}
Closed Thread


Thread Tools
Display Modes Rate This Thread
Rate This Thread:

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Will the gear tooth break? sanddrag Technical Discussion 11 23-01-2006 14:24
Gear Tooth Sensor AMIRAM Electrical 2 22-01-2006 04:09
Gear tooth sensor vs. Optical Encoders Avarik Programming 7 17-01-2006 10:18
Accelerometer vs Gear Tooth Sensors zdeswarte Electrical 4 22-01-2005 15:35
gears Michael Leicht Inventor 12 16-09-2004 10:52


All times are GMT -5. The time now is 21:12.

The Chief Delphi Forums are sponsored by Innovation First International, Inc.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi