質問編集履歴
1
main.cのコマンド修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -102,19 +102,51 @@
|
|
102
102
|
|
103
103
|
|
104
104
|
|
105
|
+
// コマンド出力開始
|
106
|
+
|
105
107
|
send_command("+¥r");
|
106
108
|
|
109
|
+
|
110
|
+
|
111
|
+
// 設定のリセット
|
112
|
+
|
107
113
|
send_command("SF,1¥r");
|
108
114
|
|
115
|
+
|
116
|
+
|
117
|
+
// サービスを「Device Information」として設定
|
118
|
+
|
109
|
-
send_command("SS,
|
119
|
+
send_command("SS,80000000¥r");
|
120
|
+
|
121
|
+
|
122
|
+
|
110
|
-
|
123
|
+
// iOSの制約を満たすように、interval, latency, timeoutを設定
|
124
|
+
|
125
|
+
send_command("ST,0010,0000,0064¥r");
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
// Auto Advertise と iOS Mode の和
|
130
|
+
|
111
|
-
send_command("SR,000000
|
131
|
+
send_command("SR,20004000¥r");
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
// デバイスを「MyDevice」と命名
|
112
136
|
|
113
137
|
send_command("SN,MyDevice¥r");
|
114
138
|
|
139
|
+
|
140
|
+
|
141
|
+
// 設定を反映するために再起動
|
142
|
+
|
115
143
|
send_command("R,1¥r");
|
116
144
|
|
145
|
+
|
146
|
+
|
147
|
+
// Auto Advertiseの設定にしているのでAは不要
|
148
|
+
|
117
|
-
send_command("A¥r");
|
149
|
+
// send_command("A¥r");
|
118
150
|
|
119
151
|
|
120
152
|
|