@@ -1000,12 +1000,12 @@ static void ag_connected(struct bt_conn *conn, struct bt_hfp_ag *ag)
1000
1000
bt_shell_warn ("The conn %p is not aligned with ACL conn %p" , conn , default_conn );
1001
1001
}
1002
1002
hfp_ag = ag ;
1003
- bt_shell_print ("ag connected" );
1003
+ bt_shell_print ("AG connected" );
1004
1004
}
1005
1005
1006
1006
static void ag_disconnected (struct bt_hfp_ag * ag )
1007
1007
{
1008
- bt_shell_print ("ag disconnected" );
1008
+ bt_shell_print ("AG disconnected" );
1009
1009
}
1010
1010
1011
1011
static void ag_sco_connected (struct bt_hfp_ag * ag , struct bt_conn * sco_conn )
@@ -1040,7 +1040,7 @@ static int ag_memory_dial(struct bt_hfp_ag *ag, const char *location, char **num
1040
1040
return - ENOTSUP ;
1041
1041
}
1042
1042
1043
- bt_shell_print ("ag memory dial" );
1043
+ bt_shell_print ("AG memory dial" );
1044
1044
1045
1045
* number = phone ;
1046
1046
@@ -1051,7 +1051,7 @@ static int ag_number_call(struct bt_hfp_ag *ag, const char *number)
1051
1051
{
1052
1052
static char * phone = "123456789" ;
1053
1053
1054
- bt_shell_print ("ag number call" );
1054
+ bt_shell_print ("AG number call" );
1055
1055
1056
1056
if (strcmp (number , phone )) {
1057
1057
return - ENOTSUP ;
@@ -1062,71 +1062,71 @@ static int ag_number_call(struct bt_hfp_ag *ag, const char *number)
1062
1062
1063
1063
static void ag_outgoing (struct bt_hfp_ag * ag , struct bt_hfp_ag_call * call , const char * number )
1064
1064
{
1065
- bt_shell_print ("ag outgoing call %p, number %s" , call , number );
1065
+ bt_shell_print ("AG outgoing call %p, number %s" , call , number );
1066
1066
ag_add_a_call (call );
1067
1067
}
1068
1068
1069
1069
static void ag_incoming (struct bt_hfp_ag * ag , struct bt_hfp_ag_call * call , const char * number )
1070
1070
{
1071
- bt_shell_print ("ag incoming call %p, number %s" , call , number );
1071
+ bt_shell_print ("AG incoming call %p, number %s" , call , number );
1072
1072
ag_add_a_call (call );
1073
1073
}
1074
1074
1075
1075
static void ag_incoming_held (struct bt_hfp_ag_call * call )
1076
1076
{
1077
- bt_shell_print ("ag incoming call %p is held" , call );
1077
+ bt_shell_print ("AG incoming call %p is held" , call );
1078
1078
}
1079
1079
1080
1080
static void ag_ringing (struct bt_hfp_ag_call * call , bool in_band )
1081
1081
{
1082
- bt_shell_print ("ag call %p start ringing mode %d" , call , in_band );
1082
+ bt_shell_print ("AG call %p start ringing mode %d" , call , in_band );
1083
1083
}
1084
1084
1085
1085
static void ag_accept (struct bt_hfp_ag_call * call )
1086
1086
{
1087
- bt_shell_print ("ag call %p accept" , call );
1087
+ bt_shell_print ("AG call %p accept" , call );
1088
1088
}
1089
1089
1090
1090
static void ag_held (struct bt_hfp_ag_call * call )
1091
1091
{
1092
- bt_shell_print ("ag call %p held" , call );
1092
+ bt_shell_print ("AG call %p held" , call );
1093
1093
}
1094
1094
1095
1095
static void ag_retrieve (struct bt_hfp_ag_call * call )
1096
1096
{
1097
- bt_shell_print ("ag call %p retrieved" , call );
1097
+ bt_shell_print ("AG call %p retrieved" , call );
1098
1098
}
1099
1099
1100
1100
static void ag_reject (struct bt_hfp_ag_call * call )
1101
1101
{
1102
- bt_shell_print ("ag call %p reject" , call );
1102
+ bt_shell_print ("AG call %p reject" , call );
1103
1103
ag_remove_a_call (call );
1104
1104
}
1105
1105
1106
1106
static void ag_terminate (struct bt_hfp_ag_call * call )
1107
1107
{
1108
- bt_shell_print ("ag call %p terminate" , call );
1108
+ bt_shell_print ("AG call %p terminate" , call );
1109
1109
ag_remove_a_call (call );
1110
1110
}
1111
1111
1112
1112
static void ag_codec (struct bt_hfp_ag * ag , uint32_t ids )
1113
1113
{
1114
- bt_shell_print ("ag received codec id bit map %x" , ids );
1114
+ bt_shell_print ("AG received codec id bit map %x" , ids );
1115
1115
}
1116
1116
1117
1117
void ag_vgm (struct bt_hfp_ag * ag , uint8_t gain )
1118
1118
{
1119
- bt_shell_print ("ag received vgm %d" , gain );
1119
+ bt_shell_print ("AG received vgm %d" , gain );
1120
1120
}
1121
1121
1122
1122
void ag_vgs (struct bt_hfp_ag * ag , uint8_t gain )
1123
1123
{
1124
- bt_shell_print ("ag received vgs %d" , gain );
1124
+ bt_shell_print ("AG received vgs %d" , gain );
1125
1125
}
1126
1126
1127
1127
void ag_codec_negotiate (struct bt_hfp_ag * ag , int err )
1128
1128
{
1129
- bt_shell_print ("ag codec negotiation result %d" , err );
1129
+ bt_shell_print ("AG codec negotiation result %d" , err );
1130
1130
}
1131
1131
1132
1132
void ag_audio_connect_req (struct bt_hfp_ag * ag )
0 commit comments