You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by GitBox <gi...@apache.org> on 2021/04/16 21:00:52 UTC

[GitHub] [mynewt-core] kasjer opened a new pull request #2570: stm32/hal_uart: Fix blocking write

kasjer opened a new pull request #2570:
URL: https://github.com/apache/mynewt-core/pull/2570


   Function hal_uart_blocking_tx() had incorrect condition
   checking if UART is open, this prevented non-blocking writes.
   
   Condition:
       if (!u || u->u_open)
   was obviously wrong and is now changed to
       if (!u || !u->u_open)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [mynewt-core] kasjer merged pull request #2570: stm32/hal_uart: Fix blocking write

Posted by GitBox <gi...@apache.org>.
kasjer merged pull request #2570:
URL: https://github.com/apache/mynewt-core/pull/2570


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [mynewt-core] apache-mynewt-bot commented on pull request #2570: stm32/hal_uart: Fix blocking write

Posted by GitBox <gi...@apache.org>.
apache-mynewt-bot commented on pull request #2570:
URL: https://github.com/apache/mynewt-core/pull/2570#issuecomment-821724529


   
   <!-- style-bot -->
   
   ## Style check summary
   
   #### No suggestions at this time!
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org