Wednesday 21 October 2015

arduino - Can an ATmega or ATtiny device signature be read while running?



While programming an ATtiny or ATmega, avrdude prints the device signature, in this example it is an ATtiny.


avrdude: Device signature = 0x1e910a

Can I read this signature on a running device using C++ code (avr-gcc)? For ATmega1280 there is a chapter 29.6.10 writing about it, but I'm a bit puzzled by how I can code it in C++.


I want to be able to make the device send its device ID back to the controlling PC, so the PC can make decisions on it.



Answer



You can use these macros that get defined automatically when you include :


SIGNATURE_0
SIGNATURE_1
SIGNATURE_2


For ATmega1280, they're defined as:


/* Signature */
#define SIGNATURE_0 0x1E
#define SIGNATURE_1 0x97
#define SIGNATURE_2 0x03

in iom1280.h (which is automatically included through when you compile code for the m1280)


For example, this will send the three bytes via UART:


uart_putc(SIGNATURE_0)

uart_putc(SIGNATURE_1)
uart_putc(SIGNATURE_2)



If you truly want to read the fuses, you'd need to use boot_signature_byte_get macro from


No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...