Chief Delphi

Chief Delphi (http://www.chiefdelphi.com/forums/index.php)
-   Extra Discussion (http://www.chiefdelphi.com/forums/forumdisplay.php?f=68)
-   -   paper: A programming template for Autonomous Mode (http://www.chiefdelphi.com/forums/showthread.php?t=63310)

garyk 05-02-2008 10:31

paper: A programming template for Autonomous Mode
 
Thread created automatically to discuss a document in CD-Media.

A programming template for Autonomous Mode by garyk

David Bryan 05-02-2008 10:47

Re: paper: A programming template for Autonomous Mode
 
:)
Dear GaryK or anyone willing to hear.

I took this working section out of user_routines.c and renamed part of it and placed it into user_routines_fast.c. It will not compile. I cannot find my error. The same program will compile back in user_routines.c.

Here is the program:

/************************************************** *****************************
* FUNCTION NAME: Lim_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 Lim_Mix (int intermediate_valu)
{ // < I get a compile error here.
static int limited_valu;

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

// when i place the cursor over the variable, limited_valu
// i get the bubble [limited_valu = Out of Scope].
// please help

// thanks - David Bryan Team 818

Alan Anderson 05-02-2008 12:04

Re: paper: A programming template for Autonomous Mode
 
Quote:

Originally Posted by David Bryan (Post 692577)
I took this working section out of user_routines.c and renamed part of it and placed it into user_routines_fast.c. It will not compile.

The error you got seems like one that is actually caused by a problem with the code before it not being complete, with a missing semicolon or close brace. It looks like you might have put it in the middle of one of the existing functions, instead of between them. Double-check to make sure the preceding function in user_routines_fast.c didn't get interfered with when you inserted your code.

Steve_Alaniz 05-02-2008 12:43

Re: paper: A programming template for Autonomous Mode
 
David,
I did a cut and paste of the code and inserted it in My user_routines_fast
If I place the code in the autonomous section of the program I get the compile error.
If I place it above with the other function declarations it compiles fine.
Somebody with a greater knowledge of why C does what it does will have to explain why that happens. (I'm just a hacker..I like to stay on the hardware side of things...Instead of stupid compile errors we get blue smoke or sparks and that makes trouble shooting REAL easy!)
Anyway, I assume you can place the code outside the autonomous area and still call it. I may be wrong but that MIGHT solve the problem.

Steve


PS ...Oh you're placing a function within a function. User_Autonomous_Code . I don't think that's legal.

Steve

garyk 05-02-2008 13:11

Re: paper: A programming template for Autonomous Mode
 
Quote:

Originally Posted by David Bryan (Post 692577)
:)
Dear GaryK or anyone willing to hear.

I took this working section out of user_routines.c and renamed part of it and placed it into user_routines_fast.c. It will not compile. I cannot find my error. The same program will compile back in user_routines.c.

Here is the program:

/************************************************** *****************************
* FUNCTION NAME: Lim_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 Lim_Mix (int intermediate_valu)
{ // < I get a compile error here.
static int limited_valu;

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

// when i place the cursor over the variable, limited_valu
// i get the bubble [limited_valu = Out of Scope].
// please help

// thanks - David Bryan Team 818

Hi, David:

I wonder also if you put this function inside another function. Did you put it where it says:


/* Add your own autonomous code here. */
?

If I put your code there I get an error on the "unsigned char" line.

Try removing all the code in question, and make sure you get a clean compile. Then, add your code at the very end of the file and I think it will compile.

The code you have is a complete function and it can't be put in the middle of another function (and I apologize if you already know this.) If it works with your code at the end of user_routines_fast.c then you can call it where you need it.

BTW, if you just need a limit_mix function for your autonomous routine, you can call the one in user_routines.c - the significance of the function is determined by where you call it from, not which file it's in. To do so, add this
line with the other function prototypes in user_routines.h:

unsigned char Limit_Mix (int);

Make sure it compiles after you remove your own Lim_Mix(), then you can
call Limit_Mix from your autonomous routine.

Gary

David Bryan 07-02-2008 10:19

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!!


All times are GMT -5. The time now is 08:29.

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