Hi YiKai Chen,
how to send string command from CC2541 ? I want to send something like this:
(1,0,0,0,0,0,0,0,0) via Bluetooth.
Any idea how to do it.
What I tried so far is
static void simpleProfileChangeCB( uint16 paramID )
{
char Data[11];
switch( paramID )
{
case SIMPLEPROFILE_CHAR1:
SimpleProfile_GetParameter( SIMPLEPROFILE_CHAR1, &Data);
printf("COMMAND: %s'\n'",Data);
}
}
Any idea ?