blob: 7c644cd6cd8d4fea2415927373c18955dbe8e709 (
plain)
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
|
/***************************************************************************
* Copyright (C) 2005-2006 Nicolas Hadacek <hadacek@kde.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef PORT_H
#define PORT_H
#include <tqstringlist.h>
#include "common/global/global.h"
#include "common/common/key_enum.h"
//-----------------------------------------------------------------------------
struct PortTypeData {
const char *label, *key;
bool withDevice;
};
BEGIN_DECLARE_ENUM(PortType)
Serial = 0, Parallel, USB
END_DECLARE_ENUM(PortType, PortTypeData)
namespace Port
{
//-----------------------------------------------------------------------------
extern void msleep(uint ms); // in milliseconds
extern void usleep(uint us); // in microseconds
//-----------------------------------------------------------------------------
class Description {
public:
Description() : type(PortType::Nb_Types) {}
Description(PortType ptype, const TQString &pdevice) : type(ptype), device(pdevice) {}
PortType type;
TQString device;
};
enum IODir { NoIO = 0, In = 1, Out = 2 };
extern const char * const IO_DIR_NAMES[3];
TQ_DECLARE_FLAGS(IODirs, IODir)
TQ_DECLARE_OPERATORS_FOR_FLAGS(IODirs)
extern TQStringList probedDeviceList(PortType type);
extern PortType findType(const TQString &device);
extern bool isAvailable(PortType type);
struct PinData {
uint pin;
const char *label;
};
enum LogicType { PositiveLogic, NegativeLogic };
} // namespace
#endif
|