Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. deanlwvu

    Bluetooth BGB203 Modulation

    Does anybody here have experience with using the NXP BGB203 chip? I am having a testlab issue and the situation is becoming dire. The issue is that the testlab needs to see the device modulate data at a fixed frequency for measuring purposes. Our previous device modulated just fine, but our...
  2. deanlwvu

    DB Define Byte Usage

    I know how to define a byte, but I don't know how to use it. I'm using some serial communication, and I need to see if a command is received. ExitCmdString: DB 45h, 78h, 69h, 74h, 43h, 6Dh, 64h, 00h My command interpreter is going to look at each character received and if all chars received...
  3. deanlwvu

    synchronising program for windows CE and winXP

    What serial ports did you test it on? Have you tried a different OS? And which version of ActiveSTink are you using0?
  4. deanlwvu

    running eVB 3.0 on windows Mobile 2003

    I believe that you need to move up to EVC++4.0 or VS.NET. I don't think that Windows Mobile 2003 supports applications that are written in EVB3.0
  5. deanlwvu

    DOS Int14 Service 04 Serial Question

    I'm trying to pull a character from the serial port, and I'm having some trouble. I need to have a program listen to the serial port and print a character if it sees one, or send a character out if a key is pressed. Using Turbo C 2.1 on a Windows 2k machine. /* -- Includes -- */ #include...
  6. deanlwvu

    Using 'union REGS regs'

    I have a major problem with the union REGS regs command in C. I have a program, source below, that generates errors whenever I compile. I've used Borland C++ 6.0, Visual Studio.NET, and Borland C++ 5.5. All of said compilers on Windows 2k, and all generating same errors, saying that...
  7. deanlwvu

    regs error

    What about if you're using Dev C and you're writing a console application? // Local variables. union REGS dRegs; // assembly date registers union union REGS mRegs; // assembly mark date registers union union REGS tRegs; //...
  8. deanlwvu

    Serial Port Programming with C/C++

    Yeah, I'm aware of all of that. I have a lot to learn before I ever implement serial interfacing with .NET. I appreciate the input though.
  9. deanlwvu

    Serial Port Programming with C/C++

    I am yet to program a windows terminal program for the serial interface. Currently learning Visual Studio.NET and teaching myself what to do with the serial interfaces. I will post my future findings in this forum.
  10. deanlwvu

    Serial Port Programming with C/C++

    I'm not sure. Inportb and outportb both use header files that don't include inportb and outportb in their definitions.
  11. deanlwvu

    Serial Port Programming with C/C++

    Like I said, I am using Turbo C (I know, an old compiler) but it's only for a DOS terminal. A small terminal that doesn't run windows or anything like that. Turbo C is all that you need. Now, if you're using dev c++ or vc++, you'll need to use different header files more than likely. Good luck.
  12. deanlwvu

    Errors when trying to Sync

    You might need the newest version of ActiveSync. 3.7. Go to Microsoft's Website and download it. That might help. I know people who have had trouble with 3.5 and 3.7 cleared it up.
  13. deanlwvu

    CE.NET Screen Flip

    I'm looking for a program for CE.NET that could flip the screen 90 degrees. Does anybody have one or have they seen one? Or am I gonna have to write one? :-( Thanks.
  14. deanlwvu

    Excuse the probably stupid question

    Yes. It is quite possible, as long as you have the tools. I would start rummaging around http://msdn.microsoft.com to learn some more information, as you have to have some additional packages with Visual Studio.NET, all of which are available for free from Microsoft's website. Let me know...
  15. deanlwvu

    Serial Port Programming with C/C++

    I think that it should work, running a dos window. I'm using Win2k, and I compiled using Borland Turbo C. It works pretty well, actually, and I would give it a try. Let me know what you find out. I've also built on this code, sending text files as strings and whatnot. The key here is the...
  16. deanlwvu

    Serial Port Programming with C/C++

    I was successful in getting this to work using the inportb and outportb functions. /* This program is used to pull data from the serial port */ #include <dos.h> #include <stdio.h> #include <conio.h> #define PORT1 0x3F8 /* Defines Serial Port Base Address (COM1 */ void main(void){...
  17. deanlwvu

    C/C++ Certification

    Most major colleges and Universities teach C/ C++ in their coursework for engineering. C is the easiest to learn and most powerful for programmers. Also, while in an interview, people who want you to know C will ask &quot;Do you know C?&quot; There really aren't certifications that I know of.
  18. deanlwvu

    CTS/RTS Handshaking

    After doing some manipulation, I found out that you were examining the wrong register. You needed to be examining the MSR (modem status register) instead of the Line Status register. I guess that nobody is perfect.
  19. deanlwvu

    CTS/RTS Handshaking

    Alright, that's all fine and good. You know your stuff, and when you give advice, it would be a little more helpful if you weren't as demeaning. We're not expert programmers, that's why we post on here. Also, I called the file outfile, because the serial port is sending the file out to a...
  20. deanlwvu

    CTS/RTS Handshaking

    And I have to use handshaking. That's the whole point of the program, to verify that a system has proper handshaking wiring. for(count = 0; count <= 3360; count++){ if(fscanf(outfile, &quot; %s&quot;, sequence)!=EOF){ fscanf(outfile, &quot;%s&quot;, sequence); for(count2 = 0; count2...

Part and Inventory Search

Back
Top