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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 44 by torben, Sun Feb 4 21:22:44 2007 UTC revision 54 by torben, Mon Feb 5 10:10:18 2007 UTC
# Line 1  Line 1 
1  // serial1.cpp : Defines the entry point for the console application.  // serial1.cpp : Defines the entry point for the console application.
2  //  //
3    
4  #ifdef _WINDOWS  #ifdef _MSC_VER
 #include "stdafx.h"  
   
5  #include "serial1.h"  #include "serial1.h"
6  #endif  #endif
7    
8    #include "stdafx.h"
9    
10    
11  #ifdef _DEBUG  #ifdef _DEBUG
12  #define new DEBUG_NEW  #define new DEBUG_NEW
# Line 17  Line 17 
17  #include <iostream>  #include <iostream>
18  #include <iomanip>  #include <iomanip>
19  #include <exception>  #include <exception>
20    #include <stdexcept>
21    
22    
23  void my_pause()  void my_pause()
# Line 27  void my_pause() Line 28  void my_pause()
28    
29  }  }
30    
31  int main()  int main(int argc, char* argv[])
32  {  {
33          int count = 0;          int count = 0;
34          unsigned char c,input;          unsigned char c,input;
35          CH7Serial serial("com8", 9600);          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          try
44          {          {
45                  // tænd lysdiode S3 / RB1  
46                    serial.open(argv[1], CSerial::Baud9600);
47                    // tænd lysdiode S3&S4 / RB1&RB2
48                  std::cout << "--------------------------------------" << std::endl;                  std::cout << "--------------------------------------" << std::endl;
49                  serial.writeTarget(0,1);                  serial.writeTarget(0,1);
50                    std::cout << "-";      
51                    serial.writeTarget(1,1);        
52                  Sleep(2000);                  Sleep(2000);
53    
54                  // sluk lysdiode S3 / RB1                  // sluk lysdiode S3 / RB1
55                  std::cout << "--------------------------------------" << std::endl;                  std::cout << "--------------------------------------" << std::endl;
56                  serial.writeTarget(0,0);                  serial.writeTarget(0,0);
57                  Sleep(2000);                  Sleep(200);
58    
59                  //Aflæser potmeter ved 9600 bps                  //Aflæser potmeter ved 9600 bps
60                  std::cout << "--------------------------------------" << std::endl;                  std::cout << "--------------------------------------" << std::endl;
61                  std::cout << "Potmeter: " << serial.readTarget(5) << std::endl;                  std::cout << "Potmeter: " << serial.readTarget(5) << std::endl;
62    
63                    
64                  //Skifter hastighed til 19200 bps                  //Skifter hastighed til 19200 bps
65                  serial.writeTarget(10, 4);                  serial.writeTarget(10, 4);
66                  Sleep(100);                  Sleep(100);
67                  serial.close();                  serial.close();
68                  serial.open("com8", 19200);                  serial.open(argv[1], CSerial::Baud19200);
69    
70                  //aflæser potmeter ved 19200 bps                  //aflæser potmeter ved 19200 bps
71                  std::cout << "--------------------------------------" << std::endl;                  std::cout << "--------------------------------------" << std::endl;
# Line 65  int main() Line 77  int main()
77                  Sleep(500);                  Sleep(500);
78    
79                  serial.close();                  serial.close();
80                  serial.open("com8",9600);                  serial.open(argv[1], CSerial::Baud9600);
81    
82                  //aflæser potmeter igen ved 9600 bps                  //aflæser potmeter igen ved 9600 bps
83                  std::cout << "--------------------------------------" << std::endl;                  std::cout << "--------------------------------------" << std::endl;
84                  std::cout << "Potmeter: " << serial.readTarget(5) << std::endl;                  std::cout << "Potmeter: " << serial.readTarget(5) << std::endl;
85          } catch (std::exception e)                  
86            }
87            catch (std::runtime_error& e)
88            {
89                    std::cout << "Error: " << e.what() << std::endl;
90                    exit(1);
91            }
92            catch (std::exception& e)
93            {
94                    std::cout << "Exception: " << e.what() << std::endl;
95                    exit(2);
96            }
97            catch(...)
98          {          {
99                  std::cout << "Exception :" << e.what() << std::endl;                  std::cout << "asd" << std::endl;
100                    exit(3);
101          }          }
102    
103          //std::cout << serial.readTarget(2) << std::endl;          //std::cout << serial.readTarget(2) << std::endl;

Legend:
Removed from v.44  
changed lines
  Added in v.54

  ViewVC Help
Powered by ViewVC 1.1.20