Skip to content

Commit

Permalink
Merge pull request #136 from MikroElektronika/new-feature/mcus/14
Browse files Browse the repository at this point in the history
Merge branch new-feature/mcus/14 into main
  • Loading branch information
IvanRuzavin authored Oct 24, 2024
2 parents eded3ed + c41c060 commit 15cd3ed
Show file tree
Hide file tree
Showing 17 changed files with 21,346 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ARM/gcc_clang/cmake/stm/delays/stm32wle4cc_j8.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
if(${MCU_NAME} MATCHES "^STM32WLE4CC$|^STM32WLE4J8$")
list(APPEND local_list_macros "getClockValue(_clock) (_clock/1000UL/6)")
endif()
5 changes: 5 additions & 0 deletions ARM/gcc_clang/cmake/stm/stm32wle4cc_j8.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
if(${MCU_NAME} MATCHES "^STM32WLE4CC$|^STM32WLE4J8$")
set(${linkerScript} linker_scripts/${vendor}/${mcu_match}.ld PARENT_SCOPE)
set(${startupFile} startup/${vendor}/${mcu_match}.s PARENT_SCOPE)
list(APPEND local_list_include system/src/stm/doc_ds_192/init_clock.c)
endif()
6 changes: 6 additions & 0 deletions ARM/gcc_clang/def/STM32WLE4CC.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"core": "M4",
"delay_src_path": "delays/m4/__lib_delays.c",
"mcu": "STM32WLE4CC",
"clock": 1
}
6 changes: 6 additions & 0 deletions ARM/gcc_clang/def/STM32WLE4J8.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"core": "M4",
"delay_src_path": "delays/m4/__lib_delays.c",
"mcu": "STM32WLE4J8",
"clock": 1
}
9,860 changes: 9,860 additions & 0 deletions ARM/gcc_clang/def/stm/STM32WLE4CC/mcu.h

Large diffs are not rendered by default.

9,860 changes: 9,860 additions & 0 deletions ARM/gcc_clang/def/stm/STM32WLE4J8/mcu.h

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
/****************************************************************************
**
** Copyright (C) 2024 MikroElektronika d.o.o.
** Contact: https://www.mikroe.com/contact
**
** This file is part of the mikroSDK package
**
** Commercial License Usage
**
** Licensees holding valid commercial NECTO compilers AI licenses may use this
** file in accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The MikroElektronika Company.
** For licensing terms and conditions see
** https://www.mikroe.com/legal/software-license-agreement.
** For further information use the contact form at
** https://www.mikroe.com/contact.
**
**
** GNU Lesser General Public License Usage
**
** Alternatively, this file may be used for
** non-commercial projects under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation: https://www.gnu.org/licenses/lgpl-3.0.html.
**
** The above copyright notice and this permission notice shall be
** included in all copies or substantial portions of the Software.
**
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
** OF MERCHANTABILITY, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
** TO THE WARRANTIES FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
** OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
** OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
**
****************************************************************************/
/*!
* @file interrupts_mcu.h
* @brief STM32WLE4CC MCU specific interrupt per module definitions.
*/

#ifndef _INTERRUPTS_MCU_H_
#define _INTERRUPTS_MCU_H_

