This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists_bsp_stg.txt
61 lines (58 loc) · 2.26 KB
/
CMakeLists_bsp_stg.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Copyright (C) 2018-2019 Adolfo E. García
#
# This file is part of STG-8nn-Scaffold.
#
# STG-8nn-Scaffold is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# STG-8nn-Scaffold is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with STG-8nn-Scaffold. If not, see <https://www.gnu.org/licenses/>.
cmake_minimum_required(VERSION 3.20)
list(APPEND BSP_INCLUDE ${BSP_DIR}/stg/include)
list(APPEND BSP_SOURCES
${BSP_DIR}/stg/include/bsp_clock.h
${BSP_DIR}/stg/include/bsp_isr_priorities.h
${BSP_DIR}/stg/include/bsp_isr_cec_can.h
${BSP_DIR}/stg/include/bsp_isr_hardfault.h
${BSP_DIR}/stg/include/bsp_isr_svc.h
${BSP_DIR}/stg/include/bsp_isr_systick.h
${BSP_DIR}/stg/include/bsp_isr_usart3_8.h
${BSP_DIR}/stg/include/bsp_mx.h
${BSP_DIR}/stg/include/bsp_mx_adc.h
${BSP_DIR}/stg/include/bsp_mx_can.h
${BSP_DIR}/stg/include/bsp_mx_gpio.h
${BSP_DIR}/stg/include/bsp_mx_i2c.h
${BSP_DIR}/stg/include/bsp_mx_iwdg.h
${BSP_DIR}/stg/include/bsp_mx_rtc.h
${BSP_DIR}/stg/include/bsp_mx_timer.h
${BSP_DIR}/stg/include/bsp_mx_usart.h
${BSP_DIR}/stg/include/bsp_pinout.h
${BSP_DIR}/stg/include/bsp_specific.h
${BSP_DIR}/stg/include/stm32_assert.h
${BSP_DIR}/stg/include/stm32f0xx_hal_conf.h
${BSP_DIR}/stg/src/bsp.c
${BSP_DIR}/stg/src/bsp_can.c
${BSP_DIR}/stg/src/bsp_clock.c
${BSP_DIR}/stg/src/bsp_isr_cec_can.c
${BSP_DIR}/stg/src/bsp_isr_hardfault.c
${BSP_DIR}/stg/src/bsp_isr_svc.c
${BSP_DIR}/stg/src/bsp_isr_systick.c
${BSP_DIR}/stg/src/bsp_isr_usart3_8.c
${BSP_DIR}/stg/src/bsp_mx_adc.c
${BSP_DIR}/stg/src/bsp_mx_can.c
${BSP_DIR}/stg/src/bsp_mx_gpio.c
${BSP_DIR}/stg/src/bsp_mx_i2c.c
${BSP_DIR}/stg/src/bsp_mx_iwdg.c
${BSP_DIR}/stg/src/bsp_mx_rtc.c
${BSP_DIR}/stg/src/bsp_mx_timer.c
${BSP_DIR}/stg/src/bsp_mx_usart.c
${BSP_DIR}/stg/src/bsp_qpc.c
${BSP_DIR}/stg/src/stm32f0xx_hal_msp.c
)