Skip to content

Commit 95e9c36

Browse files
General Project Update
- Mention support for VS Code (Closes stlink-org#1057) - Compilation with GCC 11 fails (Closes stlink-org#1077) - Updated list of contributors - Updated CHANGELOG.md
1 parent adbc18c commit 95e9c36

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ Fixes:
4040
* st-util: wrong register values passed to gdb (st-link v2) ([#1002](https://github.com/stlink-org/stlink/pull/1002), [#1011](https://github.com/stlink-org/stlink/pull/1011), [#1026](https://github.com/stlink-org/stlink/pull/1026), [#1027](https://github.com/stlink-org/stlink/pull/1027))
4141
* [doc] Fixed wrong path for rules.d folder ([#1020](https://github.com/stlink-org/stlink/pull/1020))
4242
* Use vl flashloader for all STM32F1 series ([#1041](https://github.com/stlink-org/stlink/pull/1041), [#1044](https://github.com/stlink-org/stlink/pull/1044))
43+
* Fixed gettimeofday for MSVC ([#1074](https://github.com/stlink-org/stlink/pull/1074))
44+
* Fixed compilation with GCC 11 ([#1077](https://github.com/stlink-org/stlink/pull/1077))
4345

4446

4547
v1.6.1

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ On the user level there is no difference in handling or operation between these
4242

4343
The STlink toolset includes:
4444

45-
* a communication library (libstlink.a),
46-
* a programmer and chip information tool (st-info),
47-
* a flash manipulation tool (st-flash),
48-
* a GDB server (st-util) and
49-
* a GUI-Interface (stlink-gui) _[optional]_
45+
* `libstlink` - a communication library
46+
* `st-info` - a programmer and chip information tool
47+
* `st-flash` - a flash manipulation tool
48+
* `st-util` - a GDB server (supported in Visual Studio Code / VSCodium via the [Cortex-Debug](https://github.com/Marus/cortex-debug) plugin
49+
* `stlink-gui` - a GUI-Interface [optional]_
5050

5151

5252
## Supported operating systems and hardware combinations
@@ -58,6 +58,7 @@ Supported operating systems are listed in [version_support.md](doc/version_suppo
5858
The `stlink` toolset continues to maintain backwards compatibility with the **STLINK/v1** programmer.<br />
5959
Please note that on macOS this support is limited to versions 10.13 - 10.15.
6060

61+
6162
## Tutorial & HOWTO
6263

6364
Our [tutorial](doc/tutorial.md) may help you along with some advanced tasks and additional info.

contributors.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ Jim Paris
6464
Jiří Netolický
6565
Jerry Nosky [jnosky]
6666
Jochen Wilhelmy [Jochen0x90h]
67+
John Hall [simplerobot]
6768
Joel Bodenmann [Tectu]
6869
Johannes Taelman
6970
Jonas Danielsson

src/st-util/gdb-server.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
static stlink_t *connected_stlink = NULL;
4444
static bool semihosting = false;
4545
static bool serial_specified = false;
46-
static char serialnumber[28] = {0};
46+
static char serialnumber[STLINK_SERIAL_MAX_SIZE] = {0};
4747

4848
#if defined(_WIN32)
4949
#define close_socket win32_close_socket

0 commit comments

Comments
 (0)