Skip to content
Permalink
d709efa10f
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
26 lines (20 sloc) 524 Bytes
#ifndef AHRS_OUTPUT_IO_PROCESSOR_HPP
#define AHRS_OUTPUT_IO_PROCESSOR_HPP
#include "IOProcessor.hpp"
#include "DataSyncThread.hpp"
#include "Attribute.hpp"
#include <windows.h>
#include <iostream>
class AHRSOutputIOProcessor : public IOProcessor
{
public:
using IOProcessor::IOProcessor;
void loop();
bool loopCondition();
int configAHRS(); // Initialize the AHRS for the first time
private:
int iterations = 10;
bool configured = false;
HANDLE hSerial;
};
#endif