Multiple Compiling Errors after Atmel Studio update Thanks for the hint!
Here's a snippet of a similar error from the output window:
In file included from c:\program files (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-...
ATmega328PB - mapping Fast-PWM to several IO-Ports? OK, thanks guys!
I think I remain with my hardware solution, as it isn't worth the effort of migrating the complete system.
I hoped there would be a way with maybe some smart...
Saturday, 4 January 2020 - 16:12
ATmega328PB - mapping Fast-PWM to several IO-Ports? ...btw. I've just checked the ATmega4809 in MPLAB, and it seems to have just 3 channels of 16 Bit PWM in TCA0 and in TCBn only 8 Bit PWMs.
Multiple output assignments are not...
Friday, 3 January 2020 - 17:10
ATmega328PB - mapping Fast-PWM to several IO-Ports? mega4809 is quite a nice proposal.
But ATmega328pb is already been used, and I don't want to rewrite the complete software, as PWM is just one of the features used.
Friday, 3 January 2020 - 15:46
conversion of uint32_t to float - strange behaviour ...simple mistake, big effect!
ki0bk is right!!
I was using
sprintf (StrDisplay, "ADC: %u", ADCvalue_Temp);
instead of
sprintf (StrDisplay, "ADC: %lu", ADCvalue_Temp...
Wednesday, 21 November 2018 - 15:14
ATmega328PB - using UART1 in addition to SPI0 port Many thanks for your input!
The the only SPI device would be a display with just an input (MOSI -> display) physically connected to the RXD input of the second ATmega...
Saturday, 3 November 2018 - 20:42
TWI-slave doesn't send acknowledge (ATmega328PB) ...OK, many thanks to all.
TWI slave is running!
I just had to add:
TWCR = (1<<TWIE)|(1<<TWINT); // Enable TWI Interrupt and clear the flag to send...
TWI-slave doesn't send acknowledge (ATmega328PB) I'd really do, as Fleurys librarys are very reliable, but I only know the libs for TWI master.
I've been searching for a quite a long time for TWI slave libs, but didn't find any...
Wednesday, 3 October 2018 - 16:54
ATMEGA328PB - setting up a TWI slave OK, one thing more I found out.
The io.h seems to load the correct ioXXX.h file depending on the defined device automatically, so I had a look a the Toolchain.
Although the...
Thanks for the hint! Here's a snippet of a similar error from the output window: In file included from c:\program files (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-...
Many thanks kabasan, I'll give it a try when I have build up the new hardware!
OK, thanks guys! I think I remain with my hardware solution, as it isn't worth the effort of migrating the complete system. I hoped there would be a way with maybe some smart...
...btw. I've just checked the ATmega4809 in MPLAB, and it seems to have just 3 channels of 16 Bit PWM in TCA0 and in TCBn only 8 Bit PWMs. Multiple output assignments are not...
mega4809 is quite a nice proposal. But ATmega328pb is already been used, and I don't want to rewrite the complete software, as PWM is just one of the features used.
...simple mistake, big effect! ki0bk is right!! I was using sprintf (StrDisplay, "ADC: %u", ADCvalue_Temp); instead of sprintf (StrDisplay, "ADC: %lu", ADCvalue_Temp...
Many thanks for your input! The the only SPI device would be a display with just an input (MOSI -> display) physically connected to the RXD input of the second ATmega...
...OK, many thanks to all. TWI slave is running! I just had to add: TWCR = (1<<TWIE)|(1<<TWINT); // Enable TWI Interrupt and clear the flag to send...
...many thanks, I'll check this!
Can anyone suggest a reliable TWI slave library?
I'd really do, as Fleurys librarys are very reliable, but I only know the libs for TWI master. I've been searching for a quite a long time for TWI slave libs, but didn't find any...
OK, one thing more I found out. The io.h seems to load the correct ioXXX.h file depending on the defined device automatically, so I had a look a the Toolchain. Although the...
Pages