Skip to content

Commit

Permalink
Added reference for new release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
solariun committed Mar 9, 2022
1 parent 0bf0f0a commit 174e224
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ What is AtomicX? AtomicX is a general purpose **cooperative** thread lib for emb

## Implementations from Work on progress

## Version 1.3.0

* NOW, I am thrilled to announce that AtomicX have `send` and `receive` functions that enables data transferring between two or more threads, allowing real client / server application strategy inside embedded and non-embedded application, this way, small MCUs can be used to easily transport stack data (which is protected in this thread system) to other thread.

* Ported and enhanced the DotMatrix project, it implements a full Dot Led Matrix scrolling text system with
Expand Down
4 changes: 2 additions & 2 deletions atomicx/atomicx.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include <string.h>

/* Official version */
#define ATOMICX_VERSION "1.2.1"
#define ATOMICX_VERSION "1.3.0"
#define ATOMIC_VERSION_LABEL "AtomicX v" ATOMICX_VERSION " built at " __TIMESTAMP__

using atomicx_time = uint32_t;
Expand Down Expand Up @@ -1751,7 +1751,7 @@ namespace thread

return timeout.IsTimedout () ? 0 : nReceivedLen;
}

/**
* PROTECTED METHODS, THOSE WILL BE ONLY ACCESSIBLE BY THE THREAD ITSELF
*/
Expand Down

0 comments on commit 174e224

Please # to comment.