473,698 Members | 2,295 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Serial::WriteLi ne & Console::WriteL ine "ASCII" Problems

2 New Member
Hi,

Sorry about such a ridicules question, but I have no clue what’s going on.

I'm Using Visual Studio 08, programming in C++.
I have a Serial Port created with:

Expand|Select|Wrap|Line Numbers
  1. static System::IO::Ports::SerialPort^ SP1= (gcnew System::IO::Ports::SerialPort());
  2. SP1->PortName="COM1";
  3. SP1->BaudRate=115200;
  4. SP1->Open();
  5.  
The problem comes in when I am attempting to Send on the COM port:

Expand|Select|Wrap|Line Numbers
  1. char X[2]={'0','0'};
  2. Console::WriteLine(X[0].ToString());
  3. cout<<X[0]<<endl;
  4. SP1->WriteLine(X[2].ToString());
  5.  
Now It might be a problem with ".ToString( )"; In any case, the outputs are as followed:
"[Console]"
48
0
"[/Console]"
"[COM1]"
48
"[COM1]"

those 48's should be 0's. Since If I do:
Expand|Select|Wrap|Line Numbers
  1. System::String^ out="0";
  2. SP1->WriteLine(out);
  3.  
I get "0" on COM1.

I wouldn't really like to make my own char2String converter with a switch case of about 75 elements (I need most of the symbols as well as upper/lower/#'s), not knowing if it would even work.
Anyone have any other options? Any Replies are much appreciated.

Thank you,
T
Mar 11 '09 #1
2 3334
Tenaious
2 New Member
Hey thanks,

Posting made me think of something. I believe the problem was the char to <wchar> conversion in the ".ToString( )." so first making it a std::string then marshaling it to a System::String^ did the proper conversion.

Expand|Select|Wrap|Line Numbers
  1. char X[2]={'0','0'};
  2. std::string str=X;
  3.  
  4. marshal_context^ context = gcnew marshal_context();
  5. System::String^ OUT;
  6. ret= context->marshal_as<System::String^>( str );
  7. delete context;
  8.  
  9. SP1->WriteLine(OUT);
  10.  
Thanks for the Third person veiw,
T
Mar 11 '09 #2
gpraghuram
1,275 Recognized Expert Top Contributor
The value 48 is the ASCII value of the character 0.
I think when u print the X[0] it gtes conevrted like that.


Raghu
Mar 11 '09 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

13
2640
by: coloradowebdev | last post by:
i am working on basically a proxy server that handles requests via remoting from clients and executes transactions against a third-party server via TCP. the remoting site works like a champ. my problem is executing the transactions against the remote server and returning the response to the remoting client. i can open the socket fine and, if i am executing one transaction at a time, everything works great. it's when my proxy server...
0
8604
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9157
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8895
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8861
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6518
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5860
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4369
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4619
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3046
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.