RoboticsGeneral

ROMEO BLE Upload issue

userHead Account cancelled 2017-10-24 07:47:49 2891 Views1 Replies
I'm able to upload the simple "blink" example via USB connection with the "Board" set to Arduino/Genuino UNO but when I attempt to upload any of the Robot Control examples like R02_Line_Follow with the same Board setting the prompt states "Error compiling for board Arduino/Genuino Uno". So i change the board definition to Arduino Robot Control and it does compile but i get the error message below. Does anyone have similar experience they resolved?
Thanks
ralph

Arduino: 1.8.5 Hourly Build 2017/10/13 11:12 (Mac OS X), Board: "Arduino Robot Control"

Build options changed, rebuilding all
/Users/ralph/Desktop/Arduino.app/Contents/Java/libraries/Robot_Control/examples/explore/R02_Line_Follow/R02_Line_Follow.ino: In function 'void setup()':
/Users/ralph/Desktop/Arduino.app/Contents/Java/libraries/Robot_Control/examples/explore/R02_Line_Follow/R02_Line_Follow.ino:35:31: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
Robot.drawBMP("lf.bmp", 0, 0); // display background image
^
/Users/ralph/Desktop/Arduino.app/Contents/Java/libraries/Robot_Control/examples/explore/R02_Line_Follow/R02_Line_Follow.ino:37:29: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
Robot.playFile("chase.sqm"); // play a song from the SD card
^
/Users/ralph/Desktop/Arduino.app/Contents/Java/libraries/Robot_Control/src/helper.cpp: In member function 'void RobotControl::displayLogos()':
/Users/ralph/Desktop/Arduino.app/Contents/Java/libraries/Robot_Control/src/helper.cpp:53:24: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
_drawBMP("lg0.bmp",0,0);
^
/Users/ralph/Desktop/Arduino.app/Contents/Java/libraries/Robot_Control/src/helper.cpp:55:24: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
_drawBMP("lg1.bmp",0,0);
^
/Users/ralph/Desktop/Arduino.app/Contents/Java/libraries/Robot_Control/src/lcd.cpp: In member function 'void RobotControl::_drawBMP(char*, uint8_t, uint8_t)':
/Users/ralph/Desktop/Arduino.app/Contents/Java/libraries/Robot_Control/src/lcd.cpp:164:38: warning: NULL used in arithmetic [-Wpointer-arith]
if ((file.open(filename,O_READ)) == NULL) {
^
/Users/ralph/Desktop/Arduino.app/Contents/Java/libraries/Robot_Control/src/utility/RobotTextManager.cpp: In member function 'void TextManager::getInput(int, int)':
/Users/ralph/Desktop/Arduino.app/Contents/Java/libraries/Robot_Control/src/utility/RobotTextManager.cpp:81:24: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
writeText(lin,col,">"); //Input indicator
^
Sketch uses 23312 bytes (81%) of program storage space. Maximum is 28672 bytes.
Global variables use 1934 bytes (75%) of dynamic memory, leaving 626 bytes for local variables. Maximum is 2560 bytes.
Low memory available, stability problems may occur.

avrdude: butterfly_recv(): programmer is not responding
avrdude: butterfly_recv(): programmer is not responding
avrdude: butterfly_recv(): programmer is not responding
avrdude: butterfly_recv(): programmer is not responding
avrdude: butterfly_recv(): programmer is not responding
Found programmer: Id = "��"; type = Q
Software Version = .; Hardware Version = .
avrdude: butterfly_recv(): programmer is not responding
avrdude: butterfly_recv(): programmer is not responding
avrdude: error: buffered memory access not supported. Maybe it isn't
a butterfly/AVR109 but a AVR910 device?
avrdude: initialization failed, rc=-1
Double check connections and try again, or use -F to override
this check.

avrdude: butterfly_recv(): programmer is not responding
avrdude: error: programmer did not respond to command: leave prog mode
avrdude: butterfly_recv(): programmer is not responding
avrdude: error: programmer did not respond to command: exit bootloader
avrdude: error: programmer did not respond to command: exit bootloader
2018-01-03 09:34:49 Have you tried different PC or board to test if the code or the board is good userHeadPic robert.chen