User Vanuan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T05:32:34Z http://stackoverflow.com/feeds/user/99024 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/815758/simple-serial-point-to-point-communication-protocol 10 Simple serial point-to-point communication protocol Vanuan 2009-05-02T22:20:38Z 2009-12-01T03:46:52Z <p>I need a simple communication protocol between two devices (a PC and a microcontroller). The PC must send some commands and parameters to the micro. The micro must transmit an array of bytes (data from sensor).</p> <p>The data must be <a href="http://en.wikipedia.org/wiki/Error%5Fdetection%5Fand%5Fcorrection" rel="nofollow">noise protected</a> (besides parity checking, I think I need some other data correction method).</p> <p>Is there any standard solution to do this? (I need only an idea, not the complete solution).</p> <p>P.S. Any advice is appreciated. <em>P.P.S Sorry for any grammar mistakes, I hope you understand.</em></p> <p><strong>Edit 1.</strong> I have not decided whether it will be <strong><em>master/slave</em></strong> protocol or both sides can initiate communication. The PC must know when micro have done a job and can send data. It can continuously poll the micro if data is ready, or the micro can send data, when a job is done. I don't know which is better and simpler.</p> <p><strong>Edit 2.</strong> <strong><em>Hardware and <a href="http://en.wikipedia.org/wiki/Physical%5FLayer" rel="nofollow">physical layer</a> protocol.</em></strong> Since <a href="http://en.wikipedia.org/wiki/RS-232" rel="nofollow">RS-232</a>C serial standard used in the PC, I will use <a href="http://en.wikipedia.org/wiki/Asynchronous%5Fserial%5Fcommunication" rel="nofollow">asynchronous communication</a>. I will use only RxD, TxD and GND signals. I can't use additional wires because the microcontroller AFAIK doesn't support them. BTW I'm using the <a href="http://en.wikipedia.org/wiki/Atmel%5FAVR" rel="nofollow">AVR</a> ATmega128 chip.</p> <p>So I will use fixed baud rate, 8 bits of data, 2 stop bits without parity checking (or with?).</p> <p><strong><em><a href="http://en.wikipedia.org/wiki/Data%5FLink%5FLayer" rel="nofollow">Data link protocol</a></em></strong>. That's what my question primarily concerned about. Thanks for suggesting <a href="http://en.wikipedia.org/wiki/High-Level%5FData%5FLink%5FControl" rel="nofollow">HDLC</a>, <a href="http://en.wikipedia.org/wiki/Point-to-Point%5FProtocol" rel="nofollow">PPP</a> and <a href="http://en.wikipedia.org/wiki/Modbus" rel="nofollow">Modbus</a> protocols. I will research on it.</p> http://stackoverflow.com/questions/1554750/c-const-keyword-use-liberally/1554820#1554820 13 Answer by Vanuan for C++ const keyword - use liberally? Vanuan 2009-10-12T14:11:21Z 2009-10-12T14:19:27Z <p>I recommend <a href="http://books.google.com/books?id=mT7E5gDuW%5F4C" rel="nofollow">Herb Sutter. Exceptional C++</a>. There is a chapter "Const-Correctness".</p> <p>"In fact, to the compiler, the function signature is the same whether you include this const in front of a value parameter or not."</p> <p>"Avoid const pass-by-value parameters in function declarations. Still make the parameter const in the same function's definition if it won't be modified."</p> http://stackoverflow.com/questions/1116266/listings-in-latex-with-utf-8-or-at-least-german-umlauts/1495174#1495174 0 Answer by Vanuan for Listings in Latex with UTF-8 (or at least german umlauts) Vanuan 2009-09-29T21:58:14Z 2009-09-29T21:58:14Z <p>Author of package <a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=413045" rel="nofollow">suggests</a> using texcl option. Sometimes it helps, sometimes doesn't.</p> http://stackoverflow.com/questions/834177/foolproof-trial-strategy 2 Foolproof trial strategy Vanuan 2009-05-07T11:40:35Z 2009-08-05T17:06:00Z <p>I know there is already present similar questions on SO. But my question is more theoretical.</p> <p>I'm wondering, is it possible to design a foolproof trial system? By foolproof I mean such a system which cannot be cracked even if a cracker knows the algorithm of such a system?</p> <p>Sorry if it is not a programming question.</p> <p><strong>Edit:</strong> I think I should make my question more practical. I'm asking about a whole system, not standalone application. System consists of PC with Linux OS and some hardware connected to it. Maybe I can use an HDD encryption?</p> http://stackoverflow.com/questions/993431/are-software-engineering-and-software-development-the-same 5 Are software engineering and software development the same? Vanuan 2009-06-14T18:30:19Z 2009-07-04T16:58:36Z <p>I am confused. What is software construction? Is it field of software engineering or software development? Maybe software development is subdiscipline of software engineering? What books would you recomment to answer this questions?</p> http://stackoverflow.com/questions/1081871/how-to-find-available-com-ports/1081910#1081910 0 Answer by Vanuan for How to find available COM ports? Vanuan 2009-07-04T09:51:12Z 2009-07-04T09:51:12Z <p>Framework v1.1 AFAIK doesn't allow you to do this.</p> <p>In 2.0 there is a static function</p> <pre><code>SerialPort.GetPortNames() </code></pre> <p><a href="http://msdn.microsoft.com/en-us/library/system.io.ports.serialport.getportnames.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.io.ports.serialport.getportnames.aspx</a></p> http://stackoverflow.com/questions/930562/why-do-programmers-have-to-learn-for-their-whole-lives-and-arent-you-afraid-of-t/930666#930666 2 Answer by Vanuan for Why do programmers have to learn for their whole lives and aren't you afraid of that? Vanuan 2009-05-30T21:36:01Z 2009-05-30T21:36:01Z <p>I don't think that assembler or c will disappear after 10 years. Of course, new languages will appear, but fundamentals will always be there. So you need to learn new approaches and algorithms - the base of CS. New technologies and languages are only the new way of expressing the old tricks - more quickly and more efficiently. (IMHO)</p> http://stackoverflow.com/questions/930611/working-with-very-large-integers-in-c/930638#930638 0 Answer by Vanuan for working with very large integers in c# Vanuan 2009-05-30T21:11:52Z 2009-05-30T21:23:07Z <p>Try to use an array for this task. You could use as long integers as you have free memory space. Every member of array repsesents one decimal digit. The only you need is to implement multipication.</p> http://stackoverflow.com/questions/904592/what-ide-is-needed-to-develop-a-first-time-simple-windows-application/904608#904608 1 Answer by Vanuan for What IDE is needed to develop a first time simple Windows application? Vanuan 2009-05-24T20:42:28Z 2009-05-24T21:01:14Z <p>notepad + .NET Framework + cmd</p> <p>type:</p> <pre><code>using System.Windows.Forms; public class HelloWorld { public static void Main() { MessageBox.Show("Hello, World!"); } } </code></pre> <p>save as %WINDIR%\Microsoft.NET\Framework\vX.X.XXXXX\hello.cs</p> <p>open command line</p> <blockquote> <p>cd %WINDIR%\Microsoft.NET\Framework\vX.X.XXXXX %homedrive%</p> </blockquote> <p>compile:</p> <blockquote> <p>csc /target:winexe hello.cs</p> </blockquote> <p>run:</p> <blockquote> <p>hello</p> </blockquote> <p>If you're looking for open source IDE I recommend Eclipse with plugins or <a href="http://monodevelop.com/" rel="nofollow">MonoDevelop</a> (<a href="http://en.wikipedia.org/wiki/MonoDevelop" rel="nofollow">wikipedia</a>).</p> http://stackoverflow.com/questions/813826/how-might-i-remove-focus-from-all-items-in-a-listview-control/813897#813897 3 Answer by Vanuan for How might I remove focus from all items in a ListView control? Vanuan 2009-05-02T01:14:57Z 2009-05-07T10:02:20Z <p>I think, it is </p> <pre><code>listView1.FocusedItem.Focused=false; </code></pre> <p>Make sure that listView1.FocusedItem is not null.</p> <p>(Thanks to <strong>brianpeiris</strong> for expanding)</p> http://stackoverflow.com/questions/813896/what-is-the-most-feature-rich-ad-less-free-web-hosting-service-available-on-the/813921#813921 1 Answer by Vanuan for What is the most feature rich, ad-less, free web hosting service available on the internet? Vanuan 2009-05-02T01:27:58Z 2009-05-02T01:27:58Z <p>I suggest <a href="http://www.awardspace.com" rel="nofollow">www.awardspace.com</a></p> <p>Basic PHP/MySQL with 500 MiB disk space and 10 MiB database quota. Traffic 5 GiB/month.</p> http://stackoverflow.com/questions/1116266/listings-in-latex-with-utf-8-or-at-least-german-umlauts/1116936#1116936 Comment by Vanuan on Listings in Latex with UTF-8 (or at least german umlauts) Vanuan 2009-09-29T19:53:47Z 2009-09-29T19:53:47Z I think, 'extendedchars=\true' is equal to 'extendedchars=false'. http://stackoverflow.com/questions/1116266/listings-in-latex-with-utf-8-or-at-least-german-umlauts Comment by Vanuan on Listings in Latex with UTF-8 (or at least german umlauts) Vanuan 2009-09-29T19:50:23Z 2009-09-29T19:50:23Z Similar problem with cyrillic. Using one byte encoding solves the problem. http://stackoverflow.com/questions/551096/broken-mono-c-code-using-system-windows-forms/551105#551105 Comment by Vanuan on Broken Mono C# code using System.Windows.Forms Vanuan 2009-07-30T19:58:18Z 2009-07-30T19:58:18Z &quot;-pkg:dotnet&quot; also works http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/3264#3264 Comment by Vanuan on What is the single most influential book every programmer should read? Vanuan 2009-07-14T17:07:10Z 2009-07-14T17:07:10Z Ok. We can downvote it now. http://stackoverflow.com/questions/1021210/programming-slim-c-programs-like-utorrent-for-windows Comment by Vanuan on Programming slim C++ programs (like uTorrent) for Windows Vanuan 2009-06-20T08:46:31Z 2009-06-20T08:46:31Z AFAIK uTorrent is packed with compressor, so its physycal size is small. But at runtime it is decompressed and use much more memory.Small executable size is achieved by avoiding the use of many libraries, notably the C++ standard library and stream facilities, and creating substitutes written specifically for the program. (see article at Wikipedia) http://stackoverflow.com/questions/359732/why-is-it-considered-a-bad-practice-to-omit-curly-braces Comment by Vanuan on Why is it considered a bad practice to omit curly braces? Vanuan 2009-06-19T19:57:58Z 2009-06-19T19:57:58Z Use Python and forget about this :) http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/3264#3264 Comment by Vanuan on What is the single most influential book every programmer should read? Vanuan 2009-06-17T22:38:29Z 2009-06-17T22:38:29Z Someone should link images to the top answers and delete this. http://stackoverflow.com/questions/993431/are-software-engineering-and-software-development-the-same/993484#993484 Comment by Vanuan on Are software engineering and software development the same? Vanuan 2009-06-14T19:46:48Z 2009-06-14T19:46:48Z I'm not asking about CS. http://stackoverflow.com/questions/930611/working-with-very-large-integers-in-c/930638#930638 Comment by Vanuan on working with very large integers in c# Vanuan 2009-05-31T09:24:26Z 2009-05-31T09:24:26Z I've realized that it is similar to creating new integer type. You need to implement basic operations such as multyplication. It could be waste of space to store 1 decimal digit into byte. But you can use a bit array (the BitArray class for example). There is some basic code <a href="http://www.daniweb.com/code/snippet233.html" rel="nofollow">daniweb.com/code/snippet233.html</a> Hope it helps. http://stackoverflow.com/questions/904592/what-ide-is-needed-to-develop-a-first-time-simple-windows-application/904608#904608 Comment by Vanuan on What IDE is needed to develop a first time simple Windows application? Vanuan 2009-05-24T21:15:06Z 2009-05-24T21:15:06Z .NET Framework is a platform (&quot;framework&quot;). VB.NET is one of the languages implenenred on this platform. The example I've posted is written in C# (csharp) - another language from Microsoft. The csharp compiler is shipped with .NET Framework which can be downloaded from Microsoft website. You need Emonic and nant (see details <a href="http://www.ibm.com/developerworks/library/os-eclipse-migratenetvs/index.html" rel="nofollow">ibm.com/developerworks/library/&hellip;</a>) http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/79600#79600 Comment by Vanuan on What is the single most influential book every programmer should read? Vanuan 2009-05-09T12:45:16Z 2009-05-09T12:45:16Z Maybe because it is already mentioned? <a href="http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1729#1729" rel="nofollow" title="what is the single most influential book every programmer should read">stackoverflow.com/questions/1711/&hellip;</a> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/67521#67521 Comment by Vanuan on What is the single most influential book every programmer should read? Vanuan 2009-05-09T12:40:40Z 2009-05-09T12:40:40Z Yes. It was mentioned http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/28175#28175 Comment by Vanuan on What is the single most influential book every programmer should read? Vanuan 2009-05-09T12:37:37Z 2009-05-09T12:37:37Z already mentioned http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/838662#838662 Comment by Vanuan on What is the single most influential book every programmer should read? Vanuan 2009-05-09T12:30:53Z 2009-05-09T12:30:53Z Already proposed http://stackoverflow.com/questions/834177/foolproof-trial-strategy/834225#834225 Comment by Vanuan on Foolproof trial strategy Vanuan 2009-05-09T11:43:38Z 2009-05-09T11:43:38Z I think it amounts to &quot;how can I let someone run the code but not let them copy or modify it&quot;.