<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/uart32/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/uart32/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Wed, 25 Oct 2017 18:20:08 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/uart32/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by Bill Moore</title><link>https://sourceforge.net/p/uart32/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v9
+++ v10
@@ -4,7 +4,7 @@

 This library works great for accessing a UART serial port from a background worker thread.  It features:

-* a simple c++ class. (temporarily removed for maintainance. Use C++ DLL API Instead)
+* a simple c++ class. (temporarily removed for maintainance. Use DLL API Instead)
 * built in per access timeout on data receive.
 * a C-API wrapper that is exportable to a DLL
 * C# DLL import class
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bill Moore</dc:creator><pubDate>Wed, 25 Oct 2017 18:20:08 -0000</pubDate><guid>https://sourceforge.net5b56dfc3f8a2b36cd7844571100c6ff251d41cdf</guid></item><item><title>Home modified by Bill Moore</title><link>https://sourceforge.net/p/uart32/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v8
+++ v9
@@ -4,7 +4,7 @@

 This library works great for accessing a UART serial port from a background worker thread.  It features:

-* a simple c++ class. 
+* a simple c++ class. (temporarily removed for maintainance. Use C++ DLL API Instead)
 * built in per access timeout on data receive.
 * a C-API wrapper that is exportable to a DLL
 * C# DLL import class
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bill Moore</dc:creator><pubDate>Wed, 25 Oct 2017 18:19:11 -0000</pubDate><guid>https://sourceforge.netacc3e24c0a71b716ee6bbc67cbd25473ae43a07c</guid></item><item><title>Home modified by Bill Moore</title><link>https://sourceforge.net/p/uart32/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v7
+++ v8
@@ -19,7 +19,7 @@
 If there are any API additions or modification that you would like added to the library, feel free to write a ticket at the side and include any source code examples as necessary.

 **Contactor for Hire**
