Newer
Older
getSurreal
committed
<<<<<<< HEAD
getSurreal
committed
=======
getSurreal
committed
>>>>>>> 9423c3c07ba8665de06a1a0f3cdad7d726b30174
Copyright 2014 James LeRoy getSurreal
https://github.com/getSurreal/XV_Lidar_Controller
<<<<<<< HEAD
Modified to add CRC checking - Doug Hilton, WD0UG November, 2015 mailto: six.speed (at) yahoo (dot) com
See README for additional information
=======
James LeRoy
committed
James LeRoy
committed
The F() macro in the Serial statements tells the compiler to keep your strings in PROGMEM
#include <TimerThree.h> // used for ultrasonic PWM motor control
<<<<<<< HEAD
const int SHOW_ALL_ANGLES = 360; // value means 'display all angle data, 0..359'
=======
>>>>>>> 9423c3c07ba8665de06a1a0f3cdad7d726b30174
James LeRoy
committed
char version[6];
int motor_pwm_pin; // pin connected to mosfet for motor speed control
double rpm_setpoint; // desired RPM (uses double to be compatible with PID library)
double rpm_min;
double rpm_max;
double pwm_max; // max analog value. probably never needs to change from 1023
double pwm_min; // min analog pulse value to spin the motor
int sample_time; // how often to calculate the PID values
boolean motor_enable; // to spin the laser or not. No data when not spinning
boolean raw_data; // to retransmit the seiral data to the USB port
boolean show_dist; // controlled by ShowDist and HideDist commands
boolean show_rpm; // controlled by ShowRPM and HideRPM commands
James LeRoy
committed
unsigned int show_angle; // controlled by ShowAngle (0 - 359, 360 shows all)
getSurreal
committed
<<<<<<< HEAD
/*
* EEPROM_ID
* Used to validate that the EEPROM is initialized
* Important to increment the number anytime variables are added or removed
* or when the default values are changed
*/
const byte EEPROM_ID = 0x05;
getSurreal
committed
=======
getSurreal
committed
const byte EEPROM_ID = 0x05; // used to validate EEPROM initialized
getSurreal
committed
>>>>>>> 9423c3c07ba8665de06a1a0f3cdad7d726b30174
unsigned long now;
unsigned long motor_check_timer = millis();
getSurreal
committed
<<<<<<< HEAD
getSurreal
committed
=======
getSurreal
committed
unsigned long motor_check_interval = 200;
getSurreal
committed
>>>>>>> 9423c3c07ba8665de06a1a0f3cdad7d726b30174
unsigned int rpm_err_thresh = 10; // 2 seconds (10 * 200ms) to shutdown motor with improper RPM and high voltage
unsigned int rpm_err = 0;
James LeRoy
committed
unsigned long curMillis;
unsigned long lastMillis = millis();
PID rpmPID(&motor_rpm, &pwm_val, &xv_config.rpm_setpoint, xv_config.Kp, xv_config.Ki, xv_config.Kd, DIRECT);
uint8_t inByte = 0; // incoming serial byte
<<<<<<< HEAD
uint8_t motor_rph_high_byte = 0;
uint8_t motor_rph_low_byte = 0;
uint16_t dist[N_DATA_QUADS] = {0, 0, 0, 0}; // thre are (4) distances, one for each data quad
uint16_t quality[N_DATA_QUADS] = {0, 0, 0, 0}; // same with 'quality'
=======
uint16_t data_status = 0;
uint16_t data_4deg_index = 0;
uint16_t data_loop_index = 0;
uint8_t motor_rph_high_byte = 0;
uint8_t motor_rph_low_byte = 0;
uint8_t data0, data2;
uint16_t dist, quality;
uint16_t motor_rph = 0;
uint16_t angle;
#if defined(__AVR_ATmega32U4__) && defined(CORE_TEENSY) // if Teensy 2.0
const int ledPin = 11;
#endif
#if defined(__MK20DX256__) // if Teensy 3.1
const int ledPin = 13;
#endif
James LeRoy
committed
boolean ledState = LOW;
if ( xv_config.id != EEPROM_ID) { // verify EEPROM values have been initialized
<<<<<<< HEAD
pinMode(xv_config.motor_pwm_pin, OUTPUT);
Serial.begin(115200); // USB serial
Serial1.begin(115200); // XV LDS data
/*
* Timer3.initialize(30)
* sets PWM frequency to 32.768kHz for quite ultrasonic motor control
* PWM duty cycle is 0-1023
*/
Timer3.initialize(30);
=======
#if defined(__AVR_ATmega32U4__) && defined(CORE_TEENSY) // if Teensy 2.0
Serial1.begin(115200); // XV LDS data
#endif
#if defined(__MK20DX256__) // if Teensy 3.1
Timer3.initialize(30); // set PWM frequency to 32.768kHz
rpmPID.SetOutputLimits(xv_config.pwm_min, xv_config.pwm_max);
rpmPID.SetSampleTime(xv_config.sample_time);
rpmPID.SetTunings(xv_config.Kp, xv_config.Ki, xv_config.Kd);
rpmPID.SetMode(AUTOMATIC);
James LeRoy
committed
pinMode(ledPin, OUTPUT);
<<<<<<< HEAD
eState = eState_Find_COMMAND;
for (ixPacket = 0; ixPacket < PACKET_LENGTH; ixPacket++) // Initialize
Packet[ixPacket] = 0;
ixPacket = 0;
=======
>>>>>>> 9423c3c07ba8665de06a1a0f3cdad7d726b30174
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<<<<<<< HEAD
boolean bPacketOkay; // true = packet is okay (CRC valid)
sCmd.readSerial(); // check for incoming serial commands
if (Serial1.available() > 0) { // read byte from LIDAR and relay to USB
inByte = Serial1.read(); // get incoming byte:
if (xv_config.raw_data)
Serial.print(inByte, BYTE); // relay
// Switch, based on 'eState':
// State 1: We're scanning for 0xFA (COMMAND) in the input stream
// State 2: Build a complete data packet
if (eState == eState_Find_COMMAND) { // flush input until we get COMMAND byte
if (inByte == COMMAND) {
eState++; // switch to 'build a packet' state
Packet[ixPacket++] = inByte; // store 1st byte of data into 'Packet'
}
}
else { // eState == eState_Build_Packet
Packet[ixPacket++] = inByte; // keep storing input into 'Packet'
if (ixPacket == PACKET_LENGTH) { // we've got all the input bytes, so we're done building this packet
bPacketOkay = (eValidatePacket() == 0); // Check packet CRC
startingAngle = processIndex(bPacketOkay); // get the starting angle of this group (of 4)
processSpeed(bPacketOkay); // process the speed
// process each of the (4) sets of data in the packet
for (int ix = 0; ix < N_DATA_QUADS; ix++) // process the distance
processDistance(bPacketOkay, ix);
for (int ix = 0; ix < N_DATA_QUADS; ix++) // process the signal strength (quality)
processSignalStrength(bPacketOkay, ix);
if (bPacketOkay) {
if (xv_config.show_dist) { // show distance command is active
if (xv_config.show_angle == SHOW_ALL_ANGLES
|| (xv_config.show_angle >= startingAngle && xv_config.show_angle < startingAngle + N_DATA_QUADS)) {
for (int ix = 0; ix < N_DATA_QUADS; ix++) {
if ((xv_config.show_angle == SHOW_ALL_ANGLES)
|| (xv_config.show_angle == startingAngle + ix)) {
Loading full blame...