-
Notifications
You must be signed in to change notification settings - Fork 4
/
TPixy.h
173 lines (140 loc) · 3.99 KB
/
TPixy.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
//
// begin license header
//
// This file is part of Pixy CMUcam5 or "Pixy" for short
//
// All Pixy source code is provided under the terms of the
// GNU General Public License v2 (http://www.gnu.org/licenses/gpl-2.0.html).
// Those wishing to use Pixy source code, software and/or
// technologies under different licensing terms should contact us at
// [email protected]. Such licensing terms are available for
// all portions of the Pixy codebase presented here.
//
// end license header
//
#ifndef _TPIXY_H
#define _TPIXY_H
#include <wiringPi.h>
#include <stdint.h>
#include <iostream>
#include <cstdlib>
#include <cstring>
#define PIXY_INITIAL_ARRAYSIZE 30
#define PIXY_MAXIMUM_ARRAYSIZE 130
#define PIXY_START_WORD 0xaa55
#define PIXY_START_WORDX 0x55aa
#define PIXY_DEFAULT_ADDR 0x54 // I2C
struct Block {
void print() {
std::cout << "sig: " << signature << " x: " << x << " y: " << y << " width: " << width << " height: " << height << std::endl;
}
uint16_t signature;
uint16_t x;
uint16_t y;
uint16_t width;
uint16_t height;
};
template <class LinkType> class TPixy {
public:
TPixy(uint8_t addr = PIXY_DEFAULT_ADDR);
~TPixy();
uint16_t getBlocks(uint16_t maxBlocks = 1000);
int8_t setServos(uint16_t s0, uint16_t s1);
Block *blocks;
private:
bool getStart();
void resize();
LinkType link;
bool skipStart;
uint16_t blockCount;
uint16_t blockArraySize;
};
template <class LinkType> TPixy<LinkType>::TPixy(uint8_t addr)
{
skipStart = false;
blockCount = 0;
blockArraySize = PIXY_INITIAL_ARRAYSIZE;
blocks = (Block *)malloc(sizeof(Block) * blockArraySize);
link.init(addr);
}
template <class LinkType> TPixy<LinkType>::~TPixy()
{
free(blocks);
}
template <class LinkType> bool TPixy<LinkType>::getStart()
{
uint16_t w, lastw;
lastw = 0xffff;
while(true) {
w = link.getWord();
if (w == 0 && lastw == 0) {
delayMicroseconds(10);
return false;
} else if (w == PIXY_START_WORD && lastw == PIXY_START_WORD) {
return true;
} else if (w == PIXY_START_WORDX) {
std::cerr << "reorder" << std::endl;
link.getByte(); // resync
}
lastw = w;
}
}
template <class LinkType> void TPixy<LinkType>::resize()
{
Block *newBlocks;
blockArraySize += PIXY_INITIAL_ARRAYSIZE;
newBlocks = (Block *)malloc(sizeof(Block) * blockArraySize);
memcpy(newBlocks, blocks, sizeof(Block)*blockCount);
free(blocks);
blocks = newBlocks;
}
template <class LinkType> uint16_t TPixy<LinkType>::getBlocks(uint16_t maxBlocks)
{
uint8_t i;
uint16_t w, checksum, sum;
Block *block;
if (!skipStart) {
if (getStart() == false) {
return 0;
}
} else {
skipStart = false;
}
for(blockCount = 0; blockCount < maxBlocks && blockCount < PIXY_MAXIMUM_ARRAYSIZE;) {
checksum = link.getWord();
if (checksum == PIXY_START_WORD) { // we've reached the beginning of the next frame
skipStart = true;
return blockCount;
} else if (checksum == 0) {
return blockCount;
}
if (blockCount > blockArraySize) {
resize();
}
block = blocks + blockCount;
for (i = 0, sum = 0; i < sizeof(Block) / sizeof(uint16_t); i++) {
w = link.getWord();
sum += w;
*((uint16_t *)block + i) = w;
}
if (checksum == sum) {
blockCount++;
} else {
std::cerr << "cs error" << std::endl;
}
w = link.getWord();
if (w != PIXY_START_WORD) {
return blockCount;
}
}
}
template <class LinkType> int8_t TPixy<LinkType>::setServos(uint16_t s0, uint16_t s1)
{
uint8_t outBuf[6];
outBuf[0] = 0x00;
outBuf[1] = 0xff;
*(uint16_t *)(outBuf + 2) = s0;
*(uint16_t *)(outBuf + 4) = s1;
return link.send(outBuf, 6);
}
#endif