// Interrupt table
static const int INTERRUPTS_NONMASKABLEINT = 2;
static const int INTERRUPTS_HARDFAULT = 3;
static const int INTERRUPTS_MEMORYMANAGEMENT = 4;
static const int INTERRUPTS_BUSFAULT = 5;
static const int INTERRUPTS_USAGEFAULT = 6;
static const int INTERRUPTS_SVCALL = 11;
static const int INTERRUPTS_DEBUGMONITOR = 12;
static const int INTERRUPTS_PENDSV = 14;
static const int INTERRUPTS_SYSTICK = 15;
static const int INTERRUPTS_WWDG = 16;
static const int INTERRUPTS_PVD_PVM = 17;
static const int INTERRUPTS_TAMP_STAMP_LSECSS_SSRU = 18;
static const int INTERRUPTS_RTC_WKUP = 19;
static const int INTERRUPTS_FLASH = 20;
static const int INTERRUPTS_RCC = 21;
static const int INTERRUPTS_EXTI0 = 22;
static const int INTERRUPTS_EXTI1 = 23;
static const int INTERRUPTS_EXTI2 = 24;
static const int INTERRUPTS_EXTI3 = 25;
static const int INTERRUPTS_EXTI4 = 26;
static const int INTERRUPTS_DMA1_CHANNEL1 = 27;
static const int INTERRUPTS_DMA1_CHANNEL2 = 28;
static const int INTERRUPTS_DMA1_CHANNEL3 = 29;
static const int INTERRUPTS_DMA1_CHANNEL4 = 30;
static const int INTERRUPTS_DMA1_CHANNEL5 = 31;
static const int INTERRUPTS_DMA1_CHANNEL6 = 32;
static const int INTERRUPTS_DMA1_CHANNEL7 = 33;
static const int INTERRUPTS_ADC = 34;
static const int INTERRUPTS_DAC = 35;
static const int INTERRUPTS_COMP = 37;
static const int INTERRUPTS_EXTI9_5 = 38;
static const int INTERRUPTS_TIM1_BRK = 39;
static const int INTERRUPTS_TIM1_UP = 40;
static const int INTERRUPTS_TIM1_TRG_COM = 41;
static const int INTERRUPTS_TIM1_CC = 42;
static const int INTERRUPTS_TIM2 = 43;
static const int INTERRUPTS_TIM16 = 44;
static const int INTERRUPTS_TIM17 = 45;
static const int INTERRUPTS_I2C1_EV = 46;
static const int INTERRUPTS_I2C1_ER = 47;
static const int INTERRUPTS_I2C2_EV = 48;
static const int INTERRUPTS_I2C2_ER = 49;
static const int INTERRUPTS_SPI1 = 50;
static const int INTERRUPTS_SPI2 = 51;
static const int INTERRUPTS_USART1 = 52;
static const int INTERRUPTS_USART2 = 53;
static const int INTERRUPTS_LPUART1 = 54;
static const int INTERRUPTS_LPTIM1 = 55;
static const int INTERRUPTS_LPTIM2 = 56;
static const int INTERRUPTS_EXTI15_10 = 57;
static const int INTERRUPTS_RTC_ALARM = 58;
static const int INTERRUPTS_LPTIM3 = 59;
static const int INTERRUPTS_SUBGHZSPI = 60;
static const int INTERRUPTS_HSEM = 63;
static const int INTERRUPTS_I2C3_EV = 64;
static const int INTERRUPTS_I2C3_ER = 65;
static const int INTERRUPTS_SUBGHZ_RADIO = 66;
static const int INTERRUPTS_AES = 67;
static const int INTERRUPTS_RNG = 68;
static const int INTERRUPTS_PKA = 69;
static const int INTERRUPTS_DMA2_CHANNEL1 = 70;
static const int INTERRUPTS_DMA2_CHANNEL2 = 71;
static const int INTERRUPTS_DMA2_CHANNEL3 = 72;
static const int INTERRUPTS_DMA2_CHANNEL4 = 73;
static const int INTERRUPTS_DMA2_CHANNEL5 = 74;
static const int INTERRUPTS_DMA2_CHANNEL6 = 75;
static const int INTERRUPTS_DMA2_CHANNEL7 = 76;
static const int INTERRUPTS_DMAMUX1_OVR = 77;
// EOF Interrupt table

// Interrupt addresses
// No interrupt registers for STM32WLE4CC.
// EOF Interrupt addresses

// Interrupt register bit values
// No interrupt bits for STM32WLE4CC.
// EOF Interrupt register bit values

#endif // _INTERRUPTS_MCU_H_
// ------------------------------------------------------------------------- END
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
/****************************************************************************
**
** Copyright (C) 2024 MikroElektronika d.o.o.
** Contact: https://www.mikroe.com/contact
**
** This file is part of the mikroSDK package
**
** Commercial License Usage
**
** Licensees holding valid commercial NECTO compilers AI licenses may use this
** file in accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The MikroElektronika Company.
** For licensing terms and conditions see
** https://www.mikroe.com/legal/software-license-agreement.
** For further information use the contact form at
** https://www.mikroe.com/contact.
**
**
** GNU Lesser General Public License Usage
**
** Alternatively, this file may be used for
** non-commercial projects under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation: https://www.gnu.org/licenses/lgpl-3.0.html.
**
** The above copyright notice and this permission notice shall be
** included in all copies or substantial portions of the Software.
**
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
** OF MERCHANTABILITY, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
** TO THE WARRANTIES FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
** OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
** OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
**
****************************************************************************/
/*!
* @file interrupts_mcu.h
* @brief STM32WLE4J8 MCU specific interrupt per module definitions.
*/

#ifndef _INTERRUPTS_MCU_H_
#define _INTERRUPTS_MCU_H_

