Antonio,
It's possible in FWPPC initiate comm port eg. baud=9600, parity=e, data=8, stop=1 before send data to port ?
Thanks
Pawel
Antonio Linares wrote:Pawel,
You have to use the Windows API SetCommState() function.
#include "FWCE.ch"
#define GENERIC_WRITE 0x40000000
#define OPEN_EXISTING 3
#define FILE_ATTRIBUTE_NORMAL 0x00000080
function Main()
local hComm := CreateFile( "COM1:",; // change the number as needed
GENERIC_WRITE, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL )
// baud=1200 parity=N data=8 stop=1
MsgInfo( SetComm( hComm, 1200, .f., 8, 1 ) )
CloseHandle( hComm )
return nil
#pragma BEGINDUMP
#include <windows.h>
#include <hbapi.h>
HB_FUNC( SETCOMM )
{
DCB dcb;
GetCommState( ( HANDLE ) hb_parnl( 1 ), &dcb );
dcb.BaudRate = hb_parnl( 2 );
dcb.Parity = hb_parl( 3 );
dcb.ByteSize = hb_parnl( 4 );
dcb.StopBits = hb_parnl( 5 );
hb_retl( SetCommState( ( HANDLE ) hb_parnl( 1 ), &dcb ) );
}
#pragma ENDDUMP
Return to FiveWin for Pocket PC
Users browsing this forum: No registered users and 29 guests