View Single Post
  #4   Spotlight this post!  
Unread 20-10-2007, 15:30
bear24rw's Avatar
bear24rw bear24rw is offline
Team 11 Programming Captain
AKA: Max T
FRC #0011 (MORT)
Team Role: Programmer
 
Join Date: Sep 2005
Rookie Year: 2005
Location: Flanders, NJ
Posts: 385
bear24rw is a splendid one to beholdbear24rw is a splendid one to beholdbear24rw is a splendid one to beholdbear24rw is a splendid one to beholdbear24rw is a splendid one to beholdbear24rw is a splendid one to beholdbear24rw is a splendid one to behold
Send a message via AIM to bear24rw
Re: CMUCAM2 help needed

All the data that the camera returns get stored in this structure from camera.h
Code:
// camera t packet data structure
typedef struct
{
    unsigned char mx;
    unsigned char my;
    unsigned char x1;
    unsigned char y1;
    unsigned char x2;
    unsigned char y2;
    unsigned char pixels;
    unsigned char confidence;
}    T_Packet_Data_Type;
So yes its T_Packet_Data.x1 and T_Packet_Data.x2