Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions changelog/v2.17.10/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<p align="center">
<img src="http://www.mikroe.com/img/designs/beta/logo_small.png?raw=true" alt="MikroElektronika"/>
</p>

---

**[BACK TO MAIN FILE](../../changelog.md)**

---

# `v2.17.10`

+ released: 2026-03-05

## Changes

- [`v2.17.10`](#v21710)
- [Changes](#changes)
- [Fixes](#fixes)
- [mikroSDK](#mikrosdk)
- [NEW HARDWARE](#new-hardware)

### Fixes

#### mikroSDK

+ Removed optimization for sprint functions across all Renesas MCUs to ensure compatibility with the SEGGER J-Link debugger
+ Previously, the applied optimization level prevented proper debugging with the SEGGER J-Link programmer

### NEW HARDWARE

> NOTE:
>> If any new hardware was added to current version, it will be listed here.

---

**[BACK TO MAIN FILE](../../changelog.md)**

---
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"display-name": "mikroSDK",
"description": "MikroSDK 2.0 is an embedded software development framework designed to simplify and accelerate application development on Mikroe hardware platform, specifically for Click Boards and other extension board drivers, on a broad range of microcontroller vendors and architectures. It includes peripheral libraries and drivers, middleware, board support, and application layer libraries among others.",
"icon": "images/icon-mikroSDK.png",
"manifest-version": "1.0.44"
"manifest-version": "1.0.45"
}
2 changes: 1 addition & 1 deletion platform/mikrosdk_version/include/mikrosdk_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ extern "C"{
* @note changes in patch version indicate smaller updates,
* bug fixes and improvements
*/
#define mikroSDK_PATCH_VERSION 9
#define mikroSDK_PATCH_VERSION 10

/**
* @brief mikroSDK_GET_VERSION
Expand Down
6 changes: 6 additions & 0 deletions platform/sprint/lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ target_include_directories(lib_sprint
$<INSTALL_INTERFACE:include/platform>
)

# Workaround for Segger support for Renesas
if (${MCU_NAME} MATCHES "^R7FA.+")
set_source_files_properties(src/sprint.c
PROPERTIES COMPILE_FLAGS "-g0")
endif()

mikrosdk_install(MikroSDK.Sprint)
install_headers(${CMAKE_INSTALL_PREFIX}/include/platform MikroSDK.Sprint include/sprint.h)