Currently I am using Usbasp programmer with eclipse to develop my projects. Few days ago I bought bluetooth module for avr and I am curious if i can configure eclipse to send my project via bt to avr microcontroller?
I think it should be possible cause bt is nothing else than rs232.
It would be great to go wireless! I hope U know how to do it:D
thygate
Posted: Feb 26, 2012 - 06:21 PM
Joined: Sep 19, 2005
Posts: 765
Location: Belgium
Quote:
I think it should be possible cause bt is nothing else than rs232.
No it is not. Your module might implement a Bluetooth to RS232 bridge, Yes.
You can use a bootloader on the AVR that lets you flash new firmware via the UART by method of Self Programming. You can then connect the AVR UART to the UART of the Bluetooth module.
Check AVR109 for more info on bootloaders and an example. http://www.atmel.com/Images/doc1644.pdf
The protocol described in that Application Note is supported by some pc-side software like avrdude for example. Making a macro in eclipse to start it should be easy.