<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>ImageCraft Inc. WebLog</title>
	<atom:link href="http://imagecraft.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://imagecraft.wordpress.com</link>
	<description>ImageCraft http://www.imagecraft.com Embedded C tools</description>
	<lastBuildDate>Tue, 20 Oct 2009 10:05:54 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='imagecraft.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/2af5c5b5a1d385447298a20b71e208d9?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>ImageCraft Inc. WebLog</title>
		<link>http://imagecraft.wordpress.com</link>
	</image>
			<item>
		<title>Next-Gen IDE, Code::Blocks pre-Alpha</title>
		<link>http://imagecraft.wordpress.com/2009/10/20/next-gen-ide-codeblocks-pre-alpha/</link>
		<comments>http://imagecraft.wordpress.com/2009/10/20/next-gen-ide-codeblocks-pre-alpha/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 10:05:54 +0000</pubDate>
		<dc:creator>imagecraft</dc:creator>
				<category><![CDATA[new product]]></category>
		<category><![CDATA[code::blocks]]></category>
		<category><![CDATA[next-gen ide]]></category>

		<guid isPermaLink="false">http://imagecraft.wordpress.com/?p=148</guid>
		<description><![CDATA[Ancient History
When we started ImageCraft back in 1994, I don&#8217;t think any embedded compiler has an IDE at the time. We released our first Windows IDE before just about everyone else. It was a Windows 3.1 program, if I remember correctly. Around 2001  we released the V6 IDE with compatibility with 32-bits Windows. Then [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=148&subd=imagecraft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h2>Ancient History</h2>
<p>When we started ImageCraft back in 1994, I don&#8217;t think any embedded compiler has an IDE at the time. We released our first Windows IDE before just about everyone else. It was a Windows 3.1 program, if I remember correctly. Around 2001  we released the V6 IDE with compatibility with 32-bits Windows. Then around 2005 we released the V7 IDE with a slightly more modern look.</p>
<p>IDE is a funny thing &#8211; it&#8217;s the first thing that potential customers see, but our customers have always told us that in the end, quality code generation is the number one priority. We agree with that and we have improved code quality steadily while making our tools easier to use.  Besides, it takes a lot of resource to write a good IDE, and with the onslaught of Eclipse and a few quality IDE/editors that are either free or available for a low cost, it does not make sense for us to devote limited resource that cannot compete with the vast resource IBM and others devoted to Eclipse.</p>
<p>So we started the quest for a next-gen IDE. The good news is that our compilers are command line programs and we have always opted to generate standard format makefile and use &#8220;make&#8221; to drive the build process. This means that our customers may use our IDE, other IDE/editors, or plain forego GUI tools and use command line tools. I&#8217;d guess that the split might be 40%50%-10% respectively.</p>
<p>We rejected Eclipse early on. It&#8217;s just too bloated and it has this &#8220;everything for everybody&#8221; philosophy that I feel uncomfortable with. For a while, the Visual Studio extension sounds promising as it leverages the Microsoft Visual Studio environment. However, Microsoft is, well, Microsoft, and the VS footprint is not significantly smaller than Eclipse, and there is the issue of &#8220;free&#8221; VS 2005 vs. VS 2008 (and now VS 2010) etc.</p>
<p>We even contemplated licensing some new IDE, but for one reason or another, they didn&#8217;t work out.</p>
<h2>Enter the Code::Blocks</h2>
<p>So finally, I am glad to say that we have a next-gen IDE in the work, and it is based on the Open Source <a href="http://codeblocks.org" target="_blank">Code::Blocks</a> (C::B for short). It uses a modern editor engine and has good IDE features. It&#8217;s highly configurable with a plug-in architecture, and the licensing allows us to keep certain of our IP proprietary, which is important to keep our competitors at bay.</p>
<p>You can now get a pre-alpha version for ICCAVR <a href="http://www.imagecraft.com/pub/ImageCraftCB_alpha0.zip" target="_blank">here</a>. Keep in mind that the link will change as we move through the alpha/beta process, and currently it is definitely not ready for prime time &#8211; you sneeze wrong, and it probably will break. OTOH, it has a good editor, and since it doesn&#8217;t touch the underlying command line compiler, it should generally be harmless to try.</p>
<p>Currently you must have a ICCAVR license to use this. The link is to a zip file, which you should unzip to your c:\iccv7avr directory. You run the IDE by invoking c:\iccv7avr\ImageCraftCB\codeblocks.exe. One of the first things you need to set is the location of the compiler. Go to Settings-&gt;&#8221;Compiler and debugger settings&#8221;-&gt;&#8221;Toolchain Executables&#8221; and type c:\iccv7avr (or where you install the AVR compiler) in the &#8220;Compiler&#8217;s installation directory.&#8221; Then go to the &#8220;Other Settings&#8221; tab, and make sure &#8220;Compiler logging&#8221; is set to &#8220;Full Command Line.&#8221; All of these will be made transparent later of course.</p>
<p>To create a C::B project, you can use one of the existing projects as a starting point. For example: invoke File-&gt;New-&gt;Project, and select the &#8220;ImageCraft AVR Project&#8221; icon. You can browse to one of the existing example projects, e.g. c:\iccv7avr\examples.avr\led and call the new project CB_LED. This creates a subdirectory called c:\iccv7avr\examples.avr\led\CB_LED. On the next tab, be sure to deselect the debug target build.</p>
<p>C::B automatically gives you a main.c file. You can right click on the file name on the project list and remove it. Then you can add the actual project source back. Right click on the project and invoke Build Options. Make sure you select the right target device and the Compiler-&gt;Output is set to &#8220;COFF/HEX with debug.&#8221; Set the &#8220;Return Stack&#8221; to 20-30 and generally just make sure the correct radio buttons etc. are selected. Eventually the behaviors will match that of our current IDE.</p>
<p>After that, you can build or rebuild your project, just like before. The C::B project operates independent of the current IDE project so both can exist independently (but also must be maintained independently).</p>
<p>There you have it. The first step of a modern IDE environment for your ICC compiler. C::B has a lot of potential, including existing support for debugging.</p>
<h2>What&#8217;s Next?</h2>
<p>C::B will be the V8 IDE. We will release it as an optional IDE for V7, for testing and feedback purpose, but it will probably not be a supported option for V7 per se. We will of course offer generous upgrade options (recall V6 to V7 upgrade was only $50 for at least 2+ yars): for ICCAVR, we will offer free V8 upgrades to any purchase since Sept 2009. We have not committed the V8 IDE for other platforms besides AVR yet, but the future compiler ports will use C::B as the basis. As for now, we are still debating whether to target the Atmel AVR32, or the ARM Cortex M0/M3 first.</p>
<p>With V8, we will also continue to improve code generation and post link optimizations, to build on top of our Code Compression technology. This will also be made on the Cypress PSoC ImageCraft PRO compiler, but that&#8217;s for another post.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imagecraft.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imagecraft.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imagecraft.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imagecraft.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imagecraft.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imagecraft.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imagecraft.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imagecraft.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imagecraft.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imagecraft.wordpress.com/148/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=148&subd=imagecraft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://imagecraft.wordpress.com/2009/10/20/next-gen-ide-codeblocks-pre-alpha/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/daec1e3b6131e6eaf68a2499c3f06d89?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ImageCraft</media:title>
		</media:content>
	</item>
		<item>
		<title>Crisis and Opportunity</title>
		<link>http://imagecraft.wordpress.com/2009/05/12/crisis-and-opportunity/</link>
		<comments>http://imagecraft.wordpress.com/2009/05/12/crisis-and-opportunity/#comments</comments>
		<pubDate>Wed, 13 May 2009 00:41:11 +0000</pubDate>
		<dc:creator>imagecraft</dc:creator>
				<category><![CDATA[new product]]></category>

		<guid isPermaLink="false">http://imagecraft.wordpress.com/?p=142</guid>
		<description><![CDATA[The Chinese words for crisis is 危機 (weiji). As with most Chinese word-objects, it is made up of two independent words, 危(wei) / danger and 機(ji) / opportunity. And so the global financial crisis also presents us with some opportunities to renew ourselves.
(..click to read more&#8230;)

ImageCraft ICCV7 for M8C will be free!
Through an arrangement with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=142&subd=imagecraft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The Chinese words for crisis is 危機 (weiji). As with most Chinese word-objects, it is made up of two independent words, 危(wei) / danger and 機(ji) / opportunity. And so the global financial crisis also presents us with some opportunities to renew ourselves.</p>
<p>(..click to read more&#8230;)</p>
<p><span id="more-142"></span></p>
<h3 class="first"><a href="http://www.psocdeveloper.com/forums/viewtopic.php?f=3&amp;t=5603#p27134">ImageCraft ICCV7 for M8C will be free!</a></h3>
<p>Through an arrangement with Cypress Semiconductor Corporation, ImageCraft ICCV7 for M8C STD is now available free of charge to PSoC Designer users. The compiler is included as part of the PSoC Designer V5 SP4.5 and beyond.</p>
<p>- ICCV7 for M8C incorporates enhancements we have developed since the last official release to Cypress in 2006. The code size is 10-15% better than the previous free compiler available in PSoC Designer 5.0. We expect to continue to add enhancements to support the evolving PSoC devices.</p>
<p>- We expect to release a PRO optimized version by the end of 2009 with code size expected to be 30%-35% better than the previously available free compiler. Exact features and pricing TBD but we expect the price will be in line with our current product pricing range of $300-$549.</p>
<p>- As a good will gesture, we will offer customers who purchased our Cypress compiler licenses in 2009 a discount for the PRO compiler. Details TBD.</p>
<p>- ICCV7 for M8C is fully supported by ImageCraft. Any C related questions should be addressed to us directly at support @imagecraft.com</p>
<p>****</p>
<p>So what else are we planning to do? One lesson we learned from this financial crisis is that to compete effectively, avoid competition! Unsurprisingly, we will need to move to a Next-Gen IDE, add full support the the Atmel XMega, and add new target such as the Cortex M processors.</p>
<p>I will provide more progress reports as warranted.</p>
<p>// richard</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imagecraft.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imagecraft.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imagecraft.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imagecraft.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imagecraft.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imagecraft.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imagecraft.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imagecraft.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imagecraft.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imagecraft.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=142&subd=imagecraft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://imagecraft.wordpress.com/2009/05/12/crisis-and-opportunity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/daec1e3b6131e6eaf68a2499c3f06d89?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ImageCraft</media:title>
		</media:content>
	</item>
		<item>
		<title>Competing with &#8220;Free&#8221; Software</title>
		<link>http://imagecraft.wordpress.com/2009/03/12/competing-with-free-software/</link>
		<comments>http://imagecraft.wordpress.com/2009/03/12/competing-with-free-software/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 08:53:49 +0000</pubDate>
		<dc:creator>imagecraft</dc:creator>
				<category><![CDATA[history]]></category>
		<category><![CDATA[new product]]></category>
		<category><![CDATA[atmel avr]]></category>
		<category><![CDATA[C library]]></category>
		<category><![CDATA[competitor]]></category>
		<category><![CDATA[cortex]]></category>
		<category><![CDATA[cypress psoc]]></category>
		<category><![CDATA[eMOS]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[PSoC]]></category>
		<category><![CDATA[RTOS]]></category>
		<category><![CDATA[strategy]]></category>

		<guid isPermaLink="false">http://imagecraft.wordpress.com/?p=134</guid>
		<description><![CDATA[Tough Survivors
As I said in the last blog entry, independent embedded C/C++ compiler companies are becoming rare birds. Of the independent companies that support multiple platforms, besides us ImageCraft, there are Green Hills (US), IAR (SE), Cosmic (FR), Rowley (UK), and&#8230; um, I think that&#8217;s it. Since being bought up, Hiware/Metrowerks primarily target Freescale chips; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=134&subd=imagecraft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h2>Tough Survivors</h2>
<p>As I said in the last blog entry, independent embedded C/C++ compiler companies are becoming rare birds. Of the independent companies that support multiple platforms, besides us <a href="http://www.imagecraft.com" target="_blank">ImageCraft</a>, there are Green Hills (US), IAR (SE), Cosmic (FR), Rowley (UK), and&#8230; um, I think that&#8217;s it. Since being bought up, Hiware/Metrowerks primarily target Freescale chips; Hi-Tech clearly will concentrate only on Microchip&#8217;s PIC; Keil, despite being an &#8220;ARM company,&#8221; still sell tools for the 8051, C166 etc. probably because the money is good, but who knows how long that will last?&#8230; Most  if not all compiler companies were started by compiler gearheads (who else would be crazy enough to start a compiler company?) a while ago. In fact Cosmic and ImageCraft are tangentially related through our lineage with Whitsemiths. With the different product pricing and the vast number of embedded devices, most of us in fact do not compete directly with each other per se. However, there is &#8230;</p>
<h2>The GCC Equation </h2>
<p>(dun dun duuuuunnnn&#8230;..)</p>
<p>Different embedded compiler companies &#8220;die&#8221; for different reasons, most likely financially related, and in 2009, the GCC equation must be a factor directly or indirectly. (Click on &#8230;more&#8230; to continue)</p>
<p><span id="more-134"></span></p>
<p>A one paragraph summary of GCC (GNU Compiler Collection, previously known as the GNU C Compiler back in 1985 when I was arguing with Richard Stallman why it&#8217;s a bad idea and he argued why I should join in the Cause) is this: GCC is a high quality compiler collection that is free to use if you agree with its terms (the GNU Public license or GPL). The base GPL stipulates that under some conditions, you grant your users certain rights  (&#8220;Freedom&#8221;) to your code. A less restrictive LGPL license gives you more freedom on what you need to release. As each GPL release takes months of Stallman&#8217;s time to write, I&#8217;d not attempt to summarize or interpret them beyond the above, as any such attempt would be inaccurate (as surely would someone say that I already mis-characterized GCC in the above). Interested parties should visit http://fsf.org instead.</p>
<p>GCC is used in many embedded projects. While anyone can build their own GCC binaries, you can download them pre-built and in some cases, some commercial vendors would sell you GCC with support, or with their own IDE, or libraries etc. GPL does not restrict you from making money per se, even selling GCC if you wish (finding customers is of course a different story).</p>
<p>It&#8217;s tough to argue for buying a multi-thousands ARM compiler when GCC is Free. So how does one compete with Free, regardless whatever license restriction it may or may not have? Different companies have different solutions, and after looking at this problem for a while, this is what will do:</p>
<h2>The 8-bit Solution</h2>
<p>Despite a movement to adopt 32-bit architectures, there will continue to be a big market for the 8-bit (and 16-bit) MCUs. This is the market where GCC does not excel in due to the inherent limitations of the GCC compiler architecture. So, to be more successful in this market, we will need to take advantage of GCC&#8217;s weakness and optimizes better. For the AVR, we are already better than GCC code quality wise but competing against Free is still tough. What this means is that we will be implementing mixed pointer qualifiers (e.g. __far, __near, __huge etc.) and generate optimal code for each type of pointer access. As 8 bit MCUs typically have different address space, this will be a big win. For the AVR, this means better control of flash data, especially for the XMega (GCC doesn&#8217;t support the simple flash space well already and the XMega will definitely stretch GCC&#8217;s limit); for the Cypress PSoC1 M8C (if we were to reenter the market), this means much better code density for data access.</p>
<p>Some compilers implement whole program analysis to support mixed pointer usage, but we believe that the programmers can give better guidance in most cases, resulting in a more robust compiler. Embedded programmers who are concerned about code size know their stuff well.</p>
<h2>The 32-bit Solution</h2>
<p>For the 32-bit, we already have an ARM/Thumb compiler and the Propeller C compiler. Nothing needs to be done about them. However, it does not make sense for us to compete with the free GCC on potentially new targets such as the AVR32 and the ARM Cortex. As our resource is limited, in this space, we will leverage GCC and give commercial users a better solution by integrating GCC with our simple to use IDE and Dinkumware&#8217;s rock solid C/C++/EC++ Library. This eliminates any possible encumberment for the users from LGPL, thus providing values to our customers. This also frees up resource so that we can work on software stacks (e.g. eMOS, SD/File System, etc.) for the targets, giving our customers a complete solution. Or may be even porting to OSX or Linux etc.</p>
<p>We will continue to keep our pricing competitive and tools easy to use. GCC presents a challenge, but then again, each challenge presents an opportunity. Life is never boring.</p>
<p>// richard</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imagecraft.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imagecraft.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imagecraft.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imagecraft.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imagecraft.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imagecraft.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imagecraft.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imagecraft.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imagecraft.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imagecraft.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=134&subd=imagecraft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://imagecraft.wordpress.com/2009/03/12/competing-with-free-software/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/daec1e3b6131e6eaf68a2499c3f06d89?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ImageCraft</media:title>
		</media:content>
	</item>
		<item>
		<title>And Then There is One Less&#8230;.</title>
		<link>http://imagecraft.wordpress.com/2009/03/09/and-then-there-is-one-less/</link>
		<comments>http://imagecraft.wordpress.com/2009/03/09/and-then-there-is-one-less/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 01:34:42 +0000</pubDate>
		<dc:creator>imagecraft</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[business relation]]></category>
		<category><![CDATA[cypress psoc]]></category>
		<category><![CDATA[strategy]]></category>

		<guid isPermaLink="false">http://imagecraft.wordpress.com/?p=131</guid>
		<description><![CDATA[Embedded compiler and tool companies are endangered species. When I first joined Whitesemiths, the whole C compiler market was still new. Since then, there must have been at least a dozen DOS/Windows C compiler companies that have come and gone, and probably even more embedded C compiler companies have disappeared in the same period.
A popular [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=131&subd=imagecraft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Embedded compiler and tool companies are endangered species. When I first joined Whitesemiths, the whole C compiler market was still new. Since then, there must have been at least a dozen DOS/Windows C compiler companies that have come and gone, and probably even more embedded C compiler companies have disappeared in the same period.</p>
<p>A popular trend is for silicon vendors to buy up compiler companies, nominally to ensure that they have full support for their chips. Motorola bought Hiware a few years back, and now Microchip just purchased Hi-Tech software.</p>
<p>Among embedded compiler companies that support multiple platforms, we are among a small handful of survivors. We understand the difficulties facing us.  We have been in business since 1994 and expect to be around for quite a bit longer. The economic situation made us re-examine our business model and development strategiesand we think that we can remain independent and continue to be successful.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imagecraft.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imagecraft.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imagecraft.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imagecraft.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imagecraft.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imagecraft.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imagecraft.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imagecraft.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imagecraft.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imagecraft.wordpress.com/131/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=131&subd=imagecraft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://imagecraft.wordpress.com/2009/03/09/and-then-there-is-one-less/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/daec1e3b6131e6eaf68a2499c3f06d89?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ImageCraft</media:title>
		</media:content>
	</item>
		<item>
		<title>Product Development Update</title>
		<link>http://imagecraft.wordpress.com/2009/02/26/product-development-update/</link>
		<comments>http://imagecraft.wordpress.com/2009/02/26/product-development-update/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 13:13:25 +0000</pubDate>
		<dc:creator>imagecraft</dc:creator>
				<category><![CDATA[new product]]></category>
		<category><![CDATA[430X]]></category>
		<category><![CDATA[eMOS]]></category>
		<category><![CDATA[FAT File SYstem]]></category>
		<category><![CDATA[msp430]]></category>
		<category><![CDATA[RTOS]]></category>

		<guid isPermaLink="false">http://imagecraft.wordpress.com/?p=129</guid>
		<description><![CDATA[There are only about 50-100 assembly lines (if that) in the core executive portion of eMOS, but like all other executives, it takes blood, sweat, and tear to get it right. After a night of hardcore debugging, I am happy to say that eMOS for 430 is alive with the messaging routines working quite well. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=129&subd=imagecraft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>There are only about 50-100 assembly lines (if that) in the core executive portion of eMOS, but like all other executives, it takes blood, sweat, and tear to get it right. After a night of hardcore debugging, I am happy to say that eMOS for 430 is alive with the messaging routines working quite well. A bits more testing and code cleanup, and modifying the documentation and it&#8217;s good to go.</p>
<p>As per design, only3-4 lines of C code need to change, to accommodate the difference between AVR and the MSP430 (other than the device specific code of course). There may be more opportunities to take advantage of the low power mode of the msp430, I will be working on that.  For those who do not know what eMOS is, please refer to <a href="http://www.imagecraft.com/pub/emos_avr.pdf" target="_blank">http://www.imagecraft.com/pub/emos_avr.pdf</a>. It&#8217;s the AVR document, but the functionality is nearly identical.</p>
<p>***</p>
<p>In another news, regarding the minimal support for the 430X in the form of &gt; 64K support, I have gotten the CALLA/RETA code in, and it works well for the below 64K cases. I have trouble loading &gt; 64K program so it has not been tested where it counts yet, but I have just gotten a loader that should work. I hope to finish that off relatively soon also.</p>
<p>***</p>
<p>I also have a prototype SD/FAT stack working, complete with ANSI C stdio functions (fopen, fprintf, fputs, etc.) to a middleware FAT filesystem on top a SPI SD interface. The code is completely portable, currently being tested on an AVR Mega32.</p>
<p>The current plan is to release a standalone version and a version adapted for eMOS RTOS (hooks for other RTOS will also be provided), plus the FAT layer will also comes in two versions: one that is fast and support multiple concurrent devices but really requires external SRAM and one that is slower and supports only one device but works with the small amount of internal SRAM. So 4 versions altogether.</p>
<p>I am working on optimizing the FAT layer both at the algorithmic level and low level code generation. However, it&#8217;s probably not recommend for devices with less that 32K of flash or 2K of SRAM.</p>
<p>The application API is strictly ANSI C, based on the <a href="http://www.dinkumware.com" target="_blank">Dinkumware </a>library, written by PJ Plauger, my former boss and the code is as complete and as rock solid as it gets.</p>
<p>The hardware interface initially supports SD card using the SPI protocol, but the code can be easily adapted for other memory devices or protocol.</p>
<p>The proposed pricing is $200 binary only, with the needed functions supplied in source code for any customization.</p>
<p>The initial release will be for the AVR, but ports to all targets with built-in SPI should be trivial. The Propeller requires a bit bang version of SPI interface using a separate Cog. Other devices without hardware SPI can use bit banging.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imagecraft.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imagecraft.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imagecraft.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imagecraft.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imagecraft.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imagecraft.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imagecraft.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imagecraft.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imagecraft.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imagecraft.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=129&subd=imagecraft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://imagecraft.wordpress.com/2009/02/26/product-development-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/daec1e3b6131e6eaf68a2499c3f06d89?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ImageCraft</media:title>
		</media:content>
	</item>
		<item>
		<title>New Year, New Challenges, New Plans</title>
		<link>http://imagecraft.wordpress.com/2009/02/05/new-year-new-challenges-new-plans/</link>
		<comments>http://imagecraft.wordpress.com/2009/02/05/new-year-new-challenges-new-plans/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 12:31:50 +0000</pubDate>
		<dc:creator>imagecraft</dc:creator>
				<category><![CDATA[new product]]></category>

		<guid isPermaLink="false">http://imagecraft.wordpress.com/?p=125</guid>
		<description><![CDATA[One aspect being a small company is that we can and often need to move fast. Back in 1996 or so, we were one of the first embedded compiler companies to have  a presence on the web. To wit, guess how many variation of imagecraft and imagecraftXYZ .com .net etc. are out there?
In response to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=125&subd=imagecraft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>One aspect being a small company is that we can and often need to move fast. Back in 1996 or so, we were one of the first embedded compiler companies to have  a presence on the web. To wit, guess how many variation of imagecraft and imagecraftXYZ .com .net etc. are out there?</p>
<p>In response to the current financial situation, we need to make changes in our plans. First and foremost, we will continue the path began by the eMOS release &#8211; we will add more software stacks to our offering. It makes sense for the customers and it makes sense for us business wise. The plan is still to release eMOS for the MSP430 next, and then SD/FAT support next.</p>
<p>Core IDE enhancement wise, the plan for the next-gen IDE has changed. We have decided that the best option is tokeep our IDE, which is nice and simple, and a) integrate a new editor engine with more modern features (e.g. code folding), b) update the look and feel with more modern looking icons, and c) add more user friendly features. We have decided to leverage the Open Source Scintilla editing engine which supports all the modern editing features.</p>
<p>In the MSP430X support front, we will release a new version of the MSP430 tools that support &gt; 64K function calls first, without the additional support for the other new 430X instructions. Those will be added later. The &gt; 64K support is the most important and this allows us to make a release sooner rather than later.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imagecraft.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imagecraft.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imagecraft.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imagecraft.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imagecraft.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imagecraft.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imagecraft.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imagecraft.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imagecraft.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imagecraft.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=125&subd=imagecraft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://imagecraft.wordpress.com/2009/02/05/new-year-new-challenges-new-plans/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/daec1e3b6131e6eaf68a2499c3f06d89?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ImageCraft</media:title>
		</media:content>
	</item>
		<item>
		<title>eMOS for TI MSP430</title>
		<link>http://imagecraft.wordpress.com/2009/02/01/121/</link>
		<comments>http://imagecraft.wordpress.com/2009/02/01/121/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 02:29:02 +0000</pubDate>
		<dc:creator>imagecraft</dc:creator>
				<category><![CDATA[new product]]></category>
		<category><![CDATA[eMOS]]></category>
		<category><![CDATA[msp430]]></category>
		<category><![CDATA[RTOS]]></category>

		<guid isPermaLink="false">http://imagecraft.wordpress.com/?p=121</guid>
		<description><![CDATA[We are now porting eMOS to the TI MSP430. The TI MSP430 excels at minimizing power consumption, and with eMOS&#8217; system hooks to shut down the system when it is quiescent, eMOS is a good fit for the MSP430 family. We expect porting and testing will take about a month so production release should be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=121&subd=imagecraft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>We are now porting <a href="http://www.imagecraft.com/pub/emos_avr.pdf" target="_blank">eMOS </a>to the TI MSP430. The TI MSP430 excels at minimizing power consumption, and with eMOS&#8217; system hooks to shut down the system when it is quiescent, eMOS is a good fit for the MSP430 family. We expect porting and testing will take about a month so production release should be around the beginning of March.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imagecraft.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imagecraft.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imagecraft.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imagecraft.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imagecraft.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imagecraft.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imagecraft.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imagecraft.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imagecraft.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imagecraft.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=121&subd=imagecraft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://imagecraft.wordpress.com/2009/02/01/121/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/daec1e3b6131e6eaf68a2499c3f06d89?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ImageCraft</media:title>
		</media:content>
	</item>
		<item>
		<title>FileSys and SD modules, plus eMOS update</title>
		<link>http://imagecraft.wordpress.com/2009/01/29/filesys-and-sd-modules-plus-emos-update/</link>
		<comments>http://imagecraft.wordpress.com/2009/01/29/filesys-and-sd-modules-plus-emos-update/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 03:23:37 +0000</pubDate>
		<dc:creator>imagecraft</dc:creator>
				<category><![CDATA[new product]]></category>

		<guid isPermaLink="false">http://imagecraft.wordpress.com/?p=116</guid>
		<description><![CDATA[First, a quick update on eMOS: we have modified the eMOS_MsgReceive function to include a timeout value, so that the call may timeout if no message is received within the specified time period. A couple minor functions are also added. See the doc for details.
// EDIT: yes, the goal is to support both FAT16 and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=116&subd=imagecraft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>First, a quick update on eMOS: we have modified the eMOS_MsgReceive function to include a timeout value, so that the call may timeout if no message is received within the specified time period. A couple minor functions are also added. See the <a href="http://www.imagecraft.com/pub/emos_avr.pdf" target="_blank">doc </a>for details.</p>
<p>// EDIT: yes, the goal is to support both FAT16 and FAT32. Long File Name under FAT32 may require end user to pay Microsoft a licensing fee of $0.25 per copy used, or we may support a different LFN implemenation</p>
<p>We are now looking into our first plug-in module for eMOS, which is a file system and SD driver. We will probably also include a standalone version that does not require eMOS. The eMOS version will of course fully support multitasking.</p>
<p>In terms of API, the obvious choice for the FS is in fact the stdio.h C API, in summary:</p>
<p>(more under the &#8230;more&#8230;)</p>
<p><span id="more-116"></span></p>
<p>File IO functions:</p>
<ul>
<li>fprintf &#8211; formatted output</li>
<li>fputs &#8211; outputs a string</li>
<li>fwrite &#8211; writes a block of data</li>
<li>fputc -writes a single character</li>
<li>fscanf &#8211; formatted input</li>
<li>fgets &#8211; reads a string</li>
<li>fread &#8211; reads a block of data</li>
<li>fgets &#8211; reads a single character</li>
<li>ungetc &#8211; &#8220;unread&#8221; the last read character</li>
</ul>
<p>File functions:</p>
<ul>
<li>fopen &#8211; opens a file by name and mode</li>
<li>fclose &#8211; closes a file</li>
<li>freopen &#8211; closes an open file and associates the FILE stream with another file</li>
<li>rename &#8211; renames a file by name</li>
<li>remove &#8211; removes a file by name</li>
</ul>
<p>Auxiliary functions:</p>
<ul>
<li>ftell &#8211; returns IO position</li>
<li>fsetpos &#8211; sets IO position</li>
<li>fseek &#8211; sets IO position</li>
<li>rewind &#8211; rewinds IO position to beginning of file</li>
<li>setbuf, setvbuf &#8211; allocates a buffer for IO operations</li>
<li>tmpnam &#8211; returns a unique temporary file name</li>
<li>tmpfile &#8211; creates a temporary files</li>
</ul>
<p>Standard C does not define directory functions, but of course they are needed:</p>
<ul>
<li>chdir &#8211; changes current directory</li>
<li>getcwd, getcurdir &#8211; returns the current directory</li>
<li>mkdir &#8211; creates a directory</li>
<li>rmdir &#8211; removes a directory</li>
<li>findfirst &#8211; returns the first file that matches a pattern</li>
<li>findnext &#8211; returns the next file that matches the previous pattern</li>
</ul>
<p>Low level file sys support:</p>
<ul>
<li>mount &#8211; mounts a file system device</li>
<li>freespace &#8211; returns the amount of free bytes on the device</li>
<li>devicesize &#8211; returns the storage size</li>
</ul>
<p>The file system will be optimized for flash devices, in particular, SD and Data Flash drivers are initially included. &#8220;Wear leveling&#8221; will be optimized to maximize the lifetime of the unit.</p>
<p><strong>Bootloader Update</strong></p>
<p>Another design goal is to have a library usable by a bootloader to load an updated application program from a SD card. Due to the bootloader space limitation, not allAPI functions will be supported but this feature would allow you to perform field upgrades of your systems in a relatively pain free way.</p>
<p>*****</p>
<p>As we are still only in the design stage, I welcome your comments and suggestions, either as a reply to this post or to you can email me directly richard @imagecraft.com</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imagecraft.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imagecraft.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imagecraft.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imagecraft.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imagecraft.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imagecraft.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imagecraft.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imagecraft.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imagecraft.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imagecraft.wordpress.com/116/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=116&subd=imagecraft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://imagecraft.wordpress.com/2009/01/29/filesys-and-sd-modules-plus-emos-update/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/daec1e3b6131e6eaf68a2499c3f06d89?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ImageCraft</media:title>
		</media:content>
	</item>
		<item>
		<title>Propeller Bundles &#8211; Buy A Compiler, Get a Free Board&#8230;</title>
		<link>http://imagecraft.wordpress.com/2009/01/23/propeller-bundles-buy-a-compiler-get-a-free-board/</link>
		<comments>http://imagecraft.wordpress.com/2009/01/23/propeller-bundles-buy-a-compiler-get-a-free-board/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 07:12:51 +0000</pubDate>
		<dc:creator>imagecraft</dc:creator>
				<category><![CDATA[new product]]></category>

		<guid isPermaLink="false">http://imagecraft.wordpress.com/?p=113</guid>
		<description><![CDATA[For limited time, we are offering a free Propeller Demo Board when you purchase a Propeller C compiler, both the -NC and STD versions. This is the same board that retails for $80. This is a great way to get into C programming for the Propeller. Take advantage of the sales now, while supplies last. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=113&subd=imagecraft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>For limited time, we are offering a free Propeller Demo Board when you purchase a Propeller C compiler, both the -NC and STD versions. This is the same board that retails for $80. This is a great way to get into C programming for the Propeller. Take advantage of the sales now, while supplies last. Go to our website, http://www.imagecraft.com, click on Hardware, then &#8220;Special Price Bundles,&#8221; and select the version you want.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imagecraft.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imagecraft.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imagecraft.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imagecraft.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imagecraft.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imagecraft.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imagecraft.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imagecraft.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imagecraft.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imagecraft.wordpress.com/113/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=113&subd=imagecraft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://imagecraft.wordpress.com/2009/01/23/propeller-bundles-buy-a-compiler-get-a-free-board/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/daec1e3b6131e6eaf68a2499c3f06d89?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ImageCraft</media:title>
		</media:content>
	</item>
		<item>
		<title>-NC Non Commercial Use License and Low Cost Hardware Bundles</title>
		<link>http://imagecraft.wordpress.com/2009/01/13/nc-non-commercial-use-license-and-low-cost-hardware-bundles/</link>
		<comments>http://imagecraft.wordpress.com/2009/01/13/nc-non-commercial-use-license-and-low-cost-hardware-bundles/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 02:42:06 +0000</pubDate>
		<dc:creator>imagecraft</dc:creator>
				<category><![CDATA[new product]]></category>

		<guid isPermaLink="false">http://imagecraft.wordpress.com/?p=110</guid>
		<description><![CDATA[We have released -NC Non Commercial Use license for all the V7 products. In addition, we have created some very attractively priced bundle kits &#8211; perfect for people starting embedded development. For more information, click on the &#8220;Harwdare&#8221; button on our website, then &#8220;Special Price Bundle Kits.&#8221;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=110&subd=imagecraft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>We have released -NC Non Commercial Use license for all the V7 products. In addition, we have created some very attractively priced bundle kits &#8211; perfect for people starting embedded development. For more information, click on the &#8220;Harwdare&#8221; button on our website, then &#8220;Special Price Bundle Kits.&#8221;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imagecraft.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imagecraft.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imagecraft.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imagecraft.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imagecraft.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imagecraft.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imagecraft.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imagecraft.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imagecraft.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imagecraft.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imagecraft.wordpress.com&blog=4257514&post=110&subd=imagecraft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://imagecraft.wordpress.com/2009/01/13/nc-non-commercial-use-license-and-low-cost-hardware-bundles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/daec1e3b6131e6eaf68a2499c3f06d89?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ImageCraft</media:title>
		</media:content>
	</item>
	</channel>
</rss>