Skip to content

Commit 73ec7b7

Browse files
author
Memfault Inc
committed
Memfault Firmware SDK 1.1.1 (Build 2709)
1 parent a1e2c82 commit 73ec7b7

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
### Changes between Memfault SDK 1.1.0 and 1.1.1 - June 30, 2023
2+
3+
#### :chart_with_upwards_trend: Improvements
4+
5+
- Reduce the amount of error logs emitted by the MbedTLS port HTTP client while
6+
polling for session established. This regressed in SDK version 1.1.0.
7+
18
### Changes between Memfault SDK 1.0.1 and 1.1.0 - June 29, 2023
29

310
#### :chart_with_upwards_trend: Improvements

VERSION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
BUILD ID: 2706
2-
GIT COMMIT: 81c373788
1+
BUILD ID: 2709
2+
GIT COMMIT: c403952a4

components/include/memfault/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ typedef struct {
1919
uint8_t patch;
2020
} sMfltSdkVersion;
2121

22-
#define MEMFAULT_SDK_VERSION { .major = 1, .minor = 1, .patch = 0 }
22+
#define MEMFAULT_SDK_VERSION { .major = 1, .minor = 1, .patch = 1 }
2323

2424
#ifdef __cplusplus
2525
}

ports/mbedtls/memfault_platform_http_client.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,11 +189,11 @@ sMfltHttpClient *memfault_platform_http_client_create(void) {
189189
break;
190190
}
191191

192-
MEMFAULT_LOG_ERROR("mbedtls_ssl_handshake returned -0x%x\n", -ret);
193192
if ((ret == MBEDTLS_ERR_SSL_WANT_READ) || (ret == MBEDTLS_ERR_SSL_WANT_WRITE)) {
194193
continue;
195194
} else {
196195
// all other errors are fatal
196+
MEMFAULT_LOG_ERROR("mbedtls_ssl_handshake returned -0x%x\n", -ret);
197197
goto cleanup;
198198
}
199199
} while (1);

0 commit comments

Comments
 (0)