forked from knolleary/pubsubclient
    
        
        - 
                Notifications
    
You must be signed in to change notification settings  - Fork 4
 
[PubSubClient3] Speedup publish large messages using buffer #59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
          
     Merged
      
      
    
  
     Merged
                    Changes from 18 commits
      Commits
    
    
            Show all changes
          
          
            19 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      786247a
              
                [PubSubClient3] Speedup publish large messages using buffer
              
              
                TD-er f099948
              
                fix lint errors
              
              
                hmueller01 c8379c7
              
                change _bufferWritePos from int to size_t to fix compiler error
              
              
                hmueller01 ff4b884
              
                Merge branch 'master' into feature/optimize_large_publish
              
              
                hmueller01 19681bb
              
                renamed parameter data to buf to adjust to other functions
              
              
                hmueller01 df05c95
              
                renamed parameter data to buf to adjust to other functions, added fun…
              
              
                hmueller01 44e19b1
              
                lastOutActivity is ony updated if data are really send, do not ping a…
              
              
                hmueller01 4dfc310
              
                do increment of _bufferWritePos inline
              
              
                hmueller01 2d3b2f8
              
                check that all data are written to the client
              
              
                hmueller01 390fd7b
              
                implement write_P() solves #36
              
              
                hmueller01 7a965a7
              
                handle return value of flushBuffer() in endPublish()
              
              
                hmueller01 300e6e2
              
                do not use prog_uint8_t (only in compat env defined)
              
              
                hmueller01 d146618
              
                do not set lastOutActivity after calls to write() (will automatically…
              
              
                hmueller01 40fe6e4
              
                implement MQTT_MAX_TRANSFER_SIZE in flushBuffer()
              
              
                hmueller01 5b2c586
              
                refactoring to avoid double implementation of client write methods by…
              
              
                hmueller01 99f9ce9
              
                updated comments of write functions return values
              
              
                hmueller01 2aea3d9
              
                Merge branch 'master' into feature/optimize_large_publish
              
              
                hmueller01 98ef237
              
                use brackets around if && clauses for better clarity
              
              
                hmueller01 d98429e
              
                added test_publish_long()
              
              
                hmueller01 File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also the sum before the compare...