|
|
|
![]() |
|
|||||||
|
||||||||
|
|
Thread Tools | Rate Thread | Display Modes |
|
#2
|
|||
|
|||
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 |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
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 |