This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
I am using Bluetopia Basic SPP demo app on MSP430D5438+CC2564
I am trying to initialize a constant PINcode by feeding a hardcoded PIN code as Stonestreet One replied in " bluetopia, how to response pin code automatically?".
The result is that the method dose not work because the Bluetopia SDK v1.3 is quite different with the Bluetopia SDK v1.2.
Anyone can tell me can I make it?
What's more, I have to input the "send ***" to send data from my laptop.
Is it possible to send data with the button rather than the command from PC?
sdk:CC256x_MSP430_Bluetopia_SDK_v1-3_Setup
example:SPPDemo
Xu,
There is a PINCodeRequest case in the Bluetopia Callbacks. The notification gets to that point. Therefore, it is up to the application to decide how to handle this. In th sampla app, you get a meessage in terminal when this case is hit and asks you to enter the pin.
Regards,
Miguel
Hi Miguel,
According to the reply from Stonestreet One Support(bluetopia, how to response pin code automatically? http://e2e.ti.com/support/low_power_rf/f/660/t/211839.aspx),
I have carried out the following changes to code under case atPINCodeRequest(SPPdemo.c):
if((TempParam) && (TempParam->NumberofParameters > 0) && (TempParam->Params[0].strParam) && (BTPS_StringLength(TempParam->Params[0].strParam) > 0) && (BTPS_StringLength(TempParam->Params[0].strParam) <= sizeof(PIN_Code_t)))
to
if(1)
ASSIGN_PIN_CODE(PINCode, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); //for PIN code of 1234 this would be (PINCode, 1,2, 3, 4, ....) and length below would be 4
macro will set up the bytes of PINCode
GAP_Authentication_Information.Authentication_Data_Length =4;
will configure how many bytes are valid (e.g. if you wanted PIN to be 00000 this would be 5)
But it failed in pairing and the PIN code seems not to be accepted.
Regards
Xu
Xu,
Our partner SSO will look at it and come back to you.
Regards,
Miguel
Hello Xu Wei,
Are you able to pair successfully using the console now? As Miguel mentioned using a butting to send the PIN code is up to the application and you will have to write some code that triggers the same response when you press a button that you want to use. I don't have sample code to use the button press but when a function is triggered you can use the same code that is used by PINCodeResponse.
Best Regards,
Nikhil
I am able to pair successfully using the console now. What I have considered is sending Data with the button rather then PIN code. Let's forget about this for now.
One more question:
I am now trying to send data automatically with a while loop. Here is my code for Senddata function:
I have changed the DataStr[] from the original "~!@#$%^&*()12345678...." to
static char DataStr[] = "1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz~!@#$%^&*()_+[];',./{}|:<>?"
{
int Ndx;
Word_t DataCount;
Boolean_t Done;
/* Make sure that all of the parameters required for this function */
/* appear to be at least semi-valid. */
/* Verify that there is a connection that is established. */
while(1)
{
/* Chcek to see if we are sending to another port. */
//if(!SendInfo.BytesToSend)
{
/* Get the count of the number of bytes to send. */
SendInfo.BytesToSend = 89;//(DWord_t)TempParam->Params[0].intParam;
SendInfo.BytesSent = 0;
Done = FALSE;
while((SendInfo.BytesToSend) && (!Done))
{
/* Set the Number of bytes to send in the first packet. */
if(SendInfo.BytesToSend > DataStrLen)
DataCount = DataStrLen;
else
DataCount = SendInfo.BytesToSend;
Ndx = SPP_Data_Write(BluetoothStackID, SerialPortID, DataCount, (unsigned char *)DataStr);
if(Ndx >= 0)
{
/* Adjust the counters. */
SendInfo.BytesToSend -= Ndx;
if(Ndx < DataCount)
{
SendInfo.BytesSent = Ndx;
Done = TRUE;
}
}
else
{
Display(("SEND failed with error %d\r\n", Ndx));
SendInfo.BytesToSend = 0;
}
}
}
else
//Display(("Send Currently in progress.\r\n"));
}
}
I added a while(1) before it "Get the count of the number of bytes to send.". I expected it would send the DataStr over and over again while the fact is: nothing shown on blueterm window.
Then I have changed "while(1)" to "for(int i=0; i<3;i++)". Now there is a string from the screen but seems something goes wrong.
What expected is "1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz~!@#$%^&*()_+[];',./{}|:<>?1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz~!@#$%^&*()_+[];',./{}|:<>?1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz~!@#$%^&*()_+[];',./{}|:<>?"
while what on the screen is"1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZab123456789..."
It not complete as the first DataStr stops at 'b' then start from a new one.
Any suggestions concerning this problem?
Hello,
If SPP_Data_Write returns 0 or a value less than what you meant to send then that signifies that all buffers are full and you need to wait for event etPort_Transmit_Buffer_Empty_Indication to send the data that was not sent earlier.
A helpful related post that I could find is: http://e2e.ti.com/support/low_power_rf/f/660/p/125308/466287.aspx#466287
Hope this helps,
Stonestreet One.