/[H7]/branches/linux-serial/serial1.cpp
ViewVC logotype

Contents of /branches/linux-serial/serial1.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 52 - (show annotations) (download)
Mon Feb 5 07:22:10 2007 UTC (17 years, 3 months ago) by torben
File size: 2204 byte(s)
Use the serial port specified on the command line
1 // serial1.cpp : Defines the entry point for the console application.
2 //
3
4 #ifdef _MSC_VER
5 #include "serial1.h"
6 #endif
7
8 #include "stdafx.h"
9
10
11 #ifdef _DEBUG
12 #define new DEBUG_NEW
13 #endif
14
15 #include "H7Serial.h"
16
17 #include <iostream>
18 #include <iomanip>
19 #include <exception>
20 #include <stdexcept>
21
22
23 void my_pause()
24 {
25 char d[1];
26 std::cout << "Press enter to continue" << std::endl;
27 std::cin.getline(d,1);
28
29 }
30
31 int main(int argc, char* argv[])
32 {
33 int count = 0;
34 unsigned char c,input;
35 CH7Serial serial;
36
37 if (argc != 2)
38 {
39 std::cout << "Usage: " << argv[0] << "<serial port>" << std::endl;
40 exit(0);
41 }
42
43 try
44 {
45
46 serial.open(argv[1], 9600);
47 // tænd lysdiode S3 / RB1
48 std::cout << "--------------------------------------" << std::endl;
49 serial.writeTarget(1,1);
50 std::cout << "-";
51 Sleep(2000);
52
53 // sluk lysdiode S3 / RB1
54 std::cout << "--------------------------------------" << std::endl;
55 serial.writeTarget(0,1);
56 Sleep(200);
57
58 //Aflæser potmeter ved 9600 bps
59 std::cout << "--------------------------------------" << std::endl;
60 std::cout << "Potmeter: " << serial.readTarget(5) << std::endl;
61
62 /*
63 //Skifter hastighed til 19200 bps
64 serial.writeTarget(10, 4);
65 Sleep(100);
66 serial.close();
67 serial.open("com8", 19200);
68
69 //aflæser potmeter ved 19200 bps
70 std::cout << "--------------------------------------" << std::endl;
71 std::cout << "Potmeter: " << serial.readTarget(5) << std::endl;
72 Sleep(7000);
73
74 // skiver hastighed tilbage til 9600 bps
75 serial.writeTarget(10,3);
76 Sleep(500);
77
78 serial.close();
79 serial.open("com8",9600);
80
81 //aflæser potmeter igen ved 9600 bps
82 std::cout << "--------------------------------------" << std::endl;
83 std::cout << "Potmeter: " << serial.readTarget(5) << std::endl;
84 */
85 }
86 catch (std::runtime_error& e)
87 {
88 std::cout << "Error: " << e.what() << std::endl;
89 exit(1);
90 }
91 catch (std::exception& e)
92 {
93 std::cout << "Exception: " << e.what() << std::endl;
94 exit(2);
95 }
96 catch(...)
97 {
98 std::cout << "asd" << std::endl;
99 exit(3);
100 }
101
102 //std::cout << serial.readTarget(2) << std::endl;
103
104
105 my_pause();
106 return 0;
107 }
108

  ViewVC Help
Powered by ViewVC 1.1.20