// Interrupt table
static const int INTERRUPTS_NONMASKABLEINT = 2;
static const int INTERRUPTS_HARDFAULT = 3;
static const int INTERRUPTS_MEMORYMANAGEMENT = 4;
static const int INTERRUPTS_BUSFAULT = 5;
static const int INTERRUPTS_USAGEFAULT = 6;
static const int INTERRUPTS_SVCALL = 11;
static const int INTERRUPTS_DEBUGMONITOR = 12;
static const int INTERRUPTS_PENDSV = 14;
static const int INTERRUPTS_SYSTICK = 15;
static const int INTERRUPTS_WWDG = 16;
static const int INTERRUPTS_PVD_PVM = 17;
static const int INTERRUPTS_TAMP_STAMP_LSECSS_SSRU = 18;
static const int INTERRUPTS_RTC_WKUP = 19;
static const int INTERRUPTS_FLASH = 20;
static const int INTERRUPTS_RCC = 21;
static const int INTERRUPTS_EXTI0 = 22;
static const int INTERRUPTS_EXTI1 = 23;
static const int INTERRUPTS_EXTI2 = 24;
static const int INTERRUPTS_EXTI3 = 25;
static const int INTERRUPTS_EXTI4 = 26;
static const int INTERRUPTS_DMA1_CHANNEL1 = 27;
static const int INTERRUPTS_DMA1_CHANNEL2 = 28;
static const int INTERRUPTS_DMA1_CHANNEL3 = 29;
static const int INTERRUPTS_DMA1_CHANNEL4 = 30;
static const int INTERRUPTS_DMA1_CHANNEL5 = 31;
static const int INTERRUPTS_DMA1_CHANNEL6 = 32;
static const int INTERRUPTS_DMA1_CHANNEL7 = 33;
static const int INTERRUPTS_ADC = 34;
static const int INTERRUPTS_DAC = 35;
static const int INTERRUPTS_COMP = 37;
static const int INTERRUPTS_EXTI9_5 = 38;
static const int INTERRUPTS_TIM1_BRK = 39;
static const int INTERRUPTS_TIM1_UP = 40;
static const int INTERRUPTS_TIM1_TRG_COM = 41;
static const int INTERRUPTS_TIM1_CC = 42;
static const int INTERRUPTS_TIM2 = 43;
static const int INTERRUPTS_TIM16 = 44;
static const int INTERRUPTS_TIM17 = 45;
static const int INTERRUPTS_I2C1_EV = 46;
static const int INTERRUPTS_I2C1_ER = 47;
static const int INTERRUPTS_I2C2_EV = 48;
static const int INTERRUPTS_I2C2_ER = 49;
static const int INTERRUPTS_SPI1 = 50;
static const int INTERRUPTS_SPI2 = 51;
static const int INTERRUPTS_USART1 = 52;
static const int INTERRUPTS_USART2 = 53;
static const int INTERRUPTS_LPUART1 = 54;
static const int INTERRUPTS_LPTIM1 = 55;
static const int INTERRUPTS_LPTIM2 = 56;
static const int INTERRUPTS_EXTI15_10 = 57;
static const int INTERRUPTS_RTC_ALARM = 58;
static const int INTERRUPTS_LPTIM3 = 59;
static const int INTERRUPTS_SUBGHZSPI = 60;
static const int INTERRUPTS_HSEM = 63;
static const int INTERRUPTS_I2C3_EV = 64;
static const int INTERRUPTS_I2C3_ER = 65;
static const int INTERRUPTS_SUBGHZ_RADIO = 66;
static const int INTERRUPTS_AES = 67;
static const int INTERRUPTS_RNG = 68;
static const int INTERRUPTS_PKA = 69;
static const int INTERRUPTS_DMA2_CHANNEL1 = 70;
static const int INTERRUPTS_DMA2_CHANNEL2 = 71;
static const int INTERRUPTS_DMA2_CHANNEL3 = 72;
static const int INTERRUPTS_DMA2_CHANNEL4 = 73;
static const int INTERRUPTS_DMA2_CHANNEL5 = 74;
static const int INTERRUPTS_DMA2_CHANNEL6 = 75;
static const int INTERRUPTS_DMA2_CHANNEL7 = 76;
static const int INTERRUPTS_DMAMUX1_OVR = 77;
// EOF Interrupt table

// Interrupt addresses
// No interrupt registers for STM32WLE4J8.
// EOF Interrupt addresses

// Interrupt register bit values
// No interrupt bits for STM32WLE4J8.
// EOF Interrupt register bit values

#endif // _INTERRUPTS_MCU_H_
// ------------------------------------------------------------------------- END
Loading

0 comments on commit 15cd3ed

Please sign in to comment.