These are the core files for the Robot at Team conception.

Dependencies:   mbed UniServ

Pixy.cpp

Committer:
obrie829
Date:
2017-05-26
Revision:
0:eba74e7a229b
Child:
1:ff0674b96cc5

File content as of revision 0:eba74e7a229b:


#include "Pixy.h"

Pixy::Pixy(Serial& _cam) : cam(_cam)
{
    //cam.baud( 230400 );
    cam.baud( 460800 );
    cam.attach(this, &Pixy::rxCallback, Serial::RxIrq);
}


// This function is called when a character goes into the RX buffer.
void Pixy::rxCallback()
{
    static const int buffersize = 256;
    static int detects = 0;
    static int startPoint = 0;
    static uint8_t buffer[buffersize] = {};
    static bool startFound = false;
    static int ii = 1;

    while( cam.readable() ) {
        buffer[ii] = cam.getc();
        if( buffer[ii-1] == 85  && (buffer[ii] == 170 )  ) {
            startPoint = ii-1;

            //check if detection was on the edge of buffer. Skip package if so.
            if( ii<(buffersize-14))
                startFound = true;
            else
                ii = 1;
                
            detects++;
        }
        ++ii;

        //reset ii
        if( ii>=(buffersize-1))
            ii = 1;
    }

    //start not found, reset ii to 1
    if( !startFound && ii >= 3 || ii >= (buffersize-1)) {
        ii = 1;
        return;
    }

    //start is found but not enough bytes received - return
    if( (ii-startPoint) <= 13 )
        return;

    //copy memory to pixy struct
    memcpy( &pixy, buffer + startPoint+2, 12);

    //reset variables
    startFound = false;
    ii = 1;
}

int Pixy::getX()
{
    return pixy.x;
}

int Pixy::getY()
{
    return pixy.y;
}

int Pixy::getSignature()
{
    return pixy.signature;
}