diff options
-rw-r--r-- | docs/2-Installation.md | 2 | ||||
-rw-r--r-- | src/diagnostic/diagnostic-manager.cpp | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/docs/2-Installation.md b/docs/2-Installation.md index 595d11e0..784a0623 100644 --- a/docs/2-Installation.md +++ b/docs/2-Installation.md @@ -160,7 +160,7 @@ Execute the following commands from this repository: ```bash $ cd $WD -$ git clone https://github.com/iotbzh/CAN_signaling +$ git clone https://github.com/iotbzh/CAN_signaling -b v1.0 $ cd CAN_signaling $ git submodule init $ git submodule update diff --git a/src/diagnostic/diagnostic-manager.cpp b/src/diagnostic/diagnostic-manager.cpp index fcfd1994..d236160b 100644 --- a/src/diagnostic/diagnostic-manager.cpp +++ b/src/diagnostic/diagnostic-manager.cpp @@ -411,7 +411,8 @@ bool diagnostic_manager_t::conflicting(active_diagnostic_request_t* request, act } -/// @brief Returns true if there are no other active requests to the same arbitration ID. +/// @brief Returns true if there are no other active requests to the same arbitration ID +/// and if there aren't more than 8 requests in flight at the same time. bool diagnostic_manager_t::clear_to_send(active_diagnostic_request_t* request) const { int total_in_flight = 0; |