Thanks for access to your code, I would really like to use the GP32SDK if at all possible. Version 2.0 looks as if it is capable and I have now got some comms working. Unfortunatley the documentation is in korean! I guess I will not be able to make full use of the library :-(
unsigned char p_data[4096];
int i;
int n_tick;
int size = 0;
char g_string[256];
// Init Serial stuff.
desc.port_kind = COMM_PORT_0;
desc.tr_buf_size = 4096;
desc.tr_rate = 9600;
desc.tr_mode = 0;
desc.sz_pkt = 8;
desc.isr_comm_ram = 0;
//
GpCommCreate( &desc, &serial);
//
serial.comm_open( &desc );
// Send a carriage return (0x0D).
serial.comm_send_one( 0x0d );
//
for ( i=0; i

; i++ ) {
// Receive any resulting characters, with a 50 ms (serial)
n_tick = GpTickCountGet();
while ( ( GpTickCountGet() - n_tick ) < 50 ) {
serial.comm_recv_one( p_data );
}
sprintf( g_string, "return data = %d", p_data[0] );
GpTextOut( NULL, &gpDraw, 0, 32+(i*32), g_string, 0xe0 );
}