Go to Post Gosh, I wish that we would've named IndianaFIRST after a candy. - Andy Baker [more]
Home
Go Back   Chief Delphi > Other > VEX
CD-Media   CD-Spy  
portal register members calendar search Today's Posts Mark Forums Read FAQ rules

 
Reply
 
Thread Tools Rate Thread Display Modes
  #1   Spotlight this post!  
Unread 07-04-2008, 19:29
programMORT11
 
Posts: n/a
Re: using mplab with vex

Basically, you would use Kevin Watson's FRC code and use that as your project file, since VEX and FRC both use the PIC8717F22 as a base.

Analog inputs (used for analog sensors like a light sensor) are defined as rc_ana_in01, etc. But to get an input from them you need to use the ADC function, so you would do Get_ADC_Result(rc_ana_in01) to get that value.

Digital inputs are a lot simpler, and you can simply retrun rc_dig_in01.

Digital outputs are rc_dig_out01 etc, but only certain ports can be used as digital outputs.

Motors and servos, are controlled by pwm definitions so you would say, pwm01 = 255 for the motor on motor input one to go full forward (255 full forward, 127 neutral, 0 full backward)

Transmitters i.e., the joysticks, are defined as PWM_in1 and so on. Your defintions can go up to PWM_in12 since you can use two tranmitters, with the second tranmitter using the range from 7 to 12. The good thing about the joysticks is that they map directly to the motors, so when
pwm01 = PWM_in1, if PWM_in1 = 255 (full forward), then you have pwm01 going full forward.

The buttons on the back of the VEX transmitter (Channel 5 and 6) are defined using BUTTON_FWD_THRESH as the button on the top, and BUTTON_REV_THRESH as the button on the bottom.

if(PWM_in6 > BUTTON_FWD_THRESH)
pwm06 = 255;
else if (PWM_in6 < BUTTON_REV_THRESH)
pwm06= 0;
else
pwm06=127;

The above code says that if the button on the top is pushed the motor goes full forward, if the button on the bottom is pushed, full backward, otherwise stay on neutral.

The most important thing about this code is knowing where to place it. ALL teleop code that needs to be executed must be placed in user_routines.c in Proccess_Data_from_Master_uP(). You can obviously make functions in other files in order to modularize your code, but if it's run in teleop mode (with the transmitter) you need to place the function calls in here.

Autonomous code is found in user_routines_fast.c and in the if case "if(autonomous_mode)" or something like that. Autonomous code can only be implemented if called in that if case, since this prevents sabotage during the competition.

Make sure that if you do write your own functions to handle the robot, like with the transmitter, that you comment out Default_Routine() in Process_Data_from_Master so that you don't have multiple definitions getting passed, and your robot not moving.

There is a lot of documentation in Kevin's code, like aliases, so it would be good to read through it, and there is always the documentation on the VEXLabs site.
Reply With Quote
  #2   Spotlight this post!  
Unread 07-04-2008, 19:53
tseres's Avatar
tseres tseres is offline
obsessed with FIRST...
FRC #1565 (Think Tank Tech)
Team Role: Leadership
 
Join Date: Apr 2007
Rookie Year: 2007
Location: Cambridge, ON
Posts: 305
tseres is a glorious beacon of lighttseres is a glorious beacon of lighttseres is a glorious beacon of lighttseres is a glorious beacon of lighttseres is a glorious beacon of lighttseres is a glorious beacon of light
Re: using mplab with vex

just a quick correction:

DONT comment out Process_Data_from_Master_uP(), as that is where the pwms are updated from. comment out default_routine, and call your own custom functions.
__________________


Reply With Quote
  #3   Spotlight this post!  
Unread 07-04-2008, 21:04
programMORT11
 
Posts: n/a
Re: using mplab with vex

right that's what i meant
Reply With Quote
  #4   Spotlight this post!  
Unread 08-04-2008, 08:21
llama llama is offline
Registered User
AKA: Michael Goelz
FRC #2077 (Kettle Moraine Robotics/Laser Robotics)
Team Role: Engineer
 
Join Date: Jan 2008
Rookie Year: 2006
Location: Wisconsin (kettle moraine area)
Posts: 25
llama is an unknown quantity at this point
Send a message via AIM to llama
Re: using mplab with vex

thanks for all of your help guys. as soon as i get home from school today ill have to try it out. ill let you know how it goes
Reply With Quote
  #5   Spotlight this post!  
Unread 09-04-2008, 19:07
adamdb adamdb is offline
Registered User
#1583
 
Join Date: Feb 2005
Location: Parker, CO
Posts: 64
adamdb has a spectacular aura aboutadamdb has a spectacular aura aboutadamdb has a spectacular aura about
Re: using mplab with vex

Another option is to use the WPILib library (EasyC uses it) and MPLab. Do a Google search for WPILib. There is an excellent doc on how to use it and what functions are available.

You can't get quite as low level as you can with the default FRC code, as it insulates you from needing to know some of the low level details, but it is quite usable.

I thought the Vex used the 18F8520 like the old 2004/2005 FRC boards?
__________________
Adam Bryant
Programming Mentor
Team 1583
Ridge View Academy Rambotics
Reply With Quote
  #6   Spotlight this post!  
Unread 21-04-2008, 20:58
programMORT11
 
Posts: n/a
Re: using mplab with vex

as far as i know, its the same one as the current board, and the same default code runs
Reply With Quote
  #7   Spotlight this post!  
Unread 21-04-2008, 22:02
fstumpo's Avatar
fstumpo fstumpo is offline
Question Everything!
FRC #1640 (SAB-BOT-AGE)
Team Role: Mentor
 
Join Date: Jan 2006
Rookie Year: 2006
Location: Downingtown
Posts: 9
fstumpo is an unknown quantity at this point
Re: using mplab with vex

The Vex Controller is definately based on the PIC18F8520 not the PIC18F8722 plus some of the aliases are named different for the rxData and txData data structures. The PWM stuff is different as well.

But just use the VEX default code, set the MLABS IDE device to PIC18F8520 and load the 8520 library and linker script and you should be set to go.

Some of Kevin's code, particularly the serial stuff has an include for the 8722.h file so this should be changed to 8520.h.

Oh, and remember the slow loop is not 26ms is more like 18ms.

I have ported over the new structure that Kevin wrote this year to the VEX but I have not been able to get more than 4 PWM's working.
Reply With Quote
Reply


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
Using a VEX Receiver with Non-Vex Equipment akaria VEX 26 06-09-2008 00:55
Can't enter Vex autonomous mode when using MPLab Redneck Programming 4 23-11-2007 01:16
Encoder Help with VEX and MPLAB qnetjoe Programming 5 11-03-2007 21:04
Vex Programming with MPLAB and IF loader Joohoo Programming 3 27-07-2006 18:18
using the MPLAB IDE MPLAB SIM simulator WizardOfAz Programming 1 03-11-2003 01:24


All times are GMT -5. The time now is 04:11.

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