avrdudes / avr-libc

The AVR-LibC package provides a subset of the standard C library for AVR 8-bit RISC microcontrollers.
https://avrdudes.github.io/avr-libc/
Other
261 stars 56 forks source link

[bug #40569] sleep_bod_disable does not work in attiny13a #577

Closed avrs-admin closed 2 years ago

avrs-admin commented 2 years ago

Wed 13 Nov 2013 06:14:47 PM CET

The implementation of sleep_bod_disable for non-xmega mcu's is as follows (from avr/sleep.h):

define sleep_bod_disable()

do { uint8_t tempreg; asm volatile("in %[tempreg], %[mcucr]" "nt" "ori %[tempreg], %[bods_bodse]" "nt" "out %[mcucr], %[tempreg]" "nt" "andi %[tempreg], %[not_bodse]" "nt" "out %[mcucr], %[tempreg]" : [tempreg] "=&d" (tempreg) : [mcucr] "I" _SFR_IO_ADDR(MCUCR), [bods_bodse] "i" (_BV(BODS) | _BV(BODSE)), [not_bodse] "i" (~_BV(BODSE))); } while (0)

However, this hardcodes MCUCR, while attiny13 uses BODCR for these bits (see page 33 of http://www.atmel.com/Images/doc8126.pdf).

A grep on BODSE and BPDSE (a typo, see #40567) shows that tn2313a and tn4313 also have the same problem.

Perhaps adding something like:

ifdef BODCR

define BODSE_TEMP_REG BODCR

else

define BODSE_TEMP_REG MCUCR

endif

and then use BODSE_TEMP_REG in the ASM snippet would fix this?

This issue was migrated from https://savannah.nongnu.org/bugs/?40569

avrs-admin commented 2 years ago

Pitchumani Wed 30 Jul 2014 01:48:23 PM CEST

http://svn.savannah.nongnu.org/viewvc?view=rev&root=avr-libc&revision=2433

This patch has been applied and committed.

Thank you for the contribution.

avrs-admin commented 2 years ago

Matthijs Kooijman Wed 30 Jul 2014 02:26:18 PM CEST

Looks good, thanks!