Hello, Everyone
I am working with DSK6713. I am trying to make transmitter and receiver using two DSK6713 kits. Data should be transmitted and received using GPIO port.
I had studied Reference guide about gpio port availble @ TI Wiki Pages
Data is received @ gpio port (I checked it using oscilloscope).
A part of code which show how I write data on GPIO port is:
gpio_handle = GPIO_open( GPIO_DEV0, GPIO_OPEN_RESET );
GPIO_clear(gpio_handle);
GPIO_reset(gpio_handle);
GPIO_config(gpio_handle,&gpio_config);
GPIO_pinEnable(gpio_handle,GPIO_PIN10);
while(1){
GPIO_pinWrite(gpio_handle,GPIO_PIN10,1);}
Bit time is approximately 20ns. As it was stated in Reference guide it is 4P (4 CPU clock pulses).
I want to know is it possible to increase this bit time???