Skip to content

Commit a0471b1

Browse files
committed
Added minimal example project for STM32
So far, there are no sources for hardware interrupt handlers and calls to the microcontroller's hardware core (initially planned for the STM32F4xx), but there is a minimal example project for the STM32F4xx without CubeMX (folders with code, Makefile, and libraries)
1 parent 8736be5 commit a0471b1

6,963 files changed

Lines changed: 6 additions & 6 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/telegram_notify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
-d chat_id="${{ secrets.TELEGRAM_CHAT_ID }}" \
2121
-d parse_mode="HTML" \
2222
-d disable_web_page_preview="true" \
23-
-d text="User <a href='https://github.com/${{ github.actor }}'>${{ github.actor }}</a> committed into 📁 <b>${{ github.repository }}</b>
23+
-d text="User <a href='https://github.com/${{ github.actor }}'>${{ github.actor }}</a> committed into <b>${{ github.repository }}</b>
2424
2525
<b>Commit header:</b> $HEADER
2626
<b>Commit description:</b> <i>$DESC</i>

.vscode/c_cpp_properties.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
{
44
"name": "STM32F4",
55
"includePath": [
6-
"${workspaceFolder}/config",
7-
"${workspaceFolder}/app/inc",
8-
"${workspaceFolder}/platform/hal/Inc",
9-
"${workspaceFolder}/platform/cmsis/CMSIS/Include",
10-
"${workspaceFolder}/platform/cmsis/CMSIS/Device/ST/STM32F4xx/Include",
6+
"${workspaceFolder}/examples/stm32_f4x/config",
7+
"${workspaceFolder}/examples/stm32_f4x/app/inc",
8+
"${workspaceFolder}/examples/stm32_f4x/platform/hal/Inc",
9+
"${workspaceFolder}/examples/stm32_f4x/platform/cmsis/CMSIS/Include",
10+
"${workspaceFolder}/examples/stm32_f4x/platform/cmsis/CMSIS/Device/ST/STM32F4xx/Include",
1111
"${workspaceFolder}/**"
1212
],
1313
"defines": [
File renamed without changes.

0 commit comments

Comments
 (0)