I would argue it's worth the extra few bucks to get the best chip out there in the series. For example, if you go PIC, get the best PIC you can handle. It is very frustrating to find out you can't extend your project to include FLASH memory just be cause you skimped on the memory or number of ports.
The practical limit I tend to draw is with pin numbers- if I need 28-pins for the initial project, I get the best 28-pin device I can. It's not like you're going to production where every dollar counts, and for the extra $10 if you can save one hour of frustration you're ahead.
One way to break out of nested loops is with a boolean. I find I have to spend less time justifying the following than using a goto- to myself and others.
NPR, available through your browser, by podcast, or even over the radio. Donation driven, so you really can set your own price of $200 a year.
Local affiliates actually track local news. Good coverage nationally and globally as well.
I would argue it's worth the extra few bucks to get the best chip out there in the series. For example, if you go PIC, get the best PIC you can handle. It is very frustrating to find out you can't extend your project to include FLASH memory just be cause you skimped on the memory or number of ports.
The practical limit I tend to draw is with pin numbers- if I need 28-pins for the initial project, I get the best 28-pin device I can. It's not like you're going to production where every dollar counts, and for the extra $10 if you can save one hour of frustration you're ahead.
Cheers,
Greg
While many solders out there do not contain lead, most do; even the ones that don't contain lead have flux which is pretty unhealthy.
So, don't solder on your kitchen table. And always always always wash your hands after you solder.
One way to break out of nested loops is with a boolean. I find I have to spend less time justifying the following than using a goto- to myself and others.
bool bBreak = false;
for(;;) {
for(;;) {
for(;;) {
bBreak = true;
}
if(bBreak)
break;
}
if(bBreak)
break;
}
This sounds like what happens when you get two AI bots in the same chat room.