Skip to content

Commit

Permalink
Added test HAL and added missing IOMUX define
Browse files Browse the repository at this point in the history
* Added missing define register for IOMUX REMAP2/3/4/5/6/7/8

* Added USB_CDC for testing HAL

* Update years on copyright

* Change Systick Resolution from 16 to 32 on USB_CDC test

* Added PWM-ICU for testing HAL

* Missing Pin A0 for User key button
  • Loading branch information
HorrorTroll committed Feb 13, 2024
1 parent 284049a commit cd91c87
Show file tree
Hide file tree
Showing 96 changed files with 5,284 additions and 395 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion os/common/ext/CMSIS/ArteryTek/AT32F415/at32f415.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
******************************************************************************
* @file at32f415.h
* @author Artery Technology & HorrorTroll
* @author Artery Technology & HorrorTroll & Zhaqian
* @brief AT32F415 header file
*
******************************************************************************
Expand Down
269 changes: 183 additions & 86 deletions os/common/ext/CMSIS/ArteryTek/AT32F415/at32f415cx.h

Large diffs are not rendered by default.

245 changes: 171 additions & 74 deletions os/common/ext/CMSIS/ArteryTek/AT32F415/at32f415kx.h

Large diffs are not rendered by default.

274 changes: 188 additions & 86 deletions os/common/ext/CMSIS/ArteryTek/AT32F415/at32f415rx.h

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion os/common/ext/CMSIS/ArteryTek/AT32F415/system_at32f415.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
**************************************************************************
* @file system_at32f415.h
* @author Artery Technology & HorrorTroll
* @author Artery Technology & HorrorTroll & Zhaqian
* @brief CMSIS AT32F415 system header file
*
**************************************************************************
Expand Down
5 changes: 3 additions & 2 deletions os/common/startup/ARMCMx/compilers/GCC/ld/AT32F415x8.ld
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/*
Copyright (C) 2023 Artery Technology
Copyright (C) 2023 HorrorTroll (https://github.com/HorrorTroll)
Copyright (C) 2023..2024 Artery Technology
Copyright (C) 2023..2024 HorrorTroll (https://github.com/HorrorTroll)
Copyright (C) 2023..2024 Zhaqian (https://github.com/zhaqian12)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
5 changes: 3 additions & 2 deletions os/common/startup/ARMCMx/compilers/GCC/ld/AT32F415xB.ld
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/*
Copyright (C) 2023 Artery Technology
Copyright (C) 2023 HorrorTroll (https://github.com/HorrorTroll)
Copyright (C) 2023..2024 Artery Technology
Copyright (C) 2023..2024 HorrorTroll (https://github.com/HorrorTroll)
Copyright (C) 2023..2024 Zhaqian (https://github.com/zhaqian12)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
5 changes: 3 additions & 2 deletions os/common/startup/ARMCMx/compilers/GCC/ld/AT32F415xC.ld
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/*
Copyright (C) 2023 Artery Technology
Copyright (C) 2023 HorrorTroll (https://github.com/HorrorTroll)
Copyright (C) 2023..2024 Artery Technology
Copyright (C) 2023..2024 HorrorTroll (https://github.com/HorrorTroll)
Copyright (C) 2023..2024 Zhaqian (https://github.com/zhaqian12)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
6 changes: 3 additions & 3 deletions os/common/startup/ARMCMx/devices/AT32F415/cmparams.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
ChibiOS/RT - Copyright (C) 2006-2014 Giovanni Di Sirio.
(C) 2015 RedoX https://github.com/RedoXyde
(C) 2023 HorrorTroll (https://github.com/HorrorTroll)
(C) 2023 Zhaqian (https://github.com/zhaqian12)
(C) 2015 RedoX (https://github.com/RedoXyde)
(C) 2023-2024 HorrorTroll (https://github.com/HorrorTroll)
(C) 2023-2024 Zhaqian (https://github.com/zhaqian12)
This file is part of ChibiOS/RT.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/boards/AT_START_F415/board.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2023 HorrorTroll
ChibiOS - Copyright (C) 2023 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
14 changes: 10 additions & 4 deletions os/hal/boards/AT_START_F415/board.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2023 HorrorTroll
ChibiOS - Copyright (C) 2023 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -45,6 +45,7 @@
*/
#define GPIOA_ARD_A0 0U
#define GPIOA_ADC1_IN0 0U
#define GPIOA_BUTTON 0U
#define GPIOA_ARD_A1 1U
#define GPIOA_ADC1_IN1 1U
#define GPIOA_ARD_D1 2U
Expand Down Expand Up @@ -106,7 +107,9 @@
#define GPIOC_PIN14 14U
#define GPIOC_PIN15 15U

