Tagged Questions

10
votes
9answers
331 views

Embedded C++ : to use STL or not?

I have always been an embedded software engineer, but usually at Layer 3 or 2 of the OSI stack. I am not really a hardware guy. I have generally always done telecoms products, usually …
1
vote
1answer
22 views

Real time embeddable http server library required

Having looked at several available http servers I have not yet found what I am looking for and am sure I can't be the first to have this set of requirements. I am adding an http API onto a real time …
4
votes
5answers
80 views

Embedded systems : last gasp before reboot

When things go badly awry in embedded systems I tend to write an error to a special log file in flash and then reboot (there's not much option if, say, you run out of memory). I realize even that can …
8
votes
4answers
135 views

Embedded C++ : to use exceptions or not?

I realize this may be subjective, so will ask a concrete question, but first, background: I have always been an embedded software engineer, but usually at Layer 3 or 2 of the OSI stack. I am not …
0
votes
2answers
109 views

C++ need for Assembly in embedded systems

I hear of a need to call assembly functions/calls when programming embedded systems in C. Is this necessary in C++ or not?
0
votes
2answers
19 views

set up a data trigger on physical address

Hi, Do you know any device out there can set up a data trigger on a physical address in MIPS ? I am using FS2 but It can only set up a trigger on virtual address.
1
vote
1answer
30 views

Use gcc On ELKS

I'm using PocketDOS to emulate ELKS, but I want to develop on it using gcc and ld, how can I do this?
3
votes
2answers
87 views

Server Architecture for Embedded Device

I am working on a server application for an embedded ARM platform. The ARM board is connected to various digital IOs, ADCs, etc that the system will consistently poll. It is currently running a Linux …
0
votes
1answer
57 views

Running an application on an os designed and created in Visual Studio

I have built an os design (and its bsp) in Visual Studio. I need to know how to get started with writing applications for the os by writing a simple application that will run in the os created …
4
votes
5answers
118 views

Implementing C file streams (FILE *, fopen, fread, etc.) on embedded platform

I've been tasked with adding streams support (C89/C90) to the libraries for my company's legacy embedded C compiler. Our target hardware typically has 1MB or less of code space and does not have an …
10
votes
9answers
359 views

Finding division by zero in a big project

Recently, our big project began crashing on unhandled division by zero. No recent code seems to contain any likely elements so it may be new data sets affecting old code. The problem is the code base …
0
votes
5answers
120 views

dynamic char array sizing

Hello, In my application, I have a char array defined which can take one of three options: "okay", "high", "low" which are then sent down a serial port to a remote device. I currently have the array …
17
votes
9answers
365 views

Does it matter which microcontroller to use for 1st time embed system programmer?

I've experience in doing desktop and web programming for a few years. I would like to move onto doing some embed system programming. After asking the initial question, I wonder which hardware / …
12
votes
7answers
323 views

C++, can I statically initialize a std::map at compile time

If I code this std::map<int, char> example = { (1,'a'), (2, 'b'), (3, 'c') }; then g++ says to me deducing from brace-enclosed …
29
votes
16answers
801 views

Optimizing for space instead of speed in C++

When you say "optimization", people tend to think "speed". But what about embedded systems where speed isn't all that critical, but memory is a major constraint? What are some guidelines, techniques, …

1 2 3 4 5 44
15 30 50 per page