avr-gcc explorer Heisen wrote:
hooverphonique wrote:no avr compilers to choose from any longer..
Really?
That's weird - in the compiler window that's open when I enter the site, there is no AVR...
Tuesday, 14 September 2021 - 09:05
avr-gcc explorer I have been, and wanted to use it again earlier today, but alas, no avr compilers to choose from any longer..
What's the name of this connector? #2 looks like JST-XH, indeed. If you don't have a crimping tool at hand, Farnell/element14 have precrimped wires (e.g. 2065433) with crimped terminals each end. You just buy two,...
Friday, 25 January 2019 - 13:26
PWM with variable frequency Simonetta wrote:
What (meaning what specific application) would require an AVR to have both Pulse-width modification and FM (the ability to vary the frequency that the PW...
Wednesday, 12 September 2018 - 20:08
PWM with variable frequency theusch wrote:
You've lost me a little bit on this one. And on a 6-year-old thread? Please give a "worked example" with numbers.
I don't have an example or numbers, I...
Wednesday, 12 September 2018 - 19:09
PWM with variable frequency I was looking at the pwm modes with TOP=OCRA as well. Am I right in my understanding that one of the waveform states is always exactly one counter clock cycle long, and the other...
Wednesday, 12 September 2018 - 18:35
PSTR(__func__) Yes, I also saw somewhere else that on avr-gcc 6.? using -fno-merge-constants circumvented some bug, which implies that merge-constants is not completely without effect.
You...
Friday, 4 May 2018 - 09:29
PSTR(__func__) I'm purely trying to pool identical strings, I don't care about optimizing identical prefixes/postfixes. The compiler should be able to pool const strings within the same...
Friday, 4 May 2018 - 08:36
PSTR(__func__) clawson wrote:
Your best bet is probably to tokenize your comment words and then have an "unpacker" that dynamically unpacks the common words needed.
Don't know what you'...
Heisen wrote: hooverphonique wrote:no avr compilers to choose from any longer.. Really? That's weird - in the compiler window that's open when I enter the site, there is no AVR...
I have been, and wanted to use it again earlier today, but alas, no avr compilers to choose from any longer..
I would like C++ support..
#2 looks like JST-XH, indeed. If you don't have a crimping tool at hand, Farnell/element14 have precrimped wires (e.g. 2065433) with crimped terminals each end. You just buy two,...
Simonetta wrote: What (meaning what specific application) would require an AVR to have both Pulse-width modification and FM (the ability to vary the frequency that the PW...
theusch wrote: You've lost me a little bit on this one. And on a 6-year-old thread? Please give a "worked example" with numbers. I don't have an example or numbers, I...
I was looking at the pwm modes with TOP=OCRA as well. Am I right in my understanding that one of the waveform states is always exactly one counter clock cycle long, and the other...
Yes, I also saw somewhere else that on avr-gcc 6.? using -fno-merge-constants circumvented some bug, which implies that merge-constants is not completely without effect. You...
I'm purely trying to pool identical strings, I don't care about optimizing identical prefixes/postfixes. The compiler should be able to pool const strings within the same...
clawson wrote: Your best bet is probably to tokenize your comment words and then have an "unpacker" that dynamically unpacks the common words needed. Don't know what you'...
bmildner wrote: void PrintError(PGM_P file, unsigned int line, const char* const function, int errNum, PGM_P msg, ...); #define ERROR(errNum, msg, ...) PrintError(PSTR(__FILE__...
steve17 wrote: Are you using C or C++? I use C++. When compiling 5,000 byte programs, I seldom get segmentation faults. When compiling 35,000 byte programs I...
Pages