2
votes
8answers
93 views
Which embedded (microcontroller) platform to move to
Hi all.
I have been programming with 8bit PICs for quite some time but now need to move to something more powerful.
I would like a family of chips that:
I can get a good (free) …
9
votes
9answers
275 views
Stack Size Estimation
In multi-threaded embedded software (written in C or C++), a thread must be given enough stack space in order to allow it to complete its operations without overflowing. Correct s …
0
votes
1answer
20 views
Is kernel or userspace responsible for rotating framebuffer to match screen
I'm working on embedded device with screen rotated 90 degrees clockwise: screen controller reports 800x600 screen, while device's screen is 600x800 portrait.
What do you think, wh …
5
votes
6answers
99 views
Alarm history stack or queue?
I'm trying to develop an alarm history structure to be stored in non-volatile flash memory. Flash memory has a limited number of write cycles so I need a way to add records to the …
1
vote
1answer
25 views
Self-Signed SSL Link not working
I have an embedded web server with a self-signed SSL certificate. After I get past the Web Browser's warning about the SSL Certificate being self signed, I am seeing a difference …
1
vote
2answers
79 views
List of multicore embedded CPUs [closed]
I'm working on compiling a list of hard-core multicore embedded cpus.
Hard-core: in contrast to soft-core devices such as the Microblaze, which are loaded onto FPGAs.
Currently …
2
votes
4answers
96 views
Optimal datafile format loading on a game console.
Hello.
I need to load large models and other structured binary data on an older CD-based game console as efficiently as possible. What's the best way to do it? The data will be ex …
2
votes
2answers
123 views
Differences Between ARM Assembly and x86 Assembly
Hello,
I'm now going to learn ARM Assembly, to develop for my Windows Mobile 5 iPAQ, but I have some questions:
What Are The Main Differences Between ARM Assembly and x86 Assem …
0
votes
0answers
51 views
Low power compliance specific to programmers [closed]
For a long time, I know that Energy Star program has been around as a compliance program for electronic gadgets. Mostly related to IT.
If possible, Can we enumerate all such compl …
12
votes
4answers
161 views
Getting started with FPGA programming.
I want to play around with FPGAs.
I'm looking for advice getting on started.
Can anyone recommend good FGPA boards that I easily start programming for? How much should I look a …
3
votes
9answers
335 views
clear code for counting from 0 to 255 using 8-bit datatype
I was wondering if there is a clean way of counting from 0 to 255 using an 8 bit datatype, something like:
for(uint8_t i(0);i<=255;++i)
{
....
}
This obviously will not w …
1
vote
0answers
13 views
NetworkInterface.GetAllNetworkInterfaces causes AppDomain.UnhandledException to stop firing on Windows XP Embedded
I have an application that targets desktop OSes (XP, Vista, Win7) as well as mobile devices running Windows XP Embedded. All platforms are running the full .Net Framework, not the …
3
votes
3answers
52 views
Is it possible to have a single physical USB device appear as two separate device classes?
I am in the early stages of development of a device requiring USB connectivity. As a minimum the device must appear as a legacy serial port, but it would be useful if it could sim …
1
vote
1answer
31 views
LD linker: Target address aligning but not address in ROM
I have a program that's resident in flash and will run from flash. Early in the program data segments are copied from flash to ram. I'm using a linker script like (simplified):
.t …
1
vote
3answers
92 views
Using Printf to display on serial port of an ARM microcontroller
I would like to use printf to diplay text on a serial port of an ARM microcontroller. I am unable to do so. Any help is appreciated.
My init_serial looks like this
void init_ser …
