active questions tagged embedded - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T17:29:19Z http://stackoverflow.com/feeds/tag/embedded http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1945509/what-is-the-best-linux-file-system-and-fs-configuration-for-embedded-systems 0 What is the best linux file system and fs configuration for embedded systems [closed] Ber 2009-12-22T10:35:00Z 2009-12-22T15:35:41Z <p>After experiencing some crash related file system outages (requiring manual fsck and repair, we are looking for the optimum file system and fs config for an embedded linux with HDD or SDD mass storage.</p> <p>A good candidate so far is using ext3fs with "journal_data" mount option to minimize the risk on inconsistent data and meta data after a crash.</p> <p>I would be happy to hear about other/better options any experiences.</p> <p>NB "crash" here refers mostly to unexpected shutdown due to power loss. The ext4fs does not seem to handle this very gracefully.</p> http://stackoverflow.com/questions/1938170/what-language-to-learn-for-microcontroller-programming 2 What language to learn for microcontroller programming harry 2009-12-21T04:24:46Z 2009-12-22T10:07:24Z <p>I'm getting into microcontroller programming and have been hearing contrasting views. What language is most used in the industry for microcontoller programming? Is this what you use in your own work? If not, why not?</p> <p>Thanks</p> <p>P.S. I'm hoping the answer is not assembly. </p> http://stackoverflow.com/questions/1818292/can-anybody-suggest-me-a-book-on-embedded-system-design 0 Can anybody suggest me a book on embedded system design? student_pdas 2009-11-30T07:21:24Z 2009-12-22T09:28:09Z <p>Please suggest me a book on embedded system design which covers </p> <ol> <li><p>advance design of embedded sofware</p></li> <li><p>design of hardware to build efficient system</p></li> </ol> <p>I know, its difficult to learn all the things from books still do suggest me some books. </p> http://stackoverflow.com/questions/1938114/resources-for-learning-verilog 2 Resources for learning Verilog harry 2009-12-21T04:04:06Z 2009-12-22T05:03:21Z <p>I'm new to Verilog. Can someone suggest a learning resource, book, video, blog, anything that they had a good personal experience with and helped them learn it faster? </p> <p>If it helps, I have experience programming in several high-level languages, but have no experience programming in C.</p> <p>Thanks</p> http://stackoverflow.com/questions/1939473/how-to-organize-sources-of-complex-program 3 How to organize sources of complex program? Mtr 2009-12-21T11:03:38Z 2009-12-21T19:34:09Z <p>We're creating very complex embedded system and «sources» contains few projects of Visual C++, IAR, Code Composer Studio and Altium Designer schemes and pcbs. All of that possibly could be in few versions. So, what practice could you advice me to arrange all that stuff? Thank you</p> http://stackoverflow.com/questions/1561973/compiling-tesseract-ocr-on-arm-gumstix 0 Compiling tesseract-ocr on ARM/Gumstix? emi1faber 2009-10-13T18:08:52Z 2009-12-21T06:49:42Z <p>Is it possible to compile <a href="http://code.google.com/p/tesseract-ocr/" rel="nofollow">tesseract-ocr</a> for the <a href="http://www.intel.com/design/embeddedpca/applicationsprocessors/302302.htm" rel="nofollow">Intel PXA270</a> found in certain <a href="http://www.gumstix.com/" rel="nofollow">Gumstix</a> boards? Has anyone done this successfully, and if so, how did you do so? </p> http://stackoverflow.com/questions/1810308/how-to-get-value-from-15th-pin-of-32bit-port-in-arm 2 How to get value from 15th pin of 32bit port in ARM? Alex Xander 2009-11-27T19:23:07Z 2009-12-20T13:04:55Z <p>I am using an IC, DS1620 to read 1 bit serial data coming on a single line. I need to read this data using one of the ports of ARM microcontroller (LPC2378). ARM ports are 32 bit. How do I get this value into a 1 bit variable?</p> <p>Edit: In other words I need direct reference to a port pin.</p> http://stackoverflow.com/questions/1844733/is-this-c-function-written-in-poor-form 5 Is this C function written in poor form? Nate 2009-12-04T03:54:24Z 2009-12-20T13:01:23Z <pre><code>char byte_to_ascii(char value_to_convert, volatile char *converted_value) { if (value_to_convert &lt; 10) { return (value_to_convert + 48); } else { char a = value_to_convert / 10; double x = fmod((double)value_to_convert, 10.0); char b = (char)x; a = a + 48; b = b + 48; *converted_value = a; *(converted_value+1) = b; return 0; } } </code></pre> <p>The purpose of this function is to take an unsigned char value of 0 through 99 and return either it's ascii equivalent in the case it is 0-9 or manipulate a small global character array that can be referenced from the calling code following function completion. </p> <p>I ask this question because two compilers from the same vendor interpret this code in different ways. </p> <p>This code was written as a way to parse address bytes sent via RS485 into strings that can easily be passed to a send-lcd-string function. </p> <p>This code is written for the PIC18 architecture (8 bit uC). </p> <p>The problem is that the free/evaluation version of a particular compiler generates perfect assembly code that works while suffering a performance hit, but the paid and supposedly superior compiler generates code more efficiently at the expense of being able reference the addresses of all my byte arrays used to drive the graphics on my lcd display. </p> <p>I know I'm putting lots of mud in the water by using a proprietary compiler for a less than typical architecture, but I hope someone out there has some suggestions. </p> <p>Thanks.</p> http://stackoverflow.com/questions/1750311/list-of-multicore-embedded-cpus 2 List of multicore embedded CPUs [closed] Paul Nathan 2009-11-17T17:06:38Z 2009-12-19T00:31:17Z <p>I'm working on compiling a list of <strong>hard-core</strong> <strong>multicore</strong> <strong>embedded</strong> cpus. </p> <p>Hard-core: in contrast to soft-core devices such as the Microblaze, which are loaded onto FPGAs.</p> <p>Currently I have:</p> <ul> <li>XMOS's XCore</li> <li>Parallax's Propellor</li> <li>RMI/Netlogic's Alchemy</li> <li>Analog Device's Blackfin</li> <li>ARM Cortex-A9 MPCore</li> <li>Ubicom Ubicom32</li> </ul> http://stackoverflow.com/questions/1917222/fpga-programming-and-how-does-ip-core-licensing-work 1 FPGA Programming and how does IP Core licensing work? verma 2009-12-16T19:54:12Z 2009-12-18T17:38:15Z <p>Hello,</p> <p>I have been looking into developing a hardware module for HD video capture. I an new to the whole thing so I looked around and found that I need an FPGA development board to test my design out and then may be deploy it through ASIC or FPGA itself.</p> <p>I found that people have already written cores in Verilog/VHDL which I can directly use in my designs, e.g. a PCIe interface module, a DDR3 memory controller module etc. I just need to connect them a logical way and test out my designs.</p> <p>I was wondering how does the licensing of these IP Cores work. On certain vendor sites I see terms like "SignOnce" etc. Once I have a design that works and I want to mass produce it, how do I license the core? </p> <p>I know it may depend on the specific vendor I am buying cores from but I just want to get a general idea, like a few examples etc, or if something similar you may have done in the past.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1914542/are-there-any-good-reference-implementations-available-for-command-line-implement 3 Are there any good reference implementations available for command line implementations for embedded systems? venk 2009-12-16T13:02:10Z 2009-12-18T16:32:36Z <p>I am aware that this is nothing new and has been done several times. But I am looking for some reference implementation (or even just reference design) as a "best practices guide". We have a real-time embedded environment and the idea is to be able to use a "debug shell" in order to invoke some commands. Example: "SomeDevice print reg xyz" will request the SomeDevice sub-system to print the value of the register named xyz.</p> http://stackoverflow.com/questions/1922772/cheapest-embedded-system-with-wireless-connectivity 1 Cheapest Embedded System with Wireless Connectivity ? [closed] geeko 2009-12-17T16:02:16Z 2009-12-17T16:36:49Z <p>Hello gurus :) I hope that u're all feel good.</p> <p>Problem: I'm trying to capture some information coming from keyboard, mouse and barcode reader connected to some PC via PS/2, USB and/or RS-232, before information get to PC and send it over the internet to some central server.</p> <p>I'm thinking to do so by using some kind of hardware interface (middle ware, if u like) between PC and input devices. I though this interface can be embedded PC, PDA or simply some mobile phone with wireless connectivity. PS/2 and RS-232 could be converted to USB using some USB convector/hub that connects to one of these interface systems. Then some special API programming take place to communicate between PC, input devices and wireless server, in the form of application running on the interface system.</p> <p>Any thoughts on what's the cheapest solution that can achieve this ? Or possibly any other solution ?</p> <p>Kind regards,</p> <p>Geeko</p> http://stackoverflow.com/questions/1601815/is-ubuntu-9-04-good-choice-for-embedded-linux-application-development 1 Is ubuntu 9.04 good choice for embedded linux application development ? Sunny Shah 2009-10-21T15:58:01Z 2009-12-17T13:57:33Z <p>Hi Friends,</p> <p>I want to change linux distro my Development(Host) Machine which I use for embedded development.</p> <p>I cross-compile applications for many different processors. It is required for me to download different different libraries to evaluate their functionality/Performance/Stability on different devices , as well as on PC.</p> <p>So Is ubuntu 9.04 a good choice for me? </p> <p>Thanks, Sunny.</p> http://stackoverflow.com/questions/1888836/how-to-use-a-mit-license-in-an-embedded-device 6 How to use a MIT License in an Embedded device Robert 2009-12-11T15:30:56Z 2009-12-16T21:19:22Z <p>I would like to embed JQuery into an embedded device running a web server. Being an embedded device, storage is at a premium. Here is the comment header of JQuery:</p> <pre><code>/* * jQuery JavaScript Library v1.3.2 * http://jquery.com/ * * Copyright (c) 2009 John Resig * Dual licensed under the MIT and GPL licenses. * http://docs.jquery.com/License * * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009) * Revision: 6246 */ </code></pre> <p>What is the proper way to include JQuery and other MIT-licensed code?</p> <p>Can I just copy the Minified version to my file system and be done?</p> <p>Do I need to have a copy of the MIT License somewhere in my embedded device?</p> <p>What have you done?</p> <p><strong>EDIT:</strong></p> <p>A few people have chimed in. One posted the MIT License. The part that causes me to hesitate is:</p> <p>"and this permission notice shall be included in all copies or substantial portions of the Software"</p> <p>Does that mean I need to include the MIT License text?</p> http://stackoverflow.com/questions/1833484/c-frontend-only-compiler-convert-c-to-c 9 C++ frontend only compiler (convert C++ to C). JudgeDread 2009-12-02T15:08:08Z 2009-12-16T15:46:43Z <p>I'm currently managing some C++ code that runs on multiple platforms from a single source tree (Win32, Linux, Verifone CC terminals, MBED and even the Nintendo GBA/DS). However I need to build an app targetted at an embedded platform for which there is no C++ compiler (C only). I remmber that many of the early C++ compilers were only front-ends stitting on existing C compilers (Glockenspiel for example used MSC). Are there any such 'frontend' C++ compilers in use today that will generate C code.</p> <pre><code> Tools Platform ----------- ------------ ______Visual C++ _____ WIN32 / /_______MBED (ARM)_______MBED (ARM dev board). / /_________GCC (x86)________Linux / Source____/___________GCC (ARM)________GBA/DS \ \__________SDA______________Verifone Verix CC Terminals \ \________ARM SDT__________Verifine VerixV CC terminals \ \______????_____________Renases M8/16/32. \ \____????_____________Z8 family. </code></pre> <p>The last two platforms I have good C compilers for but no C++.</p> <p>As you can see I'm supporting a large variety of platforms and I share a large body of library code (and some app code).</p> http://stackoverflow.com/questions/1585751/how-to-share-register-and-bit-field-definitions-between-a-device-driver-and-the-f 4 How to share register and bit field definitions between a device driver and the FPGA it controls tkryger 2009-10-18T19:10:53Z 2009-12-16T09:44:09Z <p>Are there any good, existing software tools available to assist in generating C header files with appropriate #defines for register offsets as well as bit definitions from VHDL? If any such tools do exist, what restrictions to they place on the VHDL and how are things that should be exported designated?</p> <p>So far, I've found these tools but they aren't exactly what I'm looking for:</p> <ul> <li><a href="http://www.veripool.org/wiki/vregs" rel="nofollow">Vregs</a> by Veripool</li> <li><a href="http://www.productive-eda.com/SpectaReg" rel="nofollow">SpectraReg</a> by PDTi</li> <li><a href="http://www.duolog.com/products/bitwise-register-management" rel="nofollow">Bitwise</a> by Duolog</li> </ul> <p>Based upon these tools I am also interested if the proper workflow is to generate both the C and the VHDL rather than trying to go directly from VHDL (perhaps with extra tags in the comments) to C.</p> http://stackoverflow.com/questions/1912854/anyone-knows-of-a-good-addressbook-implementation 0 Anyone knows of a good addressbook implementation? Tsahi Levent-Levi 2009-12-16T07:06:28Z 2009-12-16T08:02:26Z <p>I am looking to add an address book to one of my programs. For that purpose, I want to have something that is flexible and customizable to the point of allowing me to hook up additional metadata to contacts in it from third parties.</p> <p>I don't mind paying for a solution as long as I get something that is usable for me.</p> <p>My requirements:</p> <ol> <li>Optimized to run on embedded devices</li> <li>Preferably in source code form</li> <li>Ability to add my own fields to contacts over those the address book provides out of the box</li> <li>Ability to plugin "stuff" to it to enhance it without changing its base code too much</li> <li>Has a C or C++ interface</li> </ol> http://stackoverflow.com/questions/1132778/please-suggest-an-open-source-web-browser-for-an-arm-linux-platform 1 Please suggest an open source web browser for an ARM Linux platform EightyEight 2009-07-15T17:27:20Z 2009-12-15T14:57:10Z <p>Hello everyone,</p> <p>I'm tasked with choosing an open source web browser to run on a fairly low-end embedded Linux system, that is ARM based. I'd really appreciate some advice. I've been doing some research and there appear to be a few choices:</p> <ul> <li>Firefox/Mozilla - too huge to run on limited resources</li> <li>Konqueror/Embedded - the development appears to have stalled, but I'm looking into it still.</li> <li>Midori - based on GTK+2, WebKit based, <em>potential candidtate</em>.</li> <li>Arora - similar to Midori, Qt, WebKit based, <em>potential canditate</em>.</li> <li>Nokia's SR360 - I don't have much information about this browser?..</li> <li>Links2/NetSurf/Dillo - while these browsers are quite sophisticated they don't quite provide the feature set we're looking for. </li> </ul> <p>We would really prefer something that can handle CSS and JavaScript, but if it's not available I guess we'd have to settle for NetSurf, Dillo. I'd appreciate any feedback or comments about any of these browsers, your experience with them, or any browsers that I've missed.</p> <p>Thank you.</p> http://stackoverflow.com/questions/1883356/managing-redundant-typedefs-from-multiple-vendors 2 Managing redundant typedefs from multiple vendors Jon 2009-12-10T19:25:52Z 2009-12-15T08:08:46Z <p>What are some of the best ways to manage redundant typedefs used for platform independence from multiple middleware (operating systems, protocol stacks) vendors in the C programming language.</p> <p>e.g.:<br> <strong>target.h</strong></p> <pre><code>/* inclusion lock etc */ typedef char CHAR; typedef unsigned char BYTE; typedef unsigned short int WORD; /* ... more of the same ... */ </code></pre> <p><strong>OS_types.h</strong></p> <pre><code>/* inclusion lock etc */ typedef char CHAR; typedef unsigned char BYTE; typedef unsigned short int WORD; /* ... more of the same ... */ </code></pre> <p>At some point the compiler recognizes that it has two redundant typedef symbols and bails out with an error because this is simply not allowed by definition in C.</p> http://stackoverflow.com/questions/1902432/finding-out-no-bits-set-in-a-variable-in-faster-manner 0 Finding out no bits set in a variable in faster manner [closed] C Learner 2009-12-14T17:56:55Z 2009-12-15T00:32:23Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/109023/best-algorithm-to-count-the-number-of-set-bits-in-a-32-bit-integer">Best algorithm to count the number of set bits in a 32-bit integer?</a> </p> </blockquote> <p>Finding out the no. bits sets in a variable is easier. But how could we perform the same operation in fastest method ? </p> http://stackoverflow.com/questions/1479526/how-to-learn-about-building-tools-in-linux 2 How to learn about building tools in linux ? Sunny Shah 2009-09-25T20:53:11Z 2009-12-14T22:52:35Z <p>Hi SO Friends,</p> <p>I am writing code in embedded linux since last couple of years, I use make utility to build my code and I am not at all an advance user of it. But now, It is necessary to have better compilation, cross-compilation knowledge, so that I can easily port my code to newer processors. So I want to learn that which different tools are available for building projects in linux? Please provide me external reference ( Links, Books ) which you found helpful in your projects. </p> <p>I write code in c++.</p> <p>Thanks, Sunny </p> http://stackoverflow.com/questions/1711306/getting-started-with-fpga-programming 12 Getting started with FPGA programming. e5 2009-11-10T21:25:14Z 2009-12-14T15:00:06Z <p>I want to play around with <a href="http://en.wikipedia.org/wiki/Field-programmable%5Fgate%5Farray" rel="nofollow">FPGAs</a>. I'm looking for advice getting on started. </p> <ol> <li>Can anyone recommend good FPGA boards that I easily start programming for? How much should I look at spending? </li> <li>Can I avoid buying a FPGA board now, and just emulate the code I write? Are there portability issues between different boards?</li> <li>What languages are typically used to for FPGA development? What is each languages advantages/disadvantages? Many of the languages look C-like. Are there ways to just specify circuits of logic gates? Does it make sense to work at the gate level?</li> <li>What books have you read to learn how to develop for FPGA? Which ones are the good books?</li> <li>How quickly does FPGA knowledge become obsolete?</li> <li>What advice would you give to someone just starting out in this area? Any common pitfalls?</li> </ol> http://stackoverflow.com/questions/1880141/interfacing-45db161-data-flash-with-89lp4052-controller 1 Interfacing 45DB161 data flash with 89LP4052 controller. sandeep 2009-12-10T10:43:25Z 2009-12-14T06:29:16Z <p>I am trying to interface the data flash with 89lp 4052 controller. Crysal used 11.0592 mhz. This controller has built in spi bus. I tried all combinations of CPHA AND CPOL. Tried mode 0 as well as mode 3. Not able to read staus register. Some times it happens that it reads the register but sometimes it just ff code out from flash.</p> <p>my code is as follows.</p> <pre><code> CLR SCLK CLR CS LCALL DELAY2 </code></pre> <p>;;============================================================================== </p> <p>WRITE_FLASH: MOV 20H,#0D7H ;COMMAND LCALL SEND_CLOCK_ONE LCALL READ_FLASH CLR SCON.1 MOV A,21H MOV SBUF,A JNB SCON.1,$ CLR SCON.1 ;;======================================================================= SETB CS CLR SCLK LCALL DELAY2 CLR CS ;SELECTED AGAIN MOV 20H,#84H LCALL SEND_CLOCK MOV 20H,#00H LCALL SEND_CLOCK MOV 20H,#00H LCALL SEND_CLOCK MOV 20H,#00H LCALL SEND_CLOCK MOV 20H,#33H LCALL SEND_CLOCK LCALL DELAY2 SETB CS LCALL DELAY2 CLR SCLK CLR CS ;SELECTED AGAIN MOV 20H,#0D4H LCALL SEND_CLOCK MOV 20H,#00H LCALL SEND_CLOCK MOV 20H,#00H LCALL SEND_CLOCK MOV 20H,#00H LCALL SEND_CLOCK MOV 20H,#00H LCALL SEND_CLOCK_ONE </p> <pre><code> LCALL READ_FLASH CLR SCON.1 MOV A,21H MOV SBUF,A JNB SCON.1,$ CLR SCON.1 SETB CS SETB SCLK LCALL DELAY2 LJMP REP </code></pre> <p>;;======================================================================= SEND_CLOCK_ONE: MOV C,07H ;MSB MOV DOUT,C LCALL PULSE_SEND MOV C,06H MOV DOUT,C LCALL PULSE_SEND MOV C,05H MOV DOUT,C LCALL PULSE_SEND MOV C,04H MOV DOUT,C LCALL PULSE_SEND MOV C,03H MOV DOUT,C LCALL PULSE_SEND MOV C,02H MOV DOUT,C LCALL PULSE_SEND MOV C,01H MOV DOUT,C LCALL PULSE_SEND MOV C,00H MOV DOUT,C LCALL PULSE_SEND_LAST RET ;;=========================================================================== READ_FLASH: LCALL PULSE_SEND MOV C,DIN MOV 0FH,C LCALL PULSE_SEND MOV C,DIN MOV 0EH,C LCALL PULSE_SEND MOV C,DIN MOV 0DH,C LCALL PULSE_SEND MOV C,DIN MOV 0CH,C LCALL PULSE_SEND MOV C,DIN MOV 0BH,C LCALL PULSE_SEND MOV C,DIN MOV 0AH,C LCALL PULSE_SEND MOV C,DIN MOV 09H,C LCALL PULSE_SEND MOV C,DIN MOV 08H,C LCALL PULSE_SEND RET ;;======================================================================= SEND_CLOCK: MOV C,07H ;MSB MOV DOUT,C LCALL PULSE_SEND MOV C,06H MOV DOUT,C LCALL PULSE_SEND MOV C,05H MOV DOUT,C LCALL PULSE_SEND MOV C,04H MOV DOUT,C LCALL PULSE_SEND MOV C,03H MOV DOUT,C LCALL PULSE_SEND MOV C,02H MOV DOUT,C LCALL PULSE_SEND MOV C,01H MOV DOUT,C LCALL PULSE_SEND MOV C,00H MOV DOUT,C LCALL PULSE_SEND RET </p> <p>;;=========================================================================== DELAY2: mov 56H,#0FFH DJNZ 56H,$ mov 56H,#0FFH DJNZ 56H,$ RET ;;=================================================================== PULSE_SEND: SETB SCLK LCALL DELAY2 CLR SCLK LCALL DELAY2 RET ;;=================================================== PULSE_SEND_LAST: SETB SCLK LCALL DELAY2 RET ;;===================================================== PULSE_READ_FIRST: CLR SCLK LCALL DELAY2 SETB SCLK LCALL DELAY2 RET ;;=========================================================== </p> <p>END </p> http://stackoverflow.com/questions/1732394/differences-between-arm-assembly-and-x86-assembly 2 Differences Between ARM Assembly and x86 Assembly Nathan Campos 2009-11-13T22:50:43Z 2009-12-12T16:50:12Z <p>Hello,</p> <p>I'm now going to learn ARM Assembly, to develop for my Windows Mobile 5 iPAQ, but I have some questions:</p> <ul> <li>What Are The Main Differences Between ARM Assembly and x86 Assembly? <ul> <li>Is Any Differences In The Interrupts(New Types)? <ul> <li>Which Are They And What Is The Meaning Of They?</li> </ul></li> <li>Best Assembler To Compile And Where To Get It?</li> </ul></li> <li>Where I Can Find Some Good Resources?</li> </ul> <p>Thanks.</p> http://stackoverflow.com/questions/188862/software-testing-for-a-bare-metal-system 2 Software testing for a bare-metal system Paul Nathan 2008-10-09T19:39:20Z 2009-12-12T06:21:06Z <p>I am writing a project in C++ for an embedded system with no OS support; almost no library support. Very bare-metal. Hence, a fair amount of my code is tightly coupled(e.g., software triggered interrupts and the layer directly above them).</p> <p>Part of what I am doing involves changing the serial port configuration, thus driving concurrent change on the PC end (the UI end) and the microprocessor(the activity end). I'm doing okay so far in a super-careful incremental type development(piece by piece fitting it in). However, I'd like to be more confident about my code working in an engineering sense.</p> <p>What kind of methodologies/frameworks would you recommend for this kind of situation?</p> <p><strong>Edit:</strong> </p> <p>I use the AMD186 ES on an ACore86 board made by Tern, Inc. Compiler: Paradigm, free edition(ships with the board). I don't have an option to change what I'm working on, unfortunately.</p> http://stackoverflow.com/questions/1892056/fat-filesystem-analysis-tool 0 FAT filesystem analysis tool [closed] Andy 2009-12-12T02:30:08Z 2009-12-12T02:30:08Z <p>I have a dump a FAT file system.</p> <p>Is there a windows tool I can use to analyse it, including:</p> <ol> <li>Provide basic information (sector size etc.)</li> <li>Validate the file system, basic corruption checking</li> <li>Allow the files and directory structure to be viewed and possibly edited (i.e mounting as a windows partition)</li> </ol> <p>Thanks, Andy</p> http://stackoverflow.com/questions/649197/suggestions-for-the-most-appropriate-best-embedded-language 3 Suggestions for the most appropriate (best) embedded language? Chris 2009-03-16T03:48:56Z 2009-12-11T16:13:19Z <p>I'm looking at doing embedded coding for a device that's approximately 20MHz, has 6mb ram, with an ARM32 processor. Can anyone suggest the best / most appropriate embedded language? I'm considering:</p> <ul> <li>Lua</li> <li>TinyPy</li> <li>C</li> <li>Java ME</li> <li>C#</li> <li>someone has suggested JavaScript</li> </ul> <p>Any suggestions? Thanks</p> <p>Edit - looks like C and Lua are the winners. Cheers all!</p> <p>Edit - Real Time is not an issue, its more the limited ram/cpu dictating things.</p> http://stackoverflow.com/questions/812717/is-there-any-reason-to-use-c-instead-of-c-for-embedded-development 29 Is there any reason to use C instead of C++ for embedded development? Piotr Czapla 2009-05-01T18:51:58Z 2009-12-10T20:43:56Z <h2>Question</h2> <p>I have two compilers on my hardware C++ and C89</p> <p>I'm thinking about using C++ with classes but without polymorphism (to avoid vtables). The main reasons I’d like to use C++ are:</p> <ul> <li>I prefer to use “inline” functions instead of macro definitions.</li> <li>I’d like to use namespaces as I prefixes clutter the code.</li> <li>I see C++ a bit type safer mainly because of templates, and verbose casting.</li> <li>I really like overloaded functions and constructors (used for automatic casting).</li> </ul> <p>Do you see any reason to stick with C89 when developing for very limited hardware (4kb of RAM)?</p> <h2>Conclusion</h2> <p>Thank you for your answers, they were really helpful! </p> <p>I though the subject through and I will stick with C mainly because:</p> <ol> <li>It is easier to predict actual code in C and this is really important if you have only 4kb of ram. </li> <li>My team consists of C developers mainly so advance features of C++ won't be frequently used.</li> <li>I've found a way to inline functions in my C compiler (C89).</li> </ol> <p>It is hard to accept one answer as you provided so many good answers. Unfortunately I can't create a wiki and accept it so I will choose one answer that made me think most.</p> http://stackoverflow.com/questions/61882/power-efficient-software-coding 27 Power Efficient Software Coding goldenmean 2008-09-15T05:06:05Z 2009-12-10T20:41:24Z <p>In a typical handheld/portable embedded system device Battery life is a major concern in design of H/W, S/W and the features the device can support. From the Software programming perspective, one is aware of MIPS, Memory(Data and Program) optimized code. I am aware of the H/W Deep sleep mode, Standby mode that are used to clock the hardware at lower Cycles or turn of the clock entirel to some unused circutis to save power, but i am looking for some ideas from that point of view:</p> <p>Wherein my code is running and it needs to keep executing, given this how can I write the code "power" efficiently so as to consume minimum watts?</p> <p>Are there any special programming constructs, data structures, control structures which i should look at to achieve minimum power consumption for a given functionality.</p> <p>Are there any s/w high level design considerations which one should keep in mind at time of code structure design, or during low level design to make the code as power efficient(Least power consuming) as possible? </p> http://stackoverflow.com/questions/1829741/lightweight-debugging-on-embedded-linux 4 Lightweight debugging on embedded Linux Maha 2009-12-01T23:41:24Z 2009-12-09T20:50:47Z <p>I'm developing an application that runs on a small Linux-based SBC (~32MB RAM). Sadly, my app recently became too large to run under GDB anymore. Does anyone know of any good, lightweight debugging methods that I can use in embedded Linux? Even being able to view a thread's stack trace would be extremely helpful.</p> <p>I should mention that this application is written in C++ and runs multiple threads, so gdbserver is a no-go as it doesn't work with multithreaded apps.</p> <p>Thanks in advance,</p> <p>Maha</p>