File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 173173 Espruino . Core . Status . setStatus ( "Configuring BLE...." ) ;
174174 rxCharacteristic = characteristic ;
175175 setMaxPacketLength ( NORDIC_DEFAULT_TX_LENGTH ) ; // set default packet length
176- console . log ( "BT> RX characteristic:" + JSON . stringify ( rxCharacteristic ) ) ;
176+ console . log ( "BT> Got RX characteristic" ) ;
177177 rxCharacteristic . addEventListener ( 'characteristicvaluechanged' , function ( event ) {
178178 // In Chrome 50+, a DataView is returned instead of an ArrayBuffer.
179179 var value = event . target . value . buffer ;
191191 } ) . then ( function ( characteristic ) {
192192 Espruino . Core . Status . setStatus ( "Configuring BLE....." ) ;
193193 txCharacteristic = characteristic ;
194- console . log ( "BT> TX characteristic:" + JSON . stringify ( txCharacteristic ) ) ;
194+ console . log ( "BT> Got TX characteristic" ) ;
195195 } ) . then ( function ( ) {
196196 Espruino . Core . Status . setStatus ( "Configuring BLE....." ) ;
197197 txInProgress = false ;
You can’t perform that action at this time.
0 commit comments