0
votes
1answer
32 views
Assembly for Real Time Clock using timer unit of 68HC12 microcontroller
Coding an ALP program to implement a real time clock to display hour,minute,second using features available in a timer unit. Digits have to displayed on one of the GPIO ports of HC …
3
votes
2answers
50 views
How are SYNC words chosen?
I'm using a data transmission system which uses a fixed SYNC word (0xD21DB8) at the beginning of every superframe. I'd be curious to know how such SYNC words are chosen, i.e. based …
1
vote
3answers
79 views
Is Haskell Embeddable?
I'm wanting to know if it's possible to develop applications in or on Haskell to Windows Mobile, also if there is any version of hugs or ghci for Windows Mobile. Thanks.
4
votes
5answers
79 views
Linkers and architectures
Why do we have linkers for different architectures? Service of the linker is to resolve addresses. So how it is related to the instructions of target architecture?
1
vote
6answers
87 views
How to get the root cause of a memory corruption in a embedded environment ?
Hello,
I have detected a memory corruption in my embedded environment (my program is running on a set top box with a proprietary OS ). but I couldn't get the root cause of it.
the …
1
vote
2answers
41 views
How to Get Ambient Temp from Arduino Lilypad Temperature Sensor
I am connecting a LilyPad Temperature sensor to a LilyPad Arduino 328 Main Board with the goal of reading fairly accurate ambient temperature readings. The sensor is receiving pow …
0
votes
3answers
112 views
Is R Embeddable
Hello,
I'm thinking to start learning R, but I want to know one thing, Is it embeddable(Windows CE, Palm OS)?
1
vote
2answers
44 views
Downloading data to a PIC micro from the web
I have a client that would like a small PIC board that plugs into a PC's USB as a dongle in HID mode. It would basically just transfer small amounts of data over RF to another devi …
3
votes
6answers
106 views
What are some ideas for an embedded and/or robotics project?
I'd like to start messing around programming and building something with an Arduino board, but I can't think of any great ideas on what to build. Do you have any suggestions?
2
votes
8answers
175 views
How to handle changing data structures on program version update?
I do embedded software, but this isn't really an embedded question, I guess. I don't (can't for technical reasons) use a database like MySQL, just C or C++ structs.
Is there a gen …
1
vote
5answers
101 views
Circular Buffer in Flash
I need to store items of varying length in a circular queue in a flash chip. Each item will have its encapsulation so I can figure out how big it is and where the next item begins …
3
votes
6answers
93 views
How do I keep time without cumulative error?
How can you keep track of time in a simple embedded system, given that you need a fixed-point representation of the time in seconds, and that your time between ticks is not precise …
8
votes
13answers
560 views
Why are C, C++, and LISP so prevalent in embedded devices and robots?
It seems that the software language skills most sought for embedded devices and robots are C, C++, and LISP. Why haven't more recent languages made inroads into these applications …
12
votes
12answers
752 views
Fastest way to scan for bit pattern in a stream of bits
I need to scan for a 16 bit word in a bit stream. It is not guaranteed to be aligned on byte or word boundaries.
What is the fastest way of achieving this? There are various bru …
5
votes
7answers
178 views
multithreading using C on PIC18
How does one create threads that run in parallel while programming PIC18 , since there is no OS ?
