Refs #516, #518. Corrected typo in printf-statement for XCP Timeout T7 (BootCommander) and removed call to XcpLoaderStop() from XcpLoaderTerminate() (LibOpenBLT).

git-svn-id: https://svn.code.sf.net/p/openblt/code/trunk@467 5dc33758-31d5-4daf-9ae8-b24bf3d40d73
This commit is contained in:
Frank Voorburg 2018-04-05 09:55:39 +00:00
parent da4319508b
commit b9dbc2da03
4 changed files with 1 additions and 3 deletions

Binary file not shown.

View File

@ -567,7 +567,7 @@ static void DisplaySessionInfo(uint32_t sessionType, void const * sessionSetting
printf(" -> Timeout T3: %hu ms\n", xcpSettings->timeoutT3);
printf(" -> Timeout T4: %hu ms\n", xcpSettings->timeoutT4);
printf(" -> Timeout T5: %hu ms\n", xcpSettings->timeoutT5);
printf(" -> Timeout T6: %hu ms\n", xcpSettings->timeoutT7);
printf(" -> Timeout T7: %hu ms\n", xcpSettings->timeoutT7);
printf(" -> Seed/Key file: ");
if (xcpSettings->seedKeyFile != NULL)
{

View File

@ -229,8 +229,6 @@ static void XcpLoaderTerminate(void)
/* Only continue with a valid transport layer. */
if (xcpSettings.transport != NULL) /*lint !e774 */
{
/* Stop the session. */
XcpLoaderStop();
/* Terminate the transport layer. */
xcpSettings.transport->Terminate();
/* Unlink the transport layer. */

Binary file not shown.