Go to Post Ahem, a climbing xerox machine. Also known as the scariest type of xerox machine this Earth has ever seen. - itsjustjon [more]
Home
Go Back   Chief Delphi > ChiefDelphi.com Website > Extra Discussion
CD-Media   CD-Spy  
portal register members calendar search Today's Posts Mark Forums Read FAQ rules

 
 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #6   Spotlight this post!  
Unread 07-02-2008, 10:19
David Bryan David Bryan is offline
Registered User
#0818 (Steel Armadillo)
 
Join Date: Jan 2002
Location: Warren Consolidated Schools
Posts: 8
David Bryan is an unknown quantity at this point
Re: paper: A programming template for Autonomous Mode

Hey Team
Thanks for your answers.
I set down with a C programmer Nathan and we solved the problem:

1) Added to IFI_utilities.h

2) char Limit_Mix (int); // ADDED 2/07/08 active in user_routines.c


Added to user_routines_fast.c and removed from user_routines.c

3)
/******************************** page 2.6 ***************************************
* FUNCTION NAME: Limit_Mix
* PURPOSE: Limits the mixed value for one joystick drive.
* CALLED FROM: Default_Routine, this file
* ARGUMENTS:
* Argument Type IO Description
* -------- ---- -- -----------
* intermediate_value int I
* RETURNS: unsigned char
************************************************** *****************************/

unsigned char Limit_Mix (int intermediate_value)
{
static int limited_value;

if (intermediate_value < 2000)
{
limited_value = 2000;
}
else if (intermediate_value > 2254)
{
limited_value = 2254;
}
else
{
limited_value = intermediate_value;
}
return (unsigned char) (limited_value - 2000);
}


4) pwm2_tiltup = Limit_Mix(2000 + pot_08 - pot_07 + 127);

5) When we do that all of it will compile!

Without lines 1, 2 above I could not make it work, but now it does thanks
to GM programmer Nathan Mackarewicz!

Problem I think is now solved!
Thanks!!
Reply With Quote
 


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
A programming template for Autonomous Mode garyk Programming 2 05-02-2008 20:08
Help needed in autonomous programming for hybrid mode Team_STORM Programming 3 21-01-2008 19:11
White Paper Discuss: C Programming and Autonomous Modes for Newbies cbolin Extra Discussion 3 09-01-2008 19:32
Help for finding Autonomous Programming Template vito3693 VEX 2 23-11-2006 19:01
Programming Autonomous mode Jared Stofflett Programming 3 11-11-2003 09:32


All times are GMT -5. The time now is 00:18.

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