添加了国民技术N32G45x和N32L40x的pwm,定时外部时钟1、外部时钟2、pwm脉宽测量驱动程序,修改了串口和SPI的KConfig配置文件 #4137
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Copyright (c) 2006-2024, RT-Thread Development Team | |
| # | |
| # SPDX-License-Identifier: Apache-2.0 | |
| # | |
| # Change Logs: | |
| # Date Author Notes | |
| # 2024-08-26 supperthomas the first version | |
| # | |
| #这个action用来自动给pull request 添加标签 | |
| #当一个pull request被打开时,这个action会自动给这个pull request添加标签 | |
| name: "Pull Request Labeler" | |
| on: | |
| - pull_request_target | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| labeler: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/labeler@v5 |