Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: EdDev/cppplay
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: EdDev/cppplay
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: high_rate_char_stream_request
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 5 files changed
  • 1 contributor

Commits on Nov 14, 2014

  1. Char Stream Request - Optimized for high rate

    Receive a stream of characters (ASCII), accumulate them and
    provide the means to output them in an acceding sorted manner.
    
    Limitations:
    - Sorted based on the ASCII table, no special care has been done to handle upper and lower characters.
    - It can accumulate between 2^(sizeof(int)) to 256 * (2^(sizeof(int))) characters.
    
    Note: It is up to the application that uses this module to specify how many characters to recv
          until a print is performed, followed by a clear to reset the data.
    EdDev committed Nov 14, 2014
    Configuration menu
    Copy the full SHA
    6e4f939 View commit details
    Browse the repository at this point in the history
Loading