#define GPIOD_OSC_IN 0U
#define GPIOD_PIN0 0U
#define GPIOD_OSC_OUT 1U
#define GPIOD_PIN1 1U
#define GPIOD_PIN2 2U
#define GPIOD_PIN3 3U
Expand Down Expand Up @@ -167,12 +170,13 @@
/*
* Port A setup.
* Everything input with pull-up except:
* PA0 - Normal input (GPIOA_BUTTON)
* PA2 - Alternate output (GPIOA_ARD_D1, GPIOA_USART2_TX)
* PA3 - Normal input (GPIOA_ARD_D0, GPIOA_USART2_RX)
* PA13 - Pull-up input (GPIOA_SWDIO)
* PA14 - Pull-down input (GPIOA_SWCLK)
*/
#define VAL_GPIOACFGLR 0x88884B88 /* PA7...PA0 */
#define VAL_GPIOACFGLR 0x88884B84 /* PA7...PA0 */
#define VAL_GPIOACFGHR 0x88888888 /* PA15...PA8 */
#define VAL_GPIOAODT 0xFFFFFFFF

Expand All @@ -199,8 +203,10 @@

/*
* Port D setup.
* PD0 - Normal input (GPIOD_OSC_IN).
* PD1 - Normal input (GPIOD_OSC_OUT).
*/
#define VAL_GPIODCFGLR 0x88888888 /* PD7...PD0 */
#define VAL_GPIODCFGLR 0x88888844 /* PD7...PD0 */
#define VAL_GPIODCFGHR 0x88888888 /* PD15...PD8 */
#define VAL_GPIODODT 0xFFFFFFFF

Expand Down
4 changes: 2 additions & 2 deletions os/hal/boards/AT_START_F415/board.mk
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# List of all the board related files.
BOARDSRC = $(BOARDDIR)/board.c
BOARDSRC = $(CHIBIOS_CONTRIB)/os/hal/boards/AT_START_F415/board.c

# Required include directories
BOARDINC = $(BOARDDIR)
BOARDINC = ${CHIBIOS_CONTRIB}/os/hal/boards/AT_START_F415

# Shared variables
ALLCSRC += $(BOARDSRC)
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/AT32F415/at32_crm.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2023 HorrorTroll
ChibiOS - Copyright (C) 2023 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/AT32F415/at32_dmamux.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2023 HorrorTroll
ChibiOS - Copyright (C) 2023 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/AT32F415/at32_isr.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/AT32F415/at32_isr.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/AT32F415/at32_registry.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/AT32F415/hal_efl_lld.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2023 HorrorTroll
ChibiOS - Copyright (C) 2023 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/AT32F415/hal_efl_lld.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2023 HorrorTroll
ChibiOS - Copyright (C) 2023 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/AT32F415/hal_lld.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2023 HorrorTroll
ChibiOS - Copyright (C) 2023 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/AT32F415/hal_lld.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2023 HorrorTroll
ChibiOS - Copyright (C) 2023 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/LLD/ADCv1/hal_adc_lld.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/LLD/ADCv1/hal_adc_lld.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/LLD/DMAv1/at32_dma.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/LLD/DMAv1/at32_dma.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/LLD/EXINTv1/at32_exint.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/LLD/EXINTv1/at32_exint.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/LLD/EXINTv1/at32_exint0.inc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/LLD/EXINTv1/at32_exint1.inc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/LLD/EXINTv1/at32_exint10_15.inc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/LLD/EXINTv1/at32_exint16.inc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/LLD/EXINTv1/at32_exint17.inc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/LLD/EXINTv1/at32_exint18.inc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/LLD/EXINTv1/at32_exint19.inc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/LLD/EXINTv1/at32_exint2.inc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/LLD/EXINTv1/at32_exint20.inc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/LLD/EXINTv1/at32_exint21.inc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions os/hal/ports/AT32/LLD/EXINTv1/at32_exint22.inc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
ChibiOS - Copyright (C) 2024 HorrorTroll
ChibiOS - Copyright (C) 2024 Zhaqian
ChibiOS - Copyright (C) 2023..2024 HorrorTroll
ChibiOS - Copyright (C) 2023..2024 Zhaqian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Loading

0 comments on commit cd91c87

Please sign in to comment.