473,405 Members | 2,354 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

Serial::WriteLine & Console::WriteLine "ASCII" Problems

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 3308
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 Expert 1GB
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
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...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...
0
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
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...

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.