Guest_imported
New member
- Jan 1, 1970
- 0
Hy everybody,
can anybody tell me how to convert BYTE to char ??
The Problem is, I want to send characters ( ASCII ) to the com port, but I've got to calculate it before, so I need the BYTE type !
I used the following solution, but I don't know if it's a stable solution:
BYTE byti;
char zchn;
byti= .....;
zchn=(char) bity;
Can anybody help me ??
Thanks,
SAM
can anybody tell me how to convert BYTE to char ??
The Problem is, I want to send characters ( ASCII ) to the com port, but I've got to calculate it before, so I need the BYTE type !
I used the following solution, but I don't know if it's a stable solution:
BYTE byti;
char zchn;
byti= .....;
zchn=(char) bity;
Can anybody help me ??
Thanks,
SAM