Skip to content

Commit 89b3e4e

Browse files
authored
Merge pull request #419 from MikroElektronika/new-feature/boards/0508
Merge branch new-feature/boards/0508 into master
2 parents af27209 + 5b657f5 commit 89b3e4e

File tree

5 files changed

+110
-6
lines changed

5 files changed

+110
-6
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
if(${_MSDK_BOARD_NAME_} STREQUAL "NUCLEO_144_WITH_STM32H755ZI_MCU")
2+
set(BOARD_PATH "include/boards/board_nucleo_144_with_stm32h755zi")
3+
set(MCU_CARD FALSE)
4+
set(SHIELD FALSE)
5+
set(DIP_SOCKET FALSE)
6+
endif()
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
/****************************************************************************
2+
**
3+
** Copyright (C) ${COPYRIGHT_YEAR} MikroElektronika d.o.o.
4+
** Contact: https://www.mikroe.com/contact
5+
**
6+
** This file is part of the mikroSDK package
7+
**
8+
** Commercial License Usage
9+
**
10+
** Licensees holding valid commercial NECTO compilers AI licenses may use this
11+
** file in accordance with the commercial license agreement provided with the
12+
** Software or, alternatively, in accordance with the terms contained in
13+
** a written agreement between you and The MikroElektronika Company.
14+
** For licensing terms and conditions see
15+
** https://www.mikroe.com/legal/software-license-agreement.
16+
** For further information use the contact form at
17+
** https://www.mikroe.com/contact.
18+
**
19+
**
20+
** GNU Lesser General Public License Usage
21+
**
22+
** Alternatively, this file may be used for
23+
** non-commercial projects under the terms of the GNU Lesser
24+
** General Public License version 3 as published by the Free Software
25+
** Foundation: https://www.gnu.org/licenses/lgpl-3.0.html.
26+
**
27+
** The above copyright notice and this permission notice shall be
28+
** included in all copies or substantial portions of the Software.
29+
**
30+
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
31+
** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
32+
** OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
33+
** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
34+
** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
35+
** OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
36+
** OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
37+
**
38+
****************************************************************************/
39+
/*!
40+
* @file board.h
41+
* @brief Main board pin mapping.
42+
*/
43+
44+
#ifndef _BOARD_H_
45+
#define _BOARD_H_
46+
47+
#ifdef __cplusplus
48+
extern "C"
49+
{
50+
#endif
51+
52+
#define BOARD_NAME "Nucleo 144 with STM32H755ZI MCU"
53+
54+
// Mapping
55+
// Only Bare Metal support is available at the moment
56+
57+
#ifdef __cplusplus
58+
}
59+
#endif
60+
61+
#endif // _BOARD_H_
62+
// ------------------------------------------------------------------------- END

changelog/v2.14.6/new_hw/2025-08-05.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
<p align="center">
32
<img src="http://www.mikroe.com/img/designs/beta/logo_small.png?raw=true" alt="MikroElektronika"/>
43
</p>
@@ -15,14 +14,13 @@
1514

1615
- [2025-08-05](#2025-08-05)
1716
- [Changes](#changes)
18-
+ [Improvements](#improvements)
17+
- [NEW HARDWARE](#new-hardware)
1918

20-
### Improvements
19+
### NEW HARDWARE
2120

22-
Preconfigured Clock settings added for following hardware:
21+
Support added for following hardware:
2322

24-
+ [Discovery kit with STM32L496AG MCU](https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-discovery-kits/32l496gdiscovery.html)
25-
+ 80 MHz Clock using internal oscillator
23+
+ [Nucleo 144 with STM32H755ZI MCU](https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-h755zi-q.html)
2624

2725
---
2826

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"uid": "NUCLEO_144_WITH_STM32H755ZI_MCU",
3+
"name": "Nucleo 144 with STM32H755ZI MCU",
4+
"icon": "images/boards/board-nucleo-144.png",
5+
"default_device": "",
6+
"soldered_device": "STM32H755ZI",
7+
"category": "Development Systems",
8+
"mikrobus_count": 0,
9+
"sort_order": 6,
10+
"min_pin_count": 0,
11+
"display_socket": "NO_DISPLAY",
12+
"sdk_config": "{\"_MSDK_BOARD_NAME_\":\"NUCLEO_144_WITH_STM32H755ZI_MCU\"}",
13+
"necto_config": "",
14+
"display": "NO_DISPLAY",
15+
"package_uid": "144/LQFP"
16+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"board_uid": "NUCLEO_144_WITH_STM32H755ZI_MCU",
3+
"tables": [
4+
{
5+
"BoardToDevice": {
6+
"device_uid": "STM32H755ZI"
7+
}
8+
},
9+
{
10+
"BoardToSocket": {
11+
"socket_uid": [
12+
"NONE"
13+
]
14+
}
15+
},
16+
{
17+
"SDKToBoard": {
18+
"sdk_uid": "2.14.6+"
19+
}
20+
}
21+
]
22+
}

0 commit comments

Comments
 (0)