Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/static_code_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:
scancode_job:
runs-on: ubuntu-latest
name: Static code analysis
if: github.repository_owner == 'RT-Thread'
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand Down Expand Up @@ -51,3 +50,7 @@ jobs:
cppcheck --version
cd ..
python tools/ci/cpp_check.py check


- name: Setup Debug Session
uses: csexton/debugger-action@master
2 changes: 1 addition & 1 deletion bsp/stm32/stm32f091-st-nucleo/board/board.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ void SystemClock_Config(void)
RCC_OscInitTypeDef RCC_OscInitStruct = {0};
RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
RCC_PeriphCLKInitTypeDef PeriphClkInit = {0};

/**Configure LSE Drive Capability
*/
HAL_PWR_EnableBkUpAccess();
Expand Down