-
Notifications
You must be signed in to change notification settings - Fork 977
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add UDB flavour of the stm32h743xx HIC
UDB enriches the DAPLink experience with additional features such as: - A new USB CDC endpoint to flash and get logs from a second target. - Another new USB CDC endpoint to interact with the HIC. Users can send easy shell commands to toggle pins, or to get any info from the HIC. - Additional DAPLink debugging functionality: persistent fault info, breakpoints on asserts when debugger is connected to debug UDB, watchdog, backtraces - Target power measurement For more details see the source/hic_hal/stm32/stm32h743ii/extended_features folder. Co-authored-by: Yangte Chen <yangtechen@google.com> Co-authored-by: Eric Lee <eleenest@google.com>
- Loading branch information
1 parent
ce911f8
commit 3c6ff9c
Showing
101 changed files
with
52,784 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
common: | ||
includes: | ||
- source/hic_hal/stm32/stm32h743ii/extended_features/include/udb_version.h | ||
sources: | ||
hic_hal: | ||
- source/hic_hal/stm32/stm32h743ii/extended_features/source/udb_version.c | ||
tool_specific: | ||
gcc_arm: | ||
linker_file: | ||
- source/hic_hal/stm32/stm32h743ii/extended_features/include/udb.ld |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
common: | ||
macros: | ||
# Add DAPLink macros below | ||
- MAIN_TASK_STACK=2048 | ||
- DAPLINK_BOOTLOADER_UPDATE | ||
- ASSERT_BUF_SIZE=65 | ||
- USB_CDC_ACM_EP_COUNT=3 | ||
# Add UDB config macros below | ||
- UDB | ||
- SUPPORT_CMD_HISTORY | ||
- NLUIF_PRINT_RESULT | ||
# Add build feature macros below | ||
- BUILD_FEATURE_UDB_ASSERT | ||
includes: | ||
- projectfiles/make_gcc_arm/stm32h743ii_udb_bl/build/bootloader_image.c | ||
- source/hic_hal/stm32/stm32h743ii/extended_features/include | ||
- source/hic_hal/stm32/stm32h743ii/extended_features/lib/nlutilities/include | ||
- source/hic_hal/stm32/stm32h743ii/extended_features/console/include | ||
- source/hic_hal/stm32/stm32h743ii/extended_features/lib/nlbacktrace/include | ||
sources: | ||
board: | ||
- source/board/stm32h743ii.c | ||
family: | ||
- source/family/st/stm32h743ii/target.c | ||
hic_hal: | ||
- source/hic_hal/stm32/stm32h743ii/extended_features/source | ||
- source/hic_hal/stm32/stm32h743ii/extended_features/lib/nlutilities/source | ||
- source/hic_hal/stm32/stm32h743ii/extended_features/console/source | ||
- source/hic_hal/stm32/stm32h743ii/extended_features/lib/nlbacktrace/source | ||
- source/hic_hal/stm32/stm32h743ii/extended_features/usb |
This file contains 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
Oops, something went wrong.