Closed
Description
Hi all, I report a bug(?) in power.h library, distributed with IDE 1.6.10 Win.
The error is:
exit status 1
'Power_usart3_disable' was not declared in this scope
The library lacks the definition for USART3. Solved by adding the following lines (from 852 to 855):
# if defined (__ AVR_HAVE_PRR1_PRUSART3)
# define power_usart3_enable () (PRR1 & = (uint8_t) ~ (1 << PRUSART3))
# define power_usart3_disable () (PRR1 | = (uint8_t) (1 << PRUSART3))
# endif
A problem with the Wire library (Note: the IDE 1.6.9 compiled all, without errors):
To make sure that the IDE 1.6.10 correctly loads the LiquidCrystal_I2C library,
I had to move the content of the src
folder to the root (Wire folder).
Now compile fine.
Metadata
Metadata
Assignees
Labels
No labels