Skip to content

Commit 9b5adb8

Browse files
authored
Merge pull request #1752 from svastm/add_nucleo_l011k4
Add NUCLEO_L011K4
2 parents ba69e82 + dd82905 commit 9b5adb8

File tree

39 files changed

+7094
-3
lines changed

39 files changed

+7094
-3
lines changed

hal/targets.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -775,6 +775,17 @@
775775
"detect_code": ["0816"],
776776
"device_has": ["ANALOGIN", "ANALOGOUT", "CAN", "I2C", "I2CSLAVE", "INTERRUPTIN", "PORTIN", "PORTINOUT", "PORTOUT", "PWMOUT", "RTC", "SERIAL", "SLEEP", "SPI", "SPISLAVE", "STDIO_MESSAGES"]
777777
},
778+
"NUCLEO_L011K4": {
779+
"inherits": ["Target"],
780+
"core": "Cortex-M0+",
781+
"extra_labels": ["STM", "STM32L0", "STM32L011K4"],
782+
"supported_toolchains": ["ARM", "uARM", "IAR", "GCC_ARM"],
783+
"default_toolchain": "uARM",
784+
"supported_form_factors": ["ARDUINO"],
785+
"detect_code": ["0780"],
786+
"progen": {"target":"nucleo-l011k4"},
787+
"device_has": ["ANALOGIN", "I2C", "I2CSLAVE", "INTERRUPTIN", "PORTIN", "PORTINOUT", "PORTOUT", "PWMOUT", "RTC", "SERIAL", "SLEEP", "SPI", "SPISLAVE", "STDIO_MESSAGES"]
788+
},
778789
"NUCLEO_L031K6": {
779790
"inherits": ["Target"],
780791
"core": "Cortex-M0",
Lines changed: 222 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,222 @@
1+
;******************** (C) COPYRIGHT 2016 STMicroelectronics ********************
2+
;* File Name : startup_stm32l011xx.s
3+
;* Author : MCD Application Team
4+
;* Version : V1.5.0
5+
;* Date : 8-January-2016
6+
;* Description : STM32l011xx Devices vector table for MDK-ARM toolchain.
7+
;* This module performs:
8+
;* - Set the initial SP
9+
;* - Set the initial PC == Reset_Handler
10+
;* - Set the vector table entries with the exceptions ISR address
11+
;* - Branches to __main in the C library (which eventually
12+
;* calls main()).
13+
;* After Reset the Cortex-M0+ processor is in Thread mode,
14+
;* priority is Privileged, and the Stack is set to Main.
15+
;* <<< Use Configuration Wizard in Context Menu >>>
16+
;*******************************************************************************
17+
;*
18+
;* Redistribution and use in source and binary forms, with or without modification,
19+
;* are permitted provided that the following conditions are met:
20+
;* 1. Redistributions of source code must retain the above copyright notice,
21+
;* this list of conditions and the following disclaimer.
22+
;* 2. Redistributions in binary form must reproduce the above copyright notice,
23+
;* this list of conditions and the following disclaimer in the documentation
24+
;* and/or other materials provided with the distribution.
25+
;* 3. Neither the name of STMicroelectronics nor the names of its contributors
26+
;* may be used to endorse or promote products derived from this software
27+
;* without specific prior written permission.
28+
;*
29+
;* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
30+
;* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31+
;* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
32+
;* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
33+
;* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34+
;* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
35+
;* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
36+
;* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
37+
;* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38+
;* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39+
;*
40+
;*******************************************************************************
41+
;
42+
; Amount of memory (in bytes) allocated for Stack
43+
; Tailor this value to your application needs
44+
; <h> Stack Configuration
45+
; <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
46+
; </h>
47+
48+
Stack_Size EQU 0x00000400
49+
50+
AREA STACK, NOINIT, READWRITE, ALIGN=3
51+
EXPORT __initial_sp
52+
53+
Stack_Mem SPACE Stack_Size
54+
__initial_sp EQU 0x20000800 ; Top of RAM
55+
56+
57+
; <h> Heap Configuration
58+
; <o> Heap Size (in Bytes) <0x0-0xFFFFFFFF:8>
59+
; </h>
60+
61+
Heap_Size EQU 0x00000200
62+
63+
AREA HEAP, NOINIT, READWRITE, ALIGN=3
64+
EXPORT __heap_base
65+
EXPORT __heap_limit
66+
67+
__heap_base
68+
Heap_Mem SPACE Heap_Size
69+
__heap_limit EQU (__initial_sp - Stack_Size)
70+
71+
PRESERVE8
72+
THUMB
73+
74+
75+
; Vector Table Mapped to Address 0 at Reset
76+
AREA RESET, DATA, READONLY
77+
EXPORT __Vectors
78+
EXPORT __Vectors_End
79+
EXPORT __Vectors_Size
80+
81+
__Vectors DCD __initial_sp ; Top of Stack
82+
DCD Reset_Handler ; Reset Handler
83+
DCD NMI_Handler ; NMI Handler
84+
DCD HardFault_Handler ; Hard Fault Handler
85+
DCD 0 ; Reserved
86+
DCD 0 ; Reserved
87+
DCD 0 ; Reserved
88+
DCD 0 ; Reserved
89+
DCD 0 ; Reserved
90+
DCD 0 ; Reserved
91+
DCD 0 ; Reserved
92+
DCD SVC_Handler ; SVCall Handler
93+
DCD 0 ; Reserved
94+
DCD 0 ; Reserved
95+
DCD PendSV_Handler ; PendSV Handler
96+
DCD SysTick_Handler ; SysTick Handler
97+
98+
; External Interrupts
99+
DCD WWDG_IRQHandler ; Window Watchdog
100+
DCD PVD_IRQHandler ; PVD through EXTI Line detect
101+
DCD RTC_IRQHandler ; RTC through EXTI Line
102+
DCD FLASH_IRQHandler ; FLASH
103+
DCD RCC_IRQHandler ; RCC
104+
DCD EXTI0_1_IRQHandler ; EXTI Line 0 and 1
105+
DCD EXTI2_3_IRQHandler ; EXTI Line 2 and 3
106+
DCD EXTI4_15_IRQHandler ; EXTI Line 4 to 15
107+
DCD 0 ; Reserved
108+
DCD DMA1_Channel1_IRQHandler ; DMA1 Channel 1
109+
DCD DMA1_Channel2_3_IRQHandler ; DMA1 Channel 2 and Channel 3
110+
DCD DMA1_Channel4_5_6_7_IRQHandler ; DMA1 Channel 4, Channel 5, Channel 6 and Channel 7
111+
DCD ADC1_COMP_IRQHandler ; ADC1, COMP1
112+
DCD LPTIM1_IRQHandler ; LPTIM1
113+
DCD 0 ; Reserved
114+
DCD TIM2_IRQHandler ; TIM2
115+
DCD 0 ; Reserved
116+
DCD 0 ; Reserved
117+
DCD 0 ; Reserved
118+
DCD 0 ; Reserved
119+
DCD TIM21_IRQHandler ; TIM21
120+
DCD 0 ; Reserved
121+
DCD 0 ; Reserved
122+
DCD I2C1_IRQHandler ; I2C1
123+
DCD 0 ; Reserved
124+
DCD SPI1_IRQHandler ; SPI1
125+
DCD 0 ; Reserved
126+
DCD 0 ; Reserved
127+
DCD USART2_IRQHandler ; USART2
128+
DCD LPUART1_IRQHandler ; LPUART1
129+
DCD 0 ; Reserved
130+
DCD 0 ; Reserved
131+
132+
__Vectors_End
133+
134+
__Vectors_Size EQU __Vectors_End - __Vectors
135+
136+
AREA |.text|, CODE, READONLY
137+
138+
; Reset handler routine
139+
Reset_Handler PROC
140+
EXPORT Reset_Handler [WEAK]
141+
IMPORT __main
142+
IMPORT SystemInit
143+
LDR R0, =SystemInit
144+
BLX R0
145+
LDR R0, =__main
146+
BX R0
147+
ENDP
148+
149+
; Dummy Exception Handlers (infinite loops which can be modified)
150+
151+
NMI_Handler PROC
152+
EXPORT NMI_Handler [WEAK]
153+
B .
154+
ENDP
155+
HardFault_Handler\
156+
PROC
157+
EXPORT HardFault_Handler [WEAK]
158+
B .
159+
ENDP
160+
SVC_Handler PROC
161+
EXPORT SVC_Handler [WEAK]
162+
B .
163+
ENDP
164+
PendSV_Handler PROC
165+
EXPORT PendSV_Handler [WEAK]
166+
B .
167+
ENDP
168+
SysTick_Handler PROC
169+
EXPORT SysTick_Handler [WEAK]
170+
B .
171+
ENDP
172+
173+
Default_Handler PROC
174+
175+
EXPORT WWDG_IRQHandler [WEAK]
176+
EXPORT PVD_IRQHandler [WEAK]
177+
EXPORT RTC_IRQHandler [WEAK]
178+
EXPORT FLASH_IRQHandler [WEAK]
179+
EXPORT RCC_IRQHandler [WEAK]
180+
EXPORT EXTI0_1_IRQHandler [WEAK]
181+
EXPORT EXTI2_3_IRQHandler [WEAK]
182+
EXPORT EXTI4_15_IRQHandler [WEAK]
183+
EXPORT DMA1_Channel1_IRQHandler [WEAK]
184+
EXPORT DMA1_Channel2_3_IRQHandler [WEAK]
185+
EXPORT DMA1_Channel4_5_6_7_IRQHandler [WEAK]
186+
EXPORT ADC1_COMP_IRQHandler [WEAK]
187+
EXPORT LPTIM1_IRQHandler [WEAK]
188+
EXPORT TIM2_IRQHandler [WEAK]
189+
EXPORT TIM21_IRQHandler [WEAK]
190+
EXPORT I2C1_IRQHandler [WEAK]
191+
EXPORT SPI1_IRQHandler [WEAK]
192+
EXPORT USART2_IRQHandler [WEAK]
193+
EXPORT LPUART1_IRQHandler [WEAK]
194+
195+
WWDG_IRQHandler
196+
PVD_IRQHandler
197+
RTC_IRQHandler
198+
FLASH_IRQHandler
199+
RCC_IRQHandler
200+
EXTI0_1_IRQHandler
201+
EXTI2_3_IRQHandler
202+
EXTI4_15_IRQHandler
203+
DMA1_Channel1_IRQHandler
204+
DMA1_Channel2_3_IRQHandler
205+
DMA1_Channel4_5_6_7_IRQHandler
206+
ADC1_COMP_IRQHandler
207+
LPTIM1_IRQHandler
208+
TIM2_IRQHandler
209+
TIM21_IRQHandler
210+
I2C1_IRQHandler
211+
SPI1_IRQHandler
212+
USART2_IRQHandler
213+
LPUART1_IRQHandler
214+
215+
B .
216+
217+
ENDP
218+
219+
ALIGN
220+
END
221+
222+
;************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE*****
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
; Scatter-Loading Description File
2+
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3+
; Copyright (c) 2014, STMicroelectronics
4+
; All rights reserved.
5+
;
6+
; Redistribution and use in source and binary forms, with or without
7+
; modification, are permitted provided that the following conditions are met:
8+
;
9+
; 1. Redistributions of source code must retain the above copyright notice,
10+
; this list of conditions and the following disclaimer.
11+
; 2. Redistributions in binary form must reproduce the above copyright notice,
12+
; this list of conditions and the following disclaimer in the documentation
13+
; and/or other materials provided with the distribution.
14+
; 3. Neither the name of STMicroelectronics nor the names of its contributors
15+
; may be used to endorse or promote products derived from this software
16+
; without specific prior written permission.
17+
;
18+
; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19+
; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20+
; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21+
; DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22+
; FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23+
; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24+
; SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25+
; CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26+
; OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28+
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
29+
30+
; STM32L053C8: 16KB FLASH (0x4000) + 2KB RAM (0x800)
31+
LR_IROM1 0x08000000 0x4000 { ; load region size_region
32+
33+
ER_IROM1 0x08000000 0x4000 { ; load address = execution address
34+
*.o (RESET, +First)
35+
*(InRoot$$Sections)
36+
.ANY (+RO)
37+
}
38+
39+
; Total: 48 vectors = 192 bytes (0xC0) to be reserved in RAM
40+
RW_IRAM1 (0x20000000+0xC0) (0x800-0xC0) { ; RW data
41+
.ANY (+RW +ZI)
42+
}
43+
44+
}
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
/* mbed Microcontroller Library - stackheap
2+
* Setup a fixed single stack/heap memory model,
3+
* between the top of the RW/ZI region and the stackpointer
4+
*******************************************************************************
5+
* Copyright (c) 2014, STMicroelectronics
6+
* All rights reserved.
7+
*
8+
* Redistribution and use in source and binary forms, with or without
9+
* modification, are permitted provided that the following conditions are met:
10+
*
11+
* 1. Redistributions of source code must retain the above copyright notice,
12+
* this list of conditions and the following disclaimer.
13+
* 2. Redistributions in binary form must reproduce the above copyright notice,
14+
* this list of conditions and the following disclaimer in the documentation
15+
* and/or other materials provided with the distribution.
16+
* 3. Neither the name of STMicroelectronics nor the names of its contributors
17+
* may be used to endorse or promote products derived from this software
18+
* without specific prior written permission.
19+
*
20+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30+
*******************************************************************************
31+
*/
32+
33+
#ifdef __cplusplus
34+
extern "C" {
35+
#endif
36+
37+
#include <rt_misc.h>
38+
#include <stdint.h>
39+
40+
extern char Image$$RW_IRAM1$$ZI$$Limit[];
41+
42+
extern __value_in_regs struct __initial_stackheap __user_setup_stackheap(uint32_t R0, uint32_t R1, uint32_t R2, uint32_t R3) {
43+
uint32_t zi_limit = (uint32_t)Image$$RW_IRAM1$$ZI$$Limit;
44+
uint32_t sp_limit = __current_sp();
45+
46+
zi_limit = (zi_limit + 7) & ~0x7; // ensure zi_limit is 8-byte aligned
47+
48+
struct __initial_stackheap r;
49+
r.heap_base = zi_limit;
50+
r.heap_limit = sp_limit;
51+
return r;
52+
}
53+
54+
#ifdef __cplusplus
55+
}
56+
#endif

0 commit comments

Comments
 (0)