in sample/app.cpp [98:113]
void bt_task( intptr_t unused )
{
while( 1 )
{
uint8_t c = fgetc( g_bluetooth ); /* 受信 */
switch( c )
{
case '1':
g_bluetooth_command = 1;
break;
default:
break;
}
fputc( c, g_bluetooth ); /* エコーバック */
}
}