Bluno General Arduino

USB BLE Link upload sketch problem (TEL0087)

userHead Account cancelled 2017-08-11 15:40:09 2779 Views1 Replies
Hi,
I have several new BLE Link devices and can't upload scetches to any of them.

I use win 10 and tried with both Arduino 1.0.7 and 1.8.3.

I have updated the firmware to "SBL_central_apdaterV1.98-30CM" and set the AT settings to default using serial monitor. I always find the COM port in Arduino IDE but can never upload any sketch to any device. Wiki suggests it could be a problem with the main chip bootloader, but is it likely as it happens to all devices?

There is a program running on the devices as I can connect over BLE with an Arduino 101. Both the LED on the Arduino and the dongle light up using this sketch on the 101:
Code: Select all
#include "BLESerial.h"

void setup() {
  pinMode(13, OUTPUT); 
  Serial.begin(115200);    // initialize serial communication
  BLESerial.setName("Bluno101");
  BLESerial.begin();
  //Serial.println("Bluetooth device active, waiting for connections...");
  while(!BLESerial);
}

void loop() {
  while (BLESerial.operator bool()) 
  {
    digitalWrite(13, HIGH);
  }
  digitalWrite(13, LOW);
}
Would the program be running without MC bootloader?

Edit: The IDE error:

Arduino:1.8.3 (Windows 10), Kort:"Arduino/Genuino Uno"

Sketch uses 1460 bytes (4%) of program storage space. Maximum is 32256 bytes.
Global variables use 184 bytes (8%) of dynamic memory, leaving 1864 bytes for local variables. Maximum is 2048 bytes.
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0xeb
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0xeb
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0xeb
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0xeb
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0xeb
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0xeb
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0xeb
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0xeb
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0xeb
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0xeb
Problem vid uppladdning till brädan. Se http://www.arduino.cc/en/Guide/Troubleshooting#upload för förslag.

This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.
2017-08-25 11:02:40 Because BLE link only have an CC2540 in it, you can't upload code to it, it's just a Bluetooth module userHeadPic robert.chen