Skip to content

Commit

Permalink
General Project Update
Browse files Browse the repository at this point in the history
- Mention support for VS Code (Closes #1057)
- Compilation with GCC 11 fails (Closes #1077)
- Updated list of contributors
- Updated CHANGELOG.md
  • Loading branch information
Nightwalker-87 committed Dec 12, 2020
1 parent adbc18c commit 95e9c36
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ Fixes:
* 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))
* [doc] Fixed wrong path for rules.d folder ([#1020](https://github.com/stlink-org/stlink/pull/1020))
* 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))
* Fixed gettimeofday for MSVC ([#1074](https://github.com/stlink-org/stlink/pull/1074))
* Fixed compilation with GCC 11 ([#1077](https://github.com/stlink-org/stlink/pull/1077))


v1.6.1
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ On the user level there is no difference in handling or operation between these

The STlink toolset includes:

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


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


## Tutorial & HOWTO

Our [tutorial](doc/tutorial.md) may help you along with some advanced tasks and additional info.
Expand Down
1 change: 1 addition & 0 deletions contributors.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ Jim Paris
Jiří Netolický
Jerry Nosky [jnosky]
Jochen Wilhelmy [Jochen0x90h]
John Hall [simplerobot]
Joel Bodenmann [Tectu]
Johannes Taelman
Jonas Danielsson
Expand Down
2 changes: 1 addition & 1 deletion src/st-util/gdb-server.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
static stlink_t *connected_stlink = NULL;
static bool semihosting = false;
static bool serial_specified = false;
static char serialnumber[28] = {0};
static char serialnumber[STLINK_SERIAL_MAX_SIZE] = {0};

#if defined(_WIN32)
#define close_socket win32_close_socket
Expand Down

0 comments on commit 95e9c36

Please sign in to comment.