Subversion Repositories HomeAutomation

Rev

Rev 270 | Details | Compare with Previous | Last modification | View Log | SVN | RSS feed

Rev Author Line No. Line
270 johboh 1
#ifndef __SERIALREADER_H
2
#define __SERIALREADER_H
3
 
4
#include <tchar.h>
5
#include <windows.h>
6
#include <stdio.h>
7
#include <process.h>
8
#include "Serial.h"
9
#include "compiler.h"
10
#include "CanProtoMessage.h"
11
#include "SerialConnection.h"
12
 
13
#define SERIAL_INPUT_BUFFER_SIZE 1024
14
#define SERIAL_READ_BUFFER_SIZE 8192
15
#define QUEUE_PLACES 32
16
/*
17
void serialReaderStart(CSerial * str);
18
void serialReaderStartSerCon(SerialConnection * ser);
19
void serialReaderStop( void );
20
*/
21
//bool getMessage(CanProtoMessage *cpm);
22
 
23
#endif