User Robert - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T05:25:37Zhttp://stackoverflow.com/feeds/user/9516http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1888836/how-to-use-a-mit-license-in-an-embedded-device6How to use a MIT License in an Embedded deviceRobert2009-12-11T15:30:56Z2009-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/1888836/how-to-use-a-mit-license-in-an-embedded-device/1888987#18889871Answer by Robert for How to use a MIT License in an Embedded deviceRobert2009-12-11T15:54:16Z2009-12-11T15:54:16Z<p>I found a message thread on JQuery's site <a href="http://groups.google.com/group/jquery-en/browse%5Fthread/thread/798fb5352a10c061/0f3712f4597c4c76?lnk=gst&q=license#0f3712f4597c4c76" rel="nofollow">here</a>. One person answering stated, "if you leave the comment on top of your js file intact, you'll be fine. " Since the thread went on without this statement being corrected, I'm going to accept it as correct.</p>
<p><strong>So the short answer is: As long as you leave the file exactly as you found it, you are in compliance.</strong></p>
http://stackoverflow.com/questions/1880141/interfacing-45db161-data-flash-with-89lp4052-controller/1882957#18829571Answer by Robert for Interfacing 45DB161 data flash with 89LP4052 controller.Robert2009-12-10T18:16:26Z2009-12-10T18:16:26Z<p>I had a similar symptom when I was coding for a similar Flash chip.</p>
<p>My problem was that there were other Chip Select lines to other chips (RTC, UART, etc) that I did not initialize, so they defaulted to low. The low Chip Select allows those chips to drive the MISO (master in, slave out) data line so that the microcontroller couldn't read anything.</p>
http://stackoverflow.com/questions/1839814/use-of-tftp-server-in-booting-sequence-of-router/1839854#18398540Answer by Robert for use of tftp server in booting sequence of routerRobert2009-12-03T13:25:46Z2009-12-03T13:25:46Z<p>The TFTP server should be in the router. You can use a TFTP client to upload new firmware images to the unit.</p>
<p>TFTP is used because it uses UDP which is simpler and had a smaller footprint than a full TCP-based FTP server.</p>
<p>TFTP is very typical in embedded devices that have limited RAM and ROM space.</p>
http://stackoverflow.com/questions/1793999/how-to-find-out-who-called-a-method/1794040#17940400Answer by Robert for How to find out who called a method?Robert2009-11-25T01:04:12Z2009-11-25T01:04:12Z<p>Make a macro that adds the <code>__FUNCTION__</code> to the function name to the function call. This macro will then call your function with an extra parameter of a char* to the target function.</p>
http://stackoverflow.com/questions/288047/user-controls-not-showing-up-in-the-toolbox5User Controls not showing up in the toolboxRobert2008-11-13T19:58:12Z2009-11-24T20:14:17Z
<p>I have some UserControls that I created in ProjectA. I have ProjectB that has a windows form that I want to put the controls on. Both of these projects are in a single solution. There's a reference to ProjectA from ProjectB so it can "see" the UserControls.</p>
<p>However, the UserControls do not show up in the toolbox for me to drag to the windows form.</p>
<p>I've tried rebuilding. I've also deleted the 'bin' directory to force a rebuild-all.</p>
<p>How do I get VS2008 to populate the toolbox with my UserControls?</p>
http://stackoverflow.com/questions/1777011/which-programming-language-has-very-short-context-free-grammar-in-its-formal-spec/1777190#17771900Answer by Robert for Which programming language has very short context-free Grammar in its formal specification?Robert2009-11-21T23:48:12Z2009-11-21T23:48:12Z<p>Lisp is probably pretty small.</p>
<pre><code>lisp ::= `(´ exp `)´
</code></pre>
http://stackoverflow.com/questions/1766695/self-signed-ssl-link-not-working1Self-Signed SSL Link not workingRobert2009-11-19T21:26:56Z2009-11-19T21:34:58Z
<p>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 between IE8 and Firefox 3.5.5.</p>
<p>In IE8, if I try to download a PNG file, it will download every time.</p>
<p>In FireFox, it will give me an error <strong>every other time</strong>.</p>
<p>The error message is this:</p>
<blockquote>
<pre><code>Secure Connection Failed
An error occurred during a connection to 192.168.1.100.
SSL peer was unable to negotiate an acceptable set of security parameters.
(Error code: ssl_error_handshake_failure_alert)
*The page you are trying to view can not be shown because the authenticity of the received data could not be verified.
*Please contact the web site owners to inform them of this problem. Alternatively, use the command found in the help menu to report this broken site.
</code></pre>
</blockquote>
<p>What is causing this? Why does one browser work all the time and the other only works every other time?</p>
http://stackoverflow.com/questions/1724391/what-programs-languages-should-i-learn-for-a-career-in-web-programming-design/1724468#17244681Answer by Robert for What programs/languages should I learn for a career in web programming/design?Robert2009-11-12T18:46:09Z2009-11-12T18:46:09Z<ul>
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
<li>JQuery</li>
<li>JQuery Plugins</li>
<li>PHP</li>
<li>MySQL</li>
</ul>
http://stackoverflow.com/questions/1715401/why-is-the-complexity-of-a-exponential-in-memory/1715503#17155035Answer by Robert for Why is the complexity of A* exponential in memory?Robert2009-11-11T14:27:43Z2009-11-11T15:12:14Z<p>I think the exponential-ness comes into play when you backtrack to node B to expand it, but then backtrack to node C to expand it, and then backtrack to node D. Now we have to keep track of all the children of nodes A, B, C, and D.</p>
<p>The backtracking is based on the cost of the edges to move to the next node, so this is a real possibility, but is the worse case.</p>
<p>If each node has exactly 2 children off of it, and each node has the same cost, then the equation is 2^n, where n is the depth of the search so far.</p>
<p>For example, you start off with node 0. 0 has 2 children 00 and 01. 00 has 2 children 000 and 001. At the worse case with a depth of 4 the equation is 2^4, where 2 is the number of children each node has and 4 is the depth of the search.</p>
http://stackoverflow.com/questions/1715228/there-any-way-to-differentiate-a-md5-of-a-sha-1/1715277#17152773Answer by Robert for There any way to differentiate a md5 of a sha-1 ?Robert2009-11-11T13:48:21Z2009-11-11T13:48:21Z<p>MD5 gives a 128-bit hash value.</p>
<p>SHA-1 gives a 160-bit hash value. </p>
http://stackoverflow.com/questions/1704045/whats-the-difference-between-these-two-jquery-selectors/1704067#17040670Answer by Robert for What's the difference between these two jQuery selectors?Robert2009-11-09T21:43:59Z2009-11-09T21:43:59Z<p>In this example, yes they will return the same thing.</p>
http://stackoverflow.com/questions/183656/how-to-digitally-sign-a-document5How to Digitally "Sign" a documentRobert2008-10-08T16:30:12Z2009-11-06T21:22:34Z
<p>I don't like paper documents. I like everything stored on a server. I'd like to avoid printing, signing, and scanning, if possible.</p>
<p><b>How do I get signatures from people to sign-off on forms and still keep it digital?</b></p>
<p>The purpose of signing is to prove that certain departments have OK'd the document. Most of these people are non-technical.</p>
<p>The ideal is that each person would open the document and type in their name and close the document. The problem is that how do I know that Fred didn't sign for Ralph.</p>
http://stackoverflow.com/questions/1690146/why-does-size-of-any-data-type-depend-on-the-machine/1690188#16901880Answer by Robert for why does size of any data type depend on the machine?Robert2009-11-06T20:30:13Z2009-11-06T20:30:13Z<p>Because not all machines have 32-bit registers. Some have 64, others have 8. The compiler is allowed to pick a size that is better for the target processor.</p>
http://stackoverflow.com/questions/1688241/when-is-stack-space-allocated-for-local-variables/1688274#16882741Answer by Robert for When is stack space allocated for local variables?Robert2009-11-06T15:21:01Z2009-11-06T15:21:01Z<p>If the variables are going to be put on the stack, the stack space is allocated at the beginning of the function before the first statement in the function. The stack pointer will be moved up (or down) the total number of bytes to store all the local variables.</p>
http://stackoverflow.com/questions/1676496/tourtoisesvn-how-to-diff-2-tags1TourtoiseSVN: How to diff 2 tags?Robert2009-11-04T20:48:10Z2009-11-06T03:19:36Z
<p>How do I do a diff between 2 tags without checking out both tags?</p>
http://stackoverflow.com/questions/1676496/tourtoisesvn-how-to-diff-2-tags/1676524#16765240Answer by Robert for TourtoiseSVN: How to diff 2 tags?Robert2009-11-04T20:52:00Z2009-11-04T20:52:00Z<p>Go to Revision Graph.</p>
<p>CTRL-click on the 2 revisions where the tags were marked.</p>
<p>Right-click, select "Compare Revisions"</p>
http://stackoverflow.com/questions/1669245/circular-buffer-in-flash1Circular Buffer in FlashRobert2009-11-03T18:25:46Z2009-11-04T08:29:29Z
<p>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. When there are enough items in the buffer, it will wrap to the beginning.</p>
<p><strong>What is a good way to store a circular queue in a flash chip?</strong></p>
<p>There is a possibility of tens of thousands of items I would like to store. So starting at the beginning and reading to the end of the buffer is not ideal because it will take time to search to the end.</p>
<p>Also, because it is circular, I need to be able to distinguish the first item from the last. </p>
<p>The last problem is that this is stored in flash, so erasing each block is both time consuming and can only be done a set number of times for each block.</p>
http://stackoverflow.com/questions/1663636/2s-complement-example-why-not-carry/1663662#16636621Answer by Robert for 2's complement example, why not carry?Robert2009-11-02T21:01:18Z2009-11-02T21:01:18Z<p>At some point you have to set the number of bits to represent the numbers. He chose 4 bits. Any carry into the 5th bit is lost. But that's OK because he decided to represent the number in just 4 bits.</p>
<p>If he decided to use 5 bits to represent the numbers he would have gotten the same result.</p>
http://stackoverflow.com/questions/1643427/is-renaming-a-folder-in-svn-a-good-idea2Is renaming a folder in SVN a good idea?Robert2009-10-29T12:38:52Z2009-10-29T13:36:31Z
<p>I have the following SVN (standard) structure:</p>
<pre><code>Project1
trunk
tags
branches
</code></pre>
<p>Project1 is the project code name. After it is done, it is shifted to a Product. The problem is that after a year, I forget the project name for the product. I'd like to rename the SVN Project1 to Product1.</p>
<p>Are there any gotchas that will come from this?</p>
http://stackoverflow.com/questions/1637453/what-is-a-protocol-stack/1637476#16374769Answer by Robert for What is a protocol stack ?Robert2009-10-28T14:09:09Z2009-10-28T14:09:09Z<p>TCP is built on IP.</p>
<p>IP is built on Ethernet.</p>
<p>Ethernet is built on voltage levels and timings.</p>
<p>So a TCP Stack is the stack of stuff you need to use TCP.</p>
http://stackoverflow.com/questions/1606926/code-banking-with-sdcc0Code Banking with SDCCRobert2009-10-22T12:38:11Z2009-10-23T23:58:39Z
<p>I need to use code banking in an 8051 microcontroller to fit all the code. SDCC says it supports it, but I'm having trouble at the linking step.</p>
<p>I have a test project with 3 files: main.c, func1.c, and bank.asm. The main function should call func1() and then sit in a while loop. But func1() is in a different code bank.</p>
<pre><code>// main.c
int func1(void) banked;
void main()
{
int i = func1();
while(i)
{
}
}
// func1.c
#pragma codeseg BANK1
int func1(void) {
return 99; }
//bank.asm
.area HOME (CODE)
.area GSINIT0 (CODE)
.area GSINIT1 (CODE)
.area GSINIT2 (CODE)
.area GSINIT3 (CODE)
.area GSINIT4 (CODE)
.area GSINIT5 (CODE)
.area GSINIT (CODE)
.area GSFINAL (CODE)
.area CSEG (CODE)
.area HOME (CODE)
__sdcc_banked_call::
ret ;make the call
__sdcc_banked_ret::
ret ;return to caller
</code></pre>
<p>I have a build batch file to compile everything and link it all together.</p>
<pre><code>sdcc -c func1.c
sdcc -c main.c
asx8051 -ol bank.asm
sdcc "-Wl -b BANK1=0x018000" main.rel func1.rel bank.rel
</code></pre>
<p>I get this linker error:</p>
<pre><code>?ASlink-Error-Insufficient ROM/EPROM/FLASH memory.
</code></pre>
<p>How do I get this to link?</p>
http://stackoverflow.com/questions/1606926/code-banking-with-sdcc/1607710#16077100Answer by Robert for Code Banking with SDCCRobert2009-10-22T14:39:13Z2009-10-22T14:39:13Z<p>From the SDCC Manual:</p>
<blockquote>
<p>Segments may be placed anywhere in the
4 meg address space using the usual
--*-loc options. Note that if any segments are located above 64K, the -r
flag must be passed to the linker to
generate the proper segment
relocations, and the Intel HEX output
format must be used. The -r flag can
be passed to the linker by using the
option -Wl-r on the SDCC command line.
However, currently the linker can not
handle code segments > 64k.</p>
</blockquote>
<p>So, add -Wl-r to the linker line.</p>
http://stackoverflow.com/questions/1454179/keeping-track-of-source-code-variants/1460212#14602121Answer by Robert for Keeping track of source code variantsRobert2009-09-22T13:47:21Z2009-09-22T13:47:21Z<p>You are in for a world of hurt!</p>
<p>Whatever you do, you need an automatic build environment. At the very least you need some automatic way of building all the different versions of your firmware. I've had issues of fixing a bug in one version and breaking the build of a different version.</p>
<p>Ideally you would be able to load the different targets and run some smoke tests.</p>
<p>If you go the #define route, I would put the following someplace where the variant is checked:</p>
<pre><code>#else
#error You MUST specify a variant!
#endif
</code></pre>
<p>This will make sure all the files are built for the same variant during the build process.</p>
http://stackoverflow.com/questions/1430210/more-efficient-large-array-or-many-scalars/1432630#14326301Answer by Robert for More efficient: large array or many scalarsRobert2009-09-16T12:24:09Z2009-09-16T12:24:09Z<p>First, you can change your linker file to allow a larger section. You will then have to put your history array in that section using pragmas.</p>
<p>Second, the array method is much better. To improve the performance you will also need a 32-bit integer to keep a running total of the history array.</p>
<p>For each firing of the history function you will subtract the oldest value from the HistoryRunningTotal and add in the new history value. You will also need a OldestHistoryIndex variable to keep track of where the newest value will go (and overwrite the old history).</p>
http://stackoverflow.com/questions/1426504/pre-preprocessor/1426963#14269631Answer by Robert for Pre-preprocessorRobert2009-09-15T12:43:47Z2009-09-15T12:43:47Z<p>I would put the client specific code in a separate directory or possibly part of a different project that would need to be checked out of the source control.</p>
<p>Put a function call that would be stubbed out or (I forget the proper term) loosely linked so that another function can be put in its place.</p>
http://stackoverflow.com/questions/1422147/advice-to-improve-concentration-in-noisy-office/1422183#14221833Answer by Robert for Advice to improve concentration in noisy office?Robert2009-09-14T15:12:18Z2009-09-14T15:12:18Z<p>Talk to your boss about the working environment.</p>
http://stackoverflow.com/questions/1422147/advice-to-improve-concentration-in-noisy-office/1422179#14221794Answer by Robert for Advice to improve concentration in noisy office?Robert2009-09-14T15:11:43Z2009-09-14T15:11:43Z<p>Ask your co-workers to wear headphones.</p>
http://stackoverflow.com/questions/1362906/how-real-time-is-linux-2-613How "Real-Time" is Linux 2.6?Robert2009-09-01T14:51:24Z2009-09-03T05:45:27Z
<p>I am looking at moving my product from an RTOS to embedded Linux. I don't have many real-time requirements, and the few RT requirements I have are on the order of 10s of milliseconds.</p>
<p>Can someone point me to a reference that will tell me how Real-Time the current version of Linux is?</p>
<p>Are there any other gotchas from moving to a commercial RTOS to Linux?</p>
http://stackoverflow.com/questions/1357724/interview-question-finding-next-and-previous-characters-in-a-given-string/1357786#13577860Answer by Robert for Interview Question: Finding Next and Previous characters in a given string?Robert2009-08-31T14:39:08Z2009-08-31T15:51:44Z<p><strike>Previous:
Back up 2 bytes. If the byte > 127, then it is the start of the character, otherwise the previous character starts at the next character.</p>
<p>Next:
If the current byte is > 127, then the next character starts in 2 bytes, otherwise the next character starts in 1 byte.</strike></p>
http://stackoverflow.com/questions/1888836/how-to-use-a-mit-license-in-an-embedded-device/1888868#1888868Comment by Robert on How to use a MIT License in an Embedded deviceRobert2009-12-11T15:37:11Z2009-12-11T15:37:11ZI understand that the license permits me to do what I want. It's the part about "and this permission notice shall be included in all copies or substantial portions of the Software" that makes me hesitate.http://stackoverflow.com/questions/231868/c-two-or-more-data-types-in-declarationComment by Robert on C++ two or more data types in declarationRobert2009-12-03T19:00:19Z2009-12-03T19:00:19Z+1 for telling it to your rubber duck.http://stackoverflow.com/questions/1724391/what-programs-languages-should-i-learn-for-a-career-in-web-programming-designComment by Robert on What programs/languages should I learn for a career in web programming/design?Robert2009-11-12T18:47:09Z2009-11-12T18:47:09ZIt's easy rep to accept answers. :)http://stackoverflow.com/questions/1693021/how-are-sync-words-chosenComment by Robert on How are SYNC words chosen?Robert2009-11-10T19:00:50Z2009-11-10T19:00:50ZFair dice roll?http://stackoverflow.com/questions/1690146/why-does-size-of-any-data-type-depend-on-the-machineComment by Robert on why does size of any data type depend on the machine?Robert2009-11-06T20:29:10Z2009-11-06T20:29:10ZActually, the size of the answer depends on the machine or compiler.http://stackoverflow.com/questions/1674708/downloading-data-to-a-pic-micro-from-the-webComment by Robert on Downloading data to a PIC micro from the webRobert2009-11-05T14:08:56Z2009-11-05T14:08:56ZHow are you mixing USB and Ethernet? Something seems amiss...http://stackoverflow.com/questions/1674708/downloading-data-to-a-pic-micro-from-the-web/1678096#1678096Comment by Robert on Downloading data to a PIC micro from the webRobert2009-11-05T14:05:23Z2009-11-05T14:05:23ZI have done several projects with a PIC18F67J60 with a HTTP server and file upload. So it will fit in a PIC easily.http://stackoverflow.com/questions/1669245/circular-buffer-in-flashComment by Robert on Circular Buffer in FlashRobert2009-11-03T19:37:11Z2009-11-03T19:37:11ZI want to save data in non-volatile memory. The non-volatile memory that I have is flash. Non-volatile is important because the product could be turned off for a period of time and I don't want to lose the data. When the power comes back on, it needs to put the next piece of data after the last one.http://stackoverflow.com/questions/1669245/circular-buffer-in-flashComment by Robert on Circular Buffer in FlashRobert2009-11-03T18:32:28Z2009-11-03T18:32:28Z@Skilldrick - donehttp://stackoverflow.com/questions/1544518/ie6-doesnt-load-google-maps-api-v3/1544559#1544559Comment by Robert on IE6: Doesn't load Google Maps API v3Robert2009-10-12T19:06:58Z2009-10-12T19:06:58ZI had to read through it 3 times to find the difference! Drop the last comma.http://stackoverflow.com/questions/1430210/more-efficient-large-array-or-many-scalarsComment by Robert on More efficient: large array or many scalarsRobert2009-09-16T12:27:10Z2009-09-16T12:27:10Z@Brooks - That was a pretty good answer. Why not put it as an answer? Comments do not earn you Rep.http://stackoverflow.com/questions/1424635/is-there-a-programmatic-way-to-check-stack-corruption/1426099#1426099Comment by Robert on Is there a programmatic way to check stack corruptionRobert2009-09-15T12:38:44Z2009-09-15T12:38:44Z+1 for mentioning the ISR stack.http://stackoverflow.com/questions/1329564/how-do-i-run-a-command-as-a-different-user-from-a-root-cronjobComment by Robert on How do I run a command as a different user from a root cronjob?Robert2009-08-25T17:16:03Z2009-08-25T17:16:03ZMight be better served by moving this to SuperUser.com.http://stackoverflow.com/questions/1304574/what-does-it-mean-to-attach-romfs-in-ram/1304687#1304687Comment by Robert on What does it mean to attach ROMFS in RAM?Robert2009-08-24T18:06:17Z2009-08-24T18:06:17ZBy running out of RAM, you can also update the flash without worrying about executing/erasing that sector of flash.http://stackoverflow.com/questions/1279451/program-to-corrupt-a-file/1279494#1279494Comment by Robert on Program to corrupt a file?Robert2009-08-14T18:52:39Z2009-08-14T18:52:39ZKinda hard to get rep with just comments, though.