Open GoogleCodeExporter opened 9 years ago
Does this patch work with earlier versions of avr-gcc? The current release
doesn't support 4.7. What happens when you apply the patch and compile using
4.1.2?
Original comment by philip.l...@gmail.com
on 30 May 2012 at 4:36
Original comment by philip.l...@gmail.com
on 30 May 2012 at 4:36
I have applied the patch and successfully compiled Blink for micaz using
avr-gcc 4.1.2.
I have also made sure that such a line is actually included: line 1130 in app.c
declares McuSleepC__atm128PowerBits an array of const_uint8_t (using the
patched typedef) and the compiler doesn't complain.
Original comment by ondra.hosek@gmail.com
on 30 May 2012 at 12:13
Adding const to the typedefs results in these these types not being correctly
stored in program memory with gcc 4.5 (it works correctly with 4.7).
Test results:
gcc 4.5
-------
const uint8_t const_pmem PROGMEM = MAGIC; /**< Stored in PROGMEM. */
typedef const uint8_t const_td_t PROGMEM;
const_td_t const_typedef = MAGIC; /**< _NOT_ stored in PROGMEM. */
uint8_t nonconst_pmem PROGMEM = MAGIC; /**< Stored in PROGMEM. */
typedef uint8_t td_t PROGMEM;
td_t nonconst_typedef = MAGIC; /**< Stored in PROGMEM. */
gcc 4.7
-------
const uint8_t const_pmem PROGMEM = MAGIC; /**< Stored in PROGMEM. */
typedef const uint8_t const_td_t PROGMEM;
const_td_t const_typedef = MAGIC; /**< Stored in PROGMEM. */
The non-const types fail to compile with the error message mentioned by Ondra.
The test program is attached.
Maybe these typedefs should be removed altogether to guarantee compatibility
between different gcc versions?
Original comment by Jakob.Gr...@gmail.com
on 6 Jun 2012 at 5:50
Attachments:
Hi to all,
I apply the patch, and the problem persists(same as exposed by ondra)
I have:
GCC - 4.6.0
AVR-GCC - 4.7.2
I had also apply a patch to $TOS_ROOT/tos/chips/atm128/crc.h but with no
results.
How can i fix it?
Original comment by teamproj...@gmail.com
on 23 Nov 2012 at 1:32
Original issue reported on code.google.com by
ondra.hosek@gmail.com
on 18 May 2012 at 5:09Attachments: