... I'm regularly reading it... I've never been involved in moderating, how many people do you need? -- John-Mark Gurney Voice: +1 415 225 5579 "All that I...
John-Mark Gurney
gurney_j@...
Aug 1, 2006 6:05 pm
8256
... I haven't seen a need for *any* moderators here, let alone there not being enough. Or are you asking whether we need a moderator. I trow not. Mike -- ...
Mike McCarty
Mike.McCarty@...
Aug 1, 2006 6:46 pm
8257
Hi all Thanks for the all the ideas and advises. I did some research about the DEMO9S12NE64 board ( http://www.freescale.com/webapp/sps/site/prod_summary.jsp? ...
... The DEMO9S12NE64 has a couple onboard LED's and buttons and a pot connected to an ADC... It also has a 40 pin .1" header that has most of the other GPIO,...
John-Mark Gurney
gurney_j@...
Aug 1, 2006 7:56 pm
8260
... What about the guy that has sent 20+ copies of the same message cc'd to every single embedded list he could find? completely devoid of any info to help a...
John-Mark Gurney
gurney_j@...
Aug 1, 2006 7:59 pm
8261
... What about him? I got something like 50 copies of his e-mail, to various groups I subscribe to. This is the first time I've seen this sort of thing here. I...
Mike McCarty
Mike.McCarty@...
Aug 1, 2006 8:20 pm
8263
hi friends, Can you plz gude for this question. How to interface flash memory cards to microcontroller for external memory excess? Thank you chaitanya ... ...
... external memory excess? ... pabbu, Please change your method of posting so that you are not posting the same question multiple times. As for your flash...
... Why hasn't he been unsubscribed yet then? And this isn't the first time either, yet the previous time, nothing happened... Maybe we need a couple more...
John-Mark Gurney
gurney_j@...
Aug 1, 2006 9:23 pm
8267
Enter your vote today! A new poll has been created for the gnu-m68hc11 group: What kind of packages are you the most interested in for the GNU development...
gnu-m68hc11@yahoogrou...
Aug 1, 2006 9:52 pm
8268
For FreeBSD (or any of the BSD variants), there is no need to independently create packages. It is sufficient to prepare a "port" for the ports tree ("pkgsrc"...
Note: I thought I'd try adding one more "late-commer" to the poll: o Gentoo scripts Normally one would vote "other" for it, but then there's no way to specify...
BTW, who "commissioned" this survey? and why? Often, I find that people ask questions to vindicate some point of view or justify a premature conclusion. It...
ebuilds already exist if you look around, check http://gentoo.zugaina.org/ebuildexchange/dev-embedded.html.en My vote is for Sources (.tbz2) because that's...
... Take note... most of the choices on the survey already exist. The question is which ones you like or use or need. For those who wonder who started the...
Hi The uTasker demo project requires about 25k of code space when compiled with a commercial compiler (about 43k with the GNU compiler). This supports the...
... I'll mention that I was not suggesting moderating posts in that way, and there are no plans to do that. I only meant give more than one person the role of...
Hi C-Compiler Gurus Not directly a GCC question but I would like to hear your opinions. Small code extract: unsigned long ulSeconds = ulPresentTime; unsigned...
Hi All I would be interested to know a little about the GNU development for the HC12. I assume that the HC12 project is a bit of a split from the main GCC...
Hi Mark, The result will depend on the size of an integer. The unsigned char is promoted to an integer, then the arithmetic operations are performed. As 60 is...
Hi Mark ... 99% of our 32bit customers use GNU (PPC,ARM,Coldfire). The rest is on ARM and uses RealView or IAR because of the better size. On 16bit, none uses...
I work for a shop that prides itself on keeping development cost down. Right or wrong, this limits my budget to < $500 per development item - and that often...
... I see that the best way to control it is how you define "ulPresentTime" I don't see how that is defined. If it were unsigned long already, then you would...
Hi David The GNU compiler is set up to use 16 bit integers but doesn't have the problem. So I am reasoning that IT doesn't default to integer arithmeic when...
Hi Yes it is an unsigned long (the ulxxx shows that it is defined so - it really is...I double checked). But the casting is required. This means that if the...
Thanks - interesting numbers. These are very extreme. Can you reason why it is? If the GNU for the 32 bitters is so good then it is logical but what does it...
... The C Standard shows that this code is not portable between implementations, the result is implementation dependent. When performing the math, ucUnits is...