|
I'm looking for a embedded language that can be used to script common code between a server app written in C# and a client app written in Flash/Actionscript. It is important that the embedded language interpreter run natively in the environment it is ...
Started by AnthonyF on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You'll find.
Pair that up with LuaInterface and you've got an embedded language on both sides.
Ugly, but someone has successfully embedded Lua into Actionscript through Alchemy -- demo on Google Code .
|
|
What best practices have you used in unit testing embedded software that are peculiar to embedded systems?
Started by Brandon E Taylor on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
This usually....
For stuff that did require the hardware, unit tests were on a non-embedded platform.
Embedded software may have come a long way in the last 10 years but we generally did the following and tested on a non-embedded platform.
|
|
If I have HTML with embedded code inside, for example a embedded player of YouTube, can I build in JavaScript, AJAX, etc. preloader for this player?
Because if I have only the player embedded, the page is white in the loading moment, and later the player...
Started by enry on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The embed objectPerhaps I'm misunderstanding, but if the embedded component can signal a DOM event, you can catch; <embed width="425" height....
As is the case when using a YouTube clip), you could place a div behind the embedded object.
|
Ask your Facebook Friends
|
Hi all,
I need an embedded/In Memory Database which support multithread access.
Thanks!
Leo
Started by Leo on
, 10 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Or Firebird Embedded
For proof that they are thread-safe check the links provided by Mohammed Nasman
Sqlite
Firebird Embedded (version 1.5 and later , an open-source component lib has rxMemTable....
You can use SQlite3 with the DISQLite3 library.
|
|
How to integrate dotnet in embedded?
Started by praveen kumar jaiswal on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If your are talking about ASP.NET on a embedded device you will find that .NET Compact.
For Mobiles.
|
|
When I hear that, I always think about an mobile device. But why is the hardware "embedded" there? Isn't the whole device the hardware? Why is a personal computer no embedded hardware system?
Started by Thanks on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
In today's world embedded simply refers to a system with one or more of the following traits reliability (you shouldn't have to reboot your dishwasher or microwave) I worked in the "embedded" area for a while and we considered anything ....
|
|
Hi all,
I have an embedded board . Can someone suggest an Ideal Linux distro for such a configuration, keeping in mind that it also needs to capture images in realtime. I plan to use Qt_Embedded for application development on such a system.
Thanks
Started by rocknroll on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I talked to someone who worked at a company that produced embedded
For true embedded, I suggest something....
You can get special distros of Linux that are specifically intended for embedded development and see if Debian would work for you.
|
|
Hello,
Does a good library for embedded programming/design/testing and so exist? Something like Safari from O'Reilly?
To be more specific, embedded programming like µC
Started by Adrian on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
However, the field of embedded microcontrollers changes daily, so once with all aspects of development of embedded software: requirements/design/implementation/test?
Something that seems like O'Reilly's Safari....
In is Electrical Engineering.
|
|
There are tons of programming related blogs around the Internet, but I'm looking for resources that focus on embedded systems software and naturally also hardware things.
What blogs, podcasts, newsletters, web sites etc. do you read to learn new things...
Started by Purple Tentacle on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
This is what I have found:
Embedded.com - columns and design articles
Free electrons - Embedded Linux training materials and blog
Jack Ganssle - The Embedded Muse newsletter and articles
Andrew by someone who does C and embedded systems....
|
|
What patterns have you come across as being used frequently with successful results?
Is there a resource of patterns used in embedded programming?
Most patterns books such as the GOF book focus on OOP techniques, surely there are similar patterns in the...
Started by Jeff V on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
Myself doing across multiple embedded designs:
Custom fixed-block-size memory allocator (as opposed embedded platform:
switch statements on a state variable function look-up table indexed by state time and a background task doing house ....
|