<?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/"
	>

<channel>
	<title>Embedded in Cork &#187; Embedded</title>
	<atom:link href="http://embeddedincork.net/category/embedded/feed/" rel="self" type="application/rss+xml" />
	<link>http://embeddedincork.net</link>
	<description>Low Level Tech Talk from Cork, Ireland by Ralph Depping</description>
	<lastBuildDate>Wed, 25 Jun 2008 15:15:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>PowerPC Kernel &#8211; System Overview</title>
		<link>http://embeddedincork.net/2008/02/18/powerpc-kernel-system-overview/</link>
		<comments>http://embeddedincork.net/2008/02/18/powerpc-kernel-system-overview/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 20:02:32 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Embedded]]></category>
		<category><![CDATA[PowerPC]]></category>
		<category><![CDATA[RTOS]]></category>

		<guid isPermaLink="false">http://embeddedincork.net/2008/02/18/powerpc-kernel-system-overview/</guid>
		<description><![CDATA[Before examining the different key design areas relating to the PowerPC kernel implementation it&#8217;s worth taking a look at the overall system. The purpose of the kernel is to support a GSM radio platform capable of supporting two carriers of GSM, GPRS or EDGE. At the heart of the digital part of the radio is [...]]]></description>
			<content:encoded><![CDATA[<p>Before examining the different key design areas relating to the PowerPC kernel implementation it&#8217;s worth taking a look at the overall system.  The purpose of the kernel is to support a <strong>GSM radio platform</strong> capable of supporting two carriers of GSM, GPRS or EDGE.  At the heart of the digital part of the radio is a PowerPC based communications processor (PowerQUICC 2).  The other main digital components on the radio are illustrated in the diagram below and include digital signal processors (DSP), an ASIC, PCI bridge and memory.<br />
<a href='http://www.embeddedincork.net/images/systemOverview.jpg'><br />
<img src='http://www.embeddedincork.net/images/systemOverview.jpg' alt='System Overview' class='aligncenter' width='100%'/><br />
</a></p>
<p>The PowerPC based processor on the board is responsible for <strong>radio application software</strong> associated with initialization and control of the radio transceiver. This includes responsibility for configuring, monitoring and communicating with the DSP block.  A number of software processes run on the processor to take care of the radio subsystem (needed for channel configuration, handover, power control etc.) a data link service provider for controlling a HDLC link off board and other maintenance applications for TTY debug and alarm monitoring.</p>
<p>The <strong>real time response</strong> of the platform comes from the timing demands of GSM.  The PowerPC based kernel must provide real time response to multiple interrupt sources, including DSP interrupts at a frequency of 577 microseconds, GSM frame interrupts, sourced from the ASIC every 4.615 milliseconds, GSM Superframe interrupts every 6.12 seconds, HDLC interrupts and TTY interrupts. </p>
<p>With the above processing and interrupt handling requirements it&#8217;s clear that a real time operating system is needed.  So why persist in porting or developing an in-house solution instead of going with an off the shelf option such as Linux or VxWorks?  That&#8217;s a question I hope to tackle in the next article.  Stay tuned&#8230;.</p>
<p><strong>PowerPC Kernel Implementation for GSM Radio Platform &#8211; Previous Posts</strong></p>
<ul>
<li><a href="http://embeddedincork.net/2008/02/16/powerpc-kernel-implementation-for-gsm-radio-platform/">PowerPC Kernel Implementation &#8211; Introduction</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://embeddedincork.net/2008/02/18/powerpc-kernel-system-overview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerPC Kernel Implementation for GSM Radio Platform</title>
		<link>http://embeddedincork.net/2008/02/16/powerpc-kernel-implementation-for-gsm-radio-platform/</link>
		<comments>http://embeddedincork.net/2008/02/16/powerpc-kernel-implementation-for-gsm-radio-platform/#comments</comments>
		<pubDate>Sat, 16 Feb 2008 12:00:18 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Embedded]]></category>
		<category><![CDATA[PowerPC]]></category>
		<category><![CDATA[RTOS]]></category>

		<guid isPermaLink="false">http://embeddedincork.net/2008/02/16/powerpc-kernel-implementation-for-gsm-radio-platform/</guid>
		<description><![CDATA[As part of my work with Motorola I had the opportunity to be part of a team that ported an RTOS (Real Time Operating System). The original RTOS ran on a Motorola/Freescale 68K (68000) series of processors and we moved it to a PowerPC based communications processor. During the summer of 2007 I was able [...]]]></description>
			<content:encoded><![CDATA[<p>As part of my work with Motorola I had the opportunity to be part of a team that ported an RTOS (Real Time Operating System). The original RTOS ran on a Motorola/Freescale 68K (68000) series of processors and we moved it to a PowerPC based communications processor.<br />
<br />
During the summer of 2007 I was able to co-present a paper about the work we did at the <a href="http://www.worldacademyofscience.org/worldcomp07/ws/ESA07">Embedded Systems and Applications conference</a> of Worldcomp &#8217;07.   The title of the paper is <em>&#8220;PowerPC Kernel Implementation for GSM Radio Platform&#8221;</em> and as it was published and presented in a public forum it gives me the liberty to openly discuss the contents of the paper on this blog.<br />
<br />
My hope is that this will be the first of a series of posts that delves into the key areas involved in implementing a PowerPC kernel.  The kernel is at the heart of the RTOS, managing context switching, memory, stack switching, interrupts and system calls.  I hope to touch on all of those areas, with a focus on the optimisations introduced to minimise the impact of running with a fully enabled memory management unit and unique user/supervisor/interrupt stacks.</p>
]]></content:encoded>
			<wfw:commentRss>http://embeddedincork.net/2008/02/16/powerpc-kernel-implementation-for-gsm-radio-platform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embedded Software Engineer for Hire</title>
		<link>http://embeddedincork.net/2007/10/21/embedded-software-engineer-for-hire/</link>
		<comments>http://embeddedincork.net/2007/10/21/embedded-software-engineer-for-hire/#comments</comments>
		<pubDate>Sun, 21 Oct 2007 19:04:35 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Embedded]]></category>
		<category><![CDATA[Jobs]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://embeddedincork.net/2007/10/21/embedded-software-engineer-for-hire/</guid>
		<description><![CDATA[First of all I must apologies for the lack of activity on this blog. My intention was to keep it current and flowing with embedded software related information. Hopefully I will be more diligent going forward in publishing fresh content. On a personal note I&#8217;m currently looking for a new position in embedded software. My [...]]]></description>
			<content:encoded><![CDATA[<p>First of all I must apologies for the lack of activity on this blog.  My intention was to keep it current and flowing with embedded software related information.  Hopefully I will be more diligent going forward in publishing fresh content.</p>
<p>On a personal note I&#8217;m currently looking for a new position in embedded software.  My LinkedIn profile has a summary of my professional and education experience <a href="http://www.linkedin.com/in/ralphdepping">www.linkedin.com/in/ralphdepping</a> and I am happy to email my resume to any interested parties.  </p>
]]></content:encoded>
			<wfw:commentRss>http://embeddedincork.net/2007/10/21/embedded-software-engineer-for-hire/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bye, Bye Motorola Cork</title>
		<link>http://embeddedincork.net/2007/04/26/bye-bye-motorola-cork/</link>
		<comments>http://embeddedincork.net/2007/04/26/bye-bye-motorola-cork/#comments</comments>
		<pubDate>Thu, 26 Apr 2007 16:52:13 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Cork]]></category>
		<category><![CDATA[Embedded]]></category>
		<category><![CDATA[Jobs]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://embeddedincork.net/2007/04/26/bye-bye-motorola-cork/</guid>
		<description><![CDATA[EuropeanIrish.com have an &#8216;inside view&#8217; article on the shutting down of Motorola Cork. Here are my own brief thoughts as I look back on my time there. As a 2001 graduate I started my working career in Motorola Cork. 2001 was just about the worst year to look for a job as a graduate with [...]]]></description>
			<content:encoded><![CDATA[<p>EuropeanIrish.com have an<a href="http://europeanirish.com/blog/2007/04/26/the-inside-view-motorola-cork-%e2%80%93-its-the-final-countdown/trackback/"> &#8216;inside view&#8217; article on the shutting down of Motorola Cork. </a>  Here are my own brief thoughts as I look back on my time there.<br />
<br />
As a 2001 graduate I started my working career in Motorola Cork.  2001 was just about the worst year to look for a job as a graduate with an electrical/electronic degree.  I almost didn&#8217;t take the initial offer from Motorola.  At the time I had two concrete job offers, including Motorola, and I was waiting to hear back from a number of other companies.   I told one recruiter from Alcatel that I might turn down all the current offers, take the summer off and re-apply in the Autumn.  Thankfully she told me to take one of the two current offers as the scene was changing fast and there would be few companies recruiting within a couple of months.  So taking on board her advice and wanting to stay in Cork I ended up in the GSM Base Station Systems software group.<br />
<br />
Looking back I didn&#8217;t realise at the time that the variety of projects I got to work on was somewhat priviliged.   A lot of engineers end up getting stuck in one area, often gaining some domain knowledge by fixing bugs before going on to work on features in that domain.  At almost the start of my time there I got to work on a critical software element of a massive project to introduce new radio hardware into one of Motorolas base stations.  Not only that but I got to work with a very dedicated and skilled group of engineers to make it happen.<br />
A lot of the good memories are not the result of the big corporate system that was at play in Motorla, but rather down to a handful of dedicated and helpful engineers who really cared about the work they produced.  Working in the BSS group was a great fit.  I worked at the level of assembly programming an MMU on a <a href="http://www.freescale.com/webapp/sps/site/prod_summary.jsp?code=MPC855T&#038;fsrch=1">PowerPC based network communication processor</a> right up to writing application code for implementing <a href="http://en.wikipedia.org/wiki/VGCS">3GPP spec defined call processing features</a>.<br />
<br />Alas the BSS group in Cork was closed down in 2005 and the work shipped to China.  The writing had been on the wall for that move way back when I had joined in 2001. At that point the BSS group were training up 5 Chinese engineers on site in Cork.  Concerns about training up people to take our jobs were allayed with the assurances that there was plenty of work to go around and we need a development presence in China close to our customers.<br />
<br />As a result of the loss of the BSS group my last few months before quitting Motorola in the summer of 2006 were served out working as a Systems Engineer.  I got to work on a high-tier element management system for WiMAX.  Although it was nice to explore the land of UML, requirements and architecture it made me long to get back into the embedded realm.<br />
<br />
So I finished in the summer of 2006 and took away the great memories and immense amount of engineering skill and knowledge I managed to glean over my 5 years in Motorola Cork.  Now I&#8217;m working for <a href="http://www.gme.ie">a small company just down the road</a> and back working on embedded software.  Hopefully the engineers pouring out from Motorola over the next months will find suitable work.  I wish them all well.  Bye, bye Moto.</p>
]]></content:encoded>
			<wfw:commentRss>http://embeddedincork.net/2007/04/26/bye-bye-motorola-cork/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tech Interview &#8211; Top Tips</title>
		<link>http://embeddedincork.net/2007/04/25/tech-interview-top-tips/</link>
		<comments>http://embeddedincork.net/2007/04/25/tech-interview-top-tips/#comments</comments>
		<pubDate>Wed, 25 Apr 2007 22:30:35 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[C Programming]]></category>
		<category><![CDATA[Embedded]]></category>
		<category><![CDATA[Jobs]]></category>

		<guid isPermaLink="false">http://embeddedincork.net/2007/04/25/tech-interview-top-tips/</guid>
		<description><![CDATA[A large amount of the hits on this site are for a previous previous list of C technical interview questions. As a follow on here are my top tips for technical interviews along with some additional technical interview links. Nothing here is revolutionary, rather it&#8217;s some advice based on my own experience of attending a [...]]]></description>
			<content:encoded><![CDATA[<p>A large amount of the hits on this site are for a previous <a href="http://embeddedincork.net/2007/03/12/c-interview-questions/trackback/">previous list of C technical interview questions</a>.  As a follow on here are my top tips for technical interviews along with some additional technical interview links. Nothing here is revolutionary, rather it&#8217;s some advice based on my own experience of attending a number of technical interviews for embedded jobs.</p>
<ol>
<li><strong>Be on Time</strong></li>
<p>  Although this is one of the more obvious points regarding interviews it is still worth re-stating. Allow plenty of time to find the correct location, taking into account possible traffic delays. Also make sure you know where the interview is actually taking place. One recruitment company sent me to the offices of the company instead of the hotel where the interview was being held. Fortunately the hotel was near the office and I had enough time to make the short trip and still be on time. On a related note don’t show up too early. It may make people uncomfortable to have you sitting around for a long time at reception.</p>
<li><strong>Make a Good Last Impression</strong></li>
<p>  The old saying regarding the importance of “making a good first impression” also applies to “making a good last impression”. I’ll always remember a test the BBC carried out. They showed two different versions of the same interview. In the first instance the interviewee started well but finished poorly. In the second instance the interviewee started poorly but finished well. One half of the viewing public saw the first version and the other half saw the second version. The public were then asked if the interview went well for the interviewee. It turned out based on the public votes that leaving a good last impression is more important than making a good first impression.</p>
<li><strong>Avoid Technical Jargon</strong></li>
<p>  Although it’s a technical interview avoid using too much jargon. The person will be more impressed with your ability to describe the work you’ve done in a clear and concise way than trying to dominate the conversation with obscure technical waffle. Remember that you may know more than the person interviewing you in a particular area but you won’t score many points by trying to show off.</p>
<li><strong>Can I Work With This Person?</strong></li>
<p> One of the key questions that both sides to an interview should be asking is “Can I work with this person?”. Ticking all of the experience and educational boxes is rarely enough to ensure a successful working environment. An interviewer will be wondering what it will be like to work with you on a daily basis. Ensure that during the interview you don’t loose sight of what the day to day working conditions will be like. Think of a couple of questions in advance that will highlight a typical working day. Is it high pressured or relaxed? Do people tend to spend lunch together or do most people just grab a sandwich and eat it at their desk?    Try to relate to the people at the interview as they may end up being co-workers in the near future.</p>
<li><strong>Do Your Homework</strong></li>
<p>The most obvious aspect to this is to research the company you are applying for. However if you can find out the name of the interviewer(s) better again. It’s amazing the amount of detail that can be found these days on the Internet. Google is a great starting point, but consider searching more specialized sites such as <a href="http://www.linkedin.com">linkedin</a> or <a href="http://www.zoominfo.com/">zoominfo</a> If they have a relatively common name that throws up numerous results trying narrowing the search based on the company name or the geographical area the company is located in.</p>
<li><strong>Be Prepared to Address Salary</strong></li>
<p>One of the hardest questions to address in an interview can be that of salary. This is especially the case for new graduates, for whom this is probably their first experience of interviewing for a job. Make sure you’ve <a href="http://embeddedincork.net/2007/03/25/embedded-engineer-salary-survey/trackback/">done your salary research</a>. If your using a recruitment company they are often in a position to negotiate on your behalf and should have a good idea of how far a potential employer is willing to go in terms of salary.<br />
One way of shifting the discussion and giving a potential employer more scope is to discuss the overall renumeration package. Salary is one aspect (and of course the major one) but things like pension, health insurance, gym membership and even additional holiday entitlements all add up. Recognize that taking on a new employee is a risk for the company and they want to make sure they don’t start you off on a bloated salary as it is hard to roll back from that point. If salary is becoming a major sticking point consider offering to prove your worth over a 6-12 month period. At the end of an agreed period if you’ve lived up to your own hype then the company should be willing to reward you appropriately. If not then do you really want to work there anywhere?</p>
</ol>
<p><strong>Tech Interview Links</strong></p>
<ul>
<li>An great article from the other side of the fence, <a href="http://www.artima.com/wbc/interprogP.html">how to recognise a good programmer during an interview.</a></li>
<li>
Although some of the suggestions are, in my opinion, a little over the top i (I can’t see a HireMe book taking off in Ireland)<a href="http://www.softwarebyrob.com/articles/Nailing_Your_Technical_Interview.aspx"> Nailing Your Technical Interview</a> does have some great advice on areas most of us wouldn’t naturally consider.</li>
<li>Finally for those just looking for more C programming related interview questions then apparently these are some of the <a href="http://www.emicrosoftinterview.com/Technical+Questions/default.aspx">interview questions that Microsoft ask.</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://embeddedincork.net/2007/04/25/tech-interview-top-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EmbeddedSphere &#8211; Around the Embedded Net #5 &#8211; April 20th</title>
		<link>http://embeddedincork.net/2007/04/20/embeddedsphere-around-the-embedded-net-5-april-20th/</link>
		<comments>http://embeddedincork.net/2007/04/20/embeddedsphere-around-the-embedded-net-5-april-20th/#comments</comments>
		<pubDate>Fri, 20 Apr 2007 08:30:04 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Embedded]]></category>
		<category><![CDATA[EmbeddedSphere]]></category>

		<guid isPermaLink="false">http://embeddedincork.net/2007/04/20/embeddedsphere-around-the-embedded-net-5-april-20th/</guid>
		<description><![CDATA[The Register reports from the CanSecWest security conference in Vancouver on the threat to embedded devices from hacking. However the specific threat to a router requires direct hardware access. More worrying are the threats that are going to emerge as more and more embedded devices acquire IP addresses and are exposed to remote access. EmbeddedSphere [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The Register</strong> reports from the CanSecWest security conference in Vancouver on the <a href="http://www.theregister.co.uk/2007/04/19/embedded_devices_security/">threat to embedded devices from hacking</a>.  However the specific threat to a router requires direct hardware access.  More worrying are the threats that are going to emerge as more and more embedded devices acquire IP addresses and are exposed to remote access.   <a href="http://embeddedincork.net/2007/04/07/embeddedsphere-around-the-embedded-net-4/trackback/">EmbeddedSphere #3 </a>contains some more links on the topic.</p>
<p><strong>Doug Gaff</strong>, an embedded enginer with Rind River <a href="http://douggaff.blogspot.com/2007/04/support-for-virginia-tech.html">speaks highly of his time at Virginia Techn University.</a>  Sadly the University, especially internationally, will be mainly known for the terrible killings that took place there this past week.  Doug&#8217;s post helpfully points to the positive aspects of the University and town of Blacksburg, in particular it&#8217;s contribution to engineering.</p>
<p><strong>Damien Mulley</strong> is<a href="http://www.mulley.net/2007/04/18/mobile-phone-project-phones-wanted/trackback/"> looking for your old mobile phones</a>.  Although not strictly related to embedded software the request is curious enough to make me wonder what he is up to, especially as the phones need to be in working order and you won&#8217;t get them back. </p>
<p>Finally <strong>Clare Dillon from Microsoft Ireland</strong> highlights a <a href="http://blogs.msdn.com/clare_dillon/archive/2007/04/16/windows-mobile-free-developer-seminar-may-14th.aspx">free one day introduction to developing software for Windows Mobile</a>.  It&#8217;s been run by Microsoft in Dublin on May 14th.</p>
]]></content:encoded>
			<wfw:commentRss>http://embeddedincork.net/2007/04/20/embeddedsphere-around-the-embedded-net-5-april-20th/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EmbeddedSphere &#8211; Around the Embedded Net #4 &#8211; April 17th</title>
		<link>http://embeddedincork.net/2007/04/17/embeddedsphere-around-the-embedded-net-4-april-17th/</link>
		<comments>http://embeddedincork.net/2007/04/17/embeddedsphere-around-the-embedded-net-4-april-17th/#comments</comments>
		<pubDate>Tue, 17 Apr 2007 21:30:22 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Embedded]]></category>
		<category><![CDATA[EmbeddedSphere]]></category>

		<guid isPermaLink="false">http://embeddedincork.net/2007/04/17/embeddedsphere-around-the-embedded-net-4-april-17th/</guid>
		<description><![CDATA[It&#8217;s been a while since the last post. There&#8217;s a few in the pipeline but in the mean time here&#8217;s another quick dip into the EmbeddedSphere. Zfone from Phil Zimmerman is continuing to take some massive strides towards acceptance by the IETF according to the VOIPSA. So as VOIPSA asks why doesn&#8217;t Skype embrace a [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since the last post.  There&#8217;s a few in the pipeline but in the mean time here&#8217;s another quick dip into the EmbeddedSphere.</p>
<p><strong>Zfone from Phil Zimmerman</strong> is continuing to <a href="http://voipsa.org/blog/2007/04/10/skype-with-a-z/ ">take some massive strides towards acceptance by the IETF</a> according to the VOIPSA.  So as VOIPSA asks why doesn&#8217;t Skype embrace a protocol like ZRTP to deflect the criticism and suspicion surrounding it&#8217;s VoIP encryption?</p>
<p><strong>Doug Gaff gives embedded engineers a scare</strong> by asking<a href="http://douggaff.blogspot.com/2007/04/is-embedded-industry-dead.html"> is the embedded industry dead?</a>  <a href="http://www.extremetech.com/article2/0,3973,18917,00.asp">Embedded Processors from ExtremeTech</a> is a great introduction to the embedded processor market (although the article is now 5 years old).  Making the Pentium processor&#8217;s market share equate to practically 0% should come as some comfort to embedded engineers that are worried about the death of their industry <img src='http://embeddedincork.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The<a href="http://www.embeddedcomponents.com/blogs/"> Embedded Components blog </a>allows active contribution as means of increasing your influence in the embedded market place.  The blog seems to have quite a low rate of posting, but it&#8217;s still great to keep coming across embedded focused blogs.</p>
<p><strong>China Daily reports</strong> <a href="http://www.chinadaily.com.cn/2008/2007-04/17/content_852262.htm">that tickets for the 2008 Olympics will have embedded RFID chips</a> in order to prevent counterfeiting.  This was also done for the <a href="http://networks.silicon.com/lans/0,39024663,39159715,00.htm">last football world cup</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://embeddedincork.net/2007/04/17/embeddedsphere-around-the-embedded-net-4-april-17th/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EmbeddedSphere &#8211; Around the Embedded Net #3 &#8211; April 4th</title>
		<link>http://embeddedincork.net/2007/04/07/embeddedsphere-around-the-embedded-net-4/</link>
		<comments>http://embeddedincork.net/2007/04/07/embeddedsphere-around-the-embedded-net-4/#comments</comments>
		<pubDate>Sat, 07 Apr 2007 09:32:57 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Embedded]]></category>
		<category><![CDATA[EmbeddedSphere]]></category>

		<guid isPermaLink="false">http://embeddedincork.net/2007/04/07/embeddedsphere-around-the-embedded-net-4/</guid>
		<description><![CDATA[The Register reports on plans to test programmers ability to program securely as a help to software buyers. If like me you assume that embedded devices are hard to attack then this article on embedded security will give you pause for thought. Of course once you add one of those fancy IP addresses to your [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The Register reports</strong> on <a href="http://www.regdeveloper.co.uk/2007/03/29/secure_coding_tests/">plans to test programmers ability to program securely</a> as a help to software buyers.  If like me you assume that embedded devices are hard to attack then this <a href="http://www.blackhat.com/presentations/bh-usa-04/bh-us-04-grand/grand_embedded_security_US04.pdf">article on embedded security</a> will give you pause for thought.  Of course once you add one of those fancy IP addresses to your device you open up a whole world of security pains for your embedded device.  Just look for <a href="http://www.google.com/search?sourceid=navclient-ff&#038;ie=UTF-8&#038;rls=GGGL,GGGL:2006-28,GGGL:en&#038;q=embedded+security">embedded security</a> on Google and examine how many of the top results relate to IP.</p>
<p><strong>We write code for humans, not computers. </strong> That may seem a strange statement, but when you consider that machines don&#8217;t care about the number of source files you have, the use of nice variable names, comments, white space, new lines, functions etc. then it&#8217;s clear that the main audience for the code you write is the human reader.  So if you&#8217;re going to bother to write code that can be read by a human then it better be easy to understand, preferably first time.  <a href="http://codebetter.com/blogs/scott.bellware/archive/2007/04/07/161406.aspx">Scott Belware uses the term Soluble Code</a> for code that can be understood first time and his short summary on the topic is excellent.<br />
(By the way one possible exception to soluble code may be when writing assembly, but even then clear comments, spacing, multiple files etc. should still be present).</p>
<p><strong>Quickly, pick a number between 1 and 20?</strong>  So how &#8220;Random&#8221; was your guess?  Turns out humans aren&#8217;t great at doing random and <a href="http://scienceblogs.com/cognitivedaily/2007/02/is_17_the_most_random_number.php">17 is the most random number we come up</a> with between 1 and 20.</p>
]]></content:encoded>
			<wfw:commentRss>http://embeddedincork.net/2007/04/07/embeddedsphere-around-the-embedded-net-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Jobs for Cork &#8211; R&amp;D investment by Allen-Vanguard</title>
		<link>http://embeddedincork.net/2007/03/30/more-jobs-for-cork-rd-investment-by-allen-vanguard/</link>
		<comments>http://embeddedincork.net/2007/03/30/more-jobs-for-cork-rd-investment-by-allen-vanguard/#comments</comments>
		<pubDate>Fri, 30 Mar 2007 18:07:42 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Cork]]></category>
		<category><![CDATA[Embedded]]></category>
		<category><![CDATA[Jobs]]></category>

		<guid isPermaLink="false">http://embeddedincork.net/2007/03/30/more-jobs-for-cork-rd-investment-by-allen-vanguard/</guid>
		<description><![CDATA[Some more good news on tech jobs in the pipeline for Cork. This time Allen-Vanguard are expanding their R&#038;D operations in Kilbrittain. I&#8217;ve never heard of the company before but apparently &#8220;Allen-Vanguard is a leading manufacturer of robots which are used by security forces to perform dangerous tasks&#8221;. There are few details available at the [...]]]></description>
			<content:encoded><![CDATA[<p>Some more good news on tech jobs in the pipeline for Cork.  This time <a href="http://www.allen-vanguard.com/home/">Allen-Vanguard</a> are expanding their R&#038;D operations in Kilbrittain.  I&#8217;ve never heard of the company before but apparently &#8220;Allen-Vanguard is a leading manufacturer of robots which are used by security forces to perform dangerous tasks&#8221;.  </p>
<p>There are few details available at the moment but from <a href="http://www.irishexaminer.com/breaking/story.asp?j=4566000&#038;p=4566xy5&#038;n=4566092">Micheál Martin&#8217;s comments</a> it sounds like some of the work is in software engineering coupled with electronics, RF and mechanical engineering.  </p>
<p>There has been a raft of recent announcements relating to tech jobs in Cork.  It would be unfair to suggest that they are all in response to the recent job losses in Cork, coupled with an upcoming general election and the fact that the Minister for Enterprise, Trade and Employment is from Cork.  No doubt these announcements would be made regardless.  But it does some very coincidental.</p>
]]></content:encoded>
			<wfw:commentRss>http://embeddedincork.net/2007/03/30/more-jobs-for-cork-rd-investment-by-allen-vanguard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EmbeddedSphere &#8211; Around the Embedded Net #2</title>
		<link>http://embeddedincork.net/2007/03/29/embeddedsphere-around-the-embedded-net-2/</link>
		<comments>http://embeddedincork.net/2007/03/29/embeddedsphere-around-the-embedded-net-2/#comments</comments>
		<pubDate>Thu, 29 Mar 2007 21:34:46 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Embedded]]></category>
		<category><![CDATA[EmbeddedSphere]]></category>

		<guid isPermaLink="false">http://embeddedincork.net/2007/03/29/embeddedsphere-around-the-embedded-net-2/</guid>
		<description><![CDATA[Jeremy Faller&#8217;s neat little C++ logger reminds of a powerful logger that I&#8217;ve been using for Windows Smartphone. (Despite the fancy debug tools that come with the likes of Visual Studio for developing on Windows Smartphone the use of a whole IP stack over active sync is just a little too intrusive for real time [...]]]></description>
			<content:encoded><![CDATA[<p>Jeremy Faller&#8217;s <a href="http://www.thoughtclutter.com/blog/wp-trackback.php?p=3">neat little C++ logger </a>reminds of a powerful logger that I&#8217;ve been using for <a href="http://www.smartphonedn.com/articles/stlog.html">Windows Smartphone</a>. (Despite the fancy debug tools that come with the likes of Visual Studio for developing on Windows Smartphone the use of a whole IP stack over active sync is just a little too intrusive for real time debugging.)</p>
<p>On the subject of Windows Smartphone, Windows Mobile 6.0 comes with <a href="http://blogs.msdn.com/windowsmobile/archive/2007/03/26/windows-mobile-6-storage-card-encryption-faq.aspx">built in support for SD card encryption</a>.  WM 6.0 will also support <a href="http://blogs.msdn.com/jasonlan/archive/2007/03/16/storage-card-wipe-and-encryption-what-s-the-deal.aspx">remote and local wipe </a>.  Good news for the growing amounts of sensitive data being placed on smartphones.</p>
<p>Wouldn&#8217;t it be great to be working in Silicon Valley and be able to go the <a href="http://www.embedded.com/esc/sv/">Embedded Systems Conference</a>?  You even get to hear Al Gore give the key note speech!  </p>
<p>Jack Ganssle has some <a href="http://www.embedded.com/showArticle.jhtml?articleID=198500596">comments on comments</a> and I don&#8217;t mean blog comments.  The approach I adopt when it comes to commenting is to first of all write the function design using <a href="http://www.gamedev.net/reference/articles/article1384.asp">Program Design Language</a> and turn the PDL into the comments.</p>
<p>Finally <a href="http://www.mulley.net/2007/03/29/link-love-march-29th-2007/trackback/">thanks to Damien Mulley for the plug </a>on his excellent (and widely read) blog.  Like many other bloggers in Ireland my interest in blogging owes a lot to his tireless (or tiring!) work.  </p>
]]></content:encoded>
			<wfw:commentRss>http://embeddedincork.net/2007/03/29/embeddedsphere-around-the-embedded-net-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