-If you are a company and you need modifications to the source code to address a specific tasks or issues,  I'm available for contracting as well.  Just open a ticket on the side with your request. The only requirement is that paid changes to the source code will remain in the public domain on source forge.  The reason for this is that Uarts are a fundamental building block for electronic hobbist and its imported for a new generation to have access to these types of libraries so they can focus on their problems of the day rather than reinventing the wheel.
+If you are a company and you need modifications to the source code to address a specific tasks or issues,  I'm available for contracting as well.  Just open a ticket on the side with your request. The only requirement is that paid changes to the source code will remain in the public domain on source forge.  The reason for this is that Uarts are a fundamental building block for electronic hobbist and its imported for a new generation to have access to these types of libraries so they can focus on the problems of the day rather than reinventing the wheel.

 [[members limit=20]]
 [[download_button]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bill Moore</dc:creator><pubDate>Wed, 25 Oct 2017 12:59:02 -0000</pubDate><guid>https://sourceforge.net07e772bba3fd2017005735a768575e3e7e8c3df1</guid></item><item><title>Home modified by Bill Moore</title><link>https://sourceforge.net/p/uart32/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v6
+++ v7
@@ -12,9 +12,14 @@

 This library was built using the Code::Blocks 16.01 Mingw compiler on Windows, and it was tested using an FTDI USB-UART dongle. 

+Also included is a companion Verilog Core for embedding in an FPGA environment similar to what you might find on opencores that can talk directly with the Uart32 library.  This is a verilog core that I wrote years ago while in between jobs.  
+
 **Suggestions welcome**

 If there are any API additions or modification that you would like added to the library, feel free to write a ticket at the side and include any source code examples as necessary.

+**Contactor for Hire**
+If you are a company and you need modifications to the source code to address a specific tasks or issues,  I'm available for contracting as well.  Just open a ticket on the side with your request. The only requirement is that paid changes to the source code will remain in the public domain on source forge.  The reason for this is that Uarts are a fundamental building block for electronic hobbist and its imported for a new generation to have access to these types of libraries so they can focus on their problems of the day rather than reinventing the wheel.
+
 [[members limit=20]]
 [[download_button]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bill Moore</dc:creator><pubDate>Wed, 25 Oct 2017 12:56:49 -0000</pubDate><guid>https://sourceforge.netc9608bd7fe957802f2937f9950c6fbb887d04073</guid></item><item><title>Home modified by Bill Moore</title><link>https://sourceforge.net/p/uart32/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v5
+++ v6
@@ -8,7 +8,7 @@
 * built in per access timeout on data receive.
 * a C-API wrapper that is exportable to a DLL
 * C# DLL import class
-* Special care was taken to make sure that the header file for the uart32 library doesn't include "window.h".  This makes the library ideal for console mode c/c++ applications, as well as GUI mode applications.  (Just explaining why the some of the windows handles are converted into void* pointers and other container wierdness if you look at the source code.)
+* Special care was taken to make sure that the header file for the uart32 library doesn't include "window.h".  This makes the library ideal for console mode c/c++ applications, in addition to GUI mode applications.  (If you look at the source code, I'm just explaining why some of the windows handles are converted into void* pointers and other container wierdness).

 This library was built using the Code::Blocks 16.01 Mingw compiler on Windows, and it was tested using an FTDI USB-UART dongle. 

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bill Moore</dc:creator><pubDate>Wed, 25 Oct 2017 07:07:10 -0000</pubDate><guid>https://sourceforge.net872892126a491994e3c61201f3ac1a206c6c3fa7</guid></item><item><title>Home modified by Bill Moore</title><link>https://sourceforge.net/p/uart32/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -4,10 +4,11 @@

 This library works great for accessing a UART serial port from a background worker thread.  It features:

-* a simple c++ class
+* a simple c++ class. 
 * built in per access timeout on data receive.
 * a C-API wrapper that is exportable to a DLL
 * C# DLL import class
+* Special care was taken to make sure that the header file for the uart32 library doesn't include "window.h".  This makes the library ideal for console mode c/c++ applications, as well as GUI mode applications.  (Just explaining why the some of the windows handles are converted into void* pointers and other container wierdness if you look at the source code.)

 This library was built using the Code::Blocks 16.01 Mingw compiler on Windows, and it was tested using an FTDI USB-UART dongle. 

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bill Moore</dc:creator><pubDate>Wed, 25 Oct 2017 07:05:44 -0000</pubDate><guid>https://sourceforge.net6077ccc6ba9808051b066c421b49d8551f5f38e0</guid></item><item><title>Home modified by Bill Moore</title><link>https://sourceforge.net/p/uart32/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -9,7 +9,7 @@
 * a C-API wrapper that is exportable to a DLL
 * C# DLL import class

-This library was tested using an FTDI USB-UART dongle.  
+This library was built using the Code::Blocks 16.01 Mingw compiler on Windows, and it was tested using an FTDI USB-UART dongle. 

 **Suggestions welcome**

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bill Moore</dc:creator><pubDate>Wed, 25 Oct 2017 06:55:31 -0000</pubDate><guid>https://sourceforge.net29a8481d60d477aa1efc087e3bb8b189806f8f5a</guid></item><item><title>Home modified by Bill Moore</title><link>https://sourceforge.net/p/uart32/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -2,7 +2,7 @@

 Uart32 is a C++ wrapper around the win32 Serial Port API that allows blocking-mode access to the COM port. 

-This library work great for accessing a UART serial port from a background worker thread.  It features:
+This library works great for accessing a UART serial port from a background worker thread.  It features:

 * a simple c++ class
 * built in per access timeout on data receive.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bill Moore</dc:creator><pubDate>Wed, 25 Oct 2017 06:52:30 -0000</pubDate><guid>https://sourceforge.net123aae823b077a1a9eeb43ddf6ee1d852a8702f0</guid></item><item><title>Home modified by Bill Moore</title><link>https://sourceforge.net/p/uart32/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,8 +1,19 @@
-Welcome to your wiki!
+**Welcome to the Uart32 Library:**

-This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
+Uart32 is a C++ wrapper around the win32 Serial Port API that allows blocking-mode access to the COM port. 

-The wiki uses [Markdown](/p/uart32/wiki/markdown_syntax/) syntax.
+This library work great for accessing a UART serial port from a background worker thread.  It features:
+
+* a simple c++ class
+* built in per access timeout on data receive.
+* a C-API wrapper that is exportable to a DLL
+* C# DLL import class
+
+This library was tested using an FTDI USB-UART dongle.  
+
+**Suggestions welcome**
+
+If there are any API additions or modification that you would like added to the library, feel free to write a ticket at the side and include any source code examples as necessary.

 [[members limit=20]]
 [[download_button]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bill Moore</dc:creator><pubDate>Wed, 25 Oct 2017 06:46:25 -0000</pubDate><guid>https://sourceforge.netd35093481ae3ca1da3f6afa5803bd13f45b67d5f</guid></item><item><title>Home modified by Bill Moore</title><link>https://sourceforge.net/p/uart32/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/uart32/wiki/markdown_syntax/"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;
	&lt;ul class="md-users-list"&gt;
		&lt;li&gt;&lt;a href="/u/wm2017email/"&gt;Bill Moore&lt;/a&gt; (admin)&lt;/li&gt;
		
	&lt;/ul&gt;&lt;br/&gt;
&lt;p&gt;&lt;span class="download-button-59f030fb2cd8103bf04c5d6e" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bill Moore</dc:creator><pubDate>Wed, 25 Oct 2017 06:36:44 -0000</pubDate><guid>https://sourceforge.netb0c5bb7b391f8fcd64eeadbbdb3df594b855db7d</guid></item></channel></rss>