hybrid programming?

Alright we are a rookie team and don’t have a real programmer helping us. We got this sample code from Timville, for hybrid but it doesn’t work in our program. Can someone please tell us what is wrong with this code, the bold part is the part we don’t know if it is wrong:


  • FILE NAME: user_routines_fast.c <FRC VERSION>
  • DESCRIPTION:
  • This file is where the user can add their custom code within the framework
  • of the routines below.
  • USAGE:
  • You can either modify this file to fit your needs, or remove it from your
  • project and replace it with a modified copy.
  • OPTIONS: Interrupts are disabled and not used by default.

*******************************************************************************/

#include “ifi_aliases.h”
#include “ifi_default.h”
#include “ifi_utilities.h”
#include “user_routines.h”
#include “user_Serialdrv.h”

/*** DEFINE USER VARIABLES AND INITIALIZE THEM HERE ***/

/*******************************************************************************

  • FUNCTION NAME: InterruptVectorLow
  • PURPOSE: Low priority interrupt vector
  • CALLED FROM: nowhere by default
  • ARGUMENTS: none
  • RETURNS: void
  • DO NOT MODIFY OR DELETE THIS FUNCTION
    *******************************************************************************/
    #pragma code InterruptVectorLow = LOW_INT_VECTOR
    void InterruptVectorLow (void)
    {
    _asm
    goto InterruptHandlerLow /jump to interrupt routine/
    _endasm
    }

/*******************************************************************************

  • FUNCTION NAME: InterruptHandlerLow
  • PURPOSE: Low priority interrupt handler
  • If you want to use these external low priority interrupts or any of the
  • peripheral interrupts then you must enable them in your initialization
  • routine. Innovation First, Inc. will not provide support for using these
  • interrupts, so be careful. There is great potential for glitchy code if good
  • interrupt programming practices are not followed. Especially read p. 28 of
  • the “MPLAB® C18 C Compiler User’s Guide” for information on context saving.
  • CALLED FROM: this file, InterruptVectorLow routine
  • ARGUMENTS: none
  • RETURNS: void
    ******************************************************************************/
    #pragma code
    #pragma interruptlow InterruptHandlerLow save=PROD /
    You may want to save additional symbols. */

void InterruptHandlerLow ()
{
unsigned char int_byte;
if (INTCON3bits.INT2IF && INTCON3bits.INT2IE) /* The INT2 pin is RB2/DIG I/O 1. /
{
INTCON3bits.INT2IF = 0;
}
else if (INTCON3bits.INT3IF && INTCON3bits.INT3IE) /
The INT3 pin is RB3/DIG I/O 2. /
{
INTCON3bits.INT3IF = 0;
}
else if (INTCONbits.RBIF && INTCONbits.RBIE) /
DIG I/O 3-6 (RB4, RB5, RB6, or RB7) changed. /
{
int_byte = PORTB; /
You must read or write to PORTB /
INTCONbits.RBIF = 0; /
and clear the interrupt flag /
} /
to clear the interrupt condition. /
else
{
CheckUartInts(); /
For Dynamic Debug Tool or buffered printf features. */
}
}

/*******************************************************************************

  • FUNCTION NAME: User_Autonomous_Code

  • PURPOSE: Execute user’s code during autonomous robot operation.

  • You should modify this routine by adding code which you wish to run in

  • autonomous mode. It will be executed every program loop, and not

  • wait for or use any data from the Operator Interface.

  • CALLED FROM: main.c file, main() routine when in Autonomous mode

  • ARGUMENTS: none

  • RETURNS: void
    ******************************************************************************/
    void User_Autonomous_Code(void)
    {
    /
    Initialize all PWMs and Relays when entering Autonomous mode, or else it
    will be stuck with the last values mapped from the joysticks. Remember,
    even when Disabled it is reading inputs from the Operator Interface.
    */
    pwm01 = pwm02 = pwm03 = pwm04 = pwm05 = pwm06 = pwm07 = pwm08 = 127;
    pwm09 = pwm10 = pwm11 = pwm12 = pwm13 = pwm14 = pwm15 = pwm16 = 127;
    relay1_fwd = relay1_rev = relay2_fwd = relay2_rev = 0;
    relay3_fwd = relay3_rev = relay4_fwd = relay4_rev = 0;
    relay5_fwd = relay5_rev = relay6_fwd = relay6_rev = 0;
    relay7_fwd = relay7_rev = relay8_fwd = relay8_rev = 0;

    while (autonomous_mode) /* DO NOT CHANGE! /
    {
    if (statusflag.NEW_SPI_DATA) /
    26.2ms loop area /
    {
    Getdata(&rxdata); /
    DO NOT DELETE, or you will be stuck here forever! */

**
void Initialization()
{
bMotorReflected[port2] = true; //Reflect Motor
frcDigitalIODirection[pio3] = dirInput; //IR Output 1 on Digital IO 3
frcDigitalIODirection[pio4] = dirInput; //IR Output 2 on Digital IO 4
frcDigitalIODirection[pio5] = dirInput; //IR Output 3 on Digital IO 5
frcDigitalIODirection[pio6] = dirInput; //IR Output 4 on Digital IO 6
}

task Autonomous()
{
int IRswitch0;
int IRswitch1;
int IRswitch2;
int IRswitch3;

while(true)
{
   IRswitch0 = frcDigitalIOValue[pio3];  //Update Variables
   IRswitch1 = frcDigitalIOValue[pio4];  //So we can see status in the Debugger
   IRswitch2 = frcDigitalIOValue[pio5];
   IRswitch3 = frcDigitalIOValue[pio6];

   if(IRswitch0 == 1)  //If Switch 1 is pressed (it pulses, doesn't remain on)
   {
     motor[port1] = 50;
     motor[port2] = 50;
   }

   if(IRswitch1 == 1)  //If Switch 2 is pressed
   {
     motor[port1] = 0;
     motor[port2] = 0;
   }

   if(IRswitch2 == 1)  //If Switch 3 is pressed
   {
     motor[port1] = -50;
     motor[port2] = 50;
   }

   if(IRswitch3 == 1)  //If Switch 4 is pressed
   {
     motor[port1] = 50;
     motor[port2] = -50;
   }
}

}**

    /* Add your own autonomous code here. */

    Generate_Pwms(pwm13,pwm14,pwm15,pwm16);

    Putdata(&txdata);   /* DO NOT DELETE, or you will get no PWM outputs! */
}

}
}

/*******************************************************************************

  • FUNCTION NAME: Process_Data_From_Local_IO
  • PURPOSE: Execute user’s realtime code.
  • You should modify this routine by adding code which you wish to run fast.
  • It will be executed every program loop, and not wait for fresh data
  • from the Operator Interface.
  • CALLED FROM: main.c
  • ARGUMENTS: none
  • RETURNS: void
    ******************************************************************************/
    void Process_Data_From_Local_IO(void)
    {
    /
    Add code here that you want to be executed every program loop. */

}

/*******************************************************************************

  • FUNCTION NAME: Serial_Char_Callback
  • PURPOSE: Interrupt handler for the TTL_PORT.
  • CALLED FROM: user_SerialDrv.c
  • ARGUMENTS:
  • Argument             Type    IO   Description
    
  • --------             ----    --   -----------
    
  • data        unsigned char    I    Data received from the TTL_PORT
    
  • RETURNS: void
    *******************************************************************************/

void Serial_Char_Callback(unsigned char data)
{
/* Add code to handle incomming data (remember, interrupts are still active) */
}

/******************************************************************************/
/******************************************************************************/
/******************************************************************************/

We seriously need help. We have no other help in programming, other than chiefdelphi.com:confused:

Uh, that looks like RobotC syntax… If you’re getting syntax errors or undefined function sort of things, that’s why. You may have to start from scratch, or look for sample code for normal C.

Yep, you’re trying to use ROBOTC code in MPLAB, which just won’t work.

Download ROBOTC: http://www.robotc.net/ifi/frc/