Skip to content

Commit

Permalink
Merge pull request #1 from RoboMaster-Club/development
Browse files Browse the repository at this point in the history
2024 RMUL
  • Loading branch information
jia-xie authored Jun 20, 2024
2 parents 654f838 + ccc219f commit 2869d13
Show file tree
Hide file tree
Showing 65 changed files with 4,289 additions and 451 deletions.
8 changes: 4 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
"name": "dap (Win)",
"cwd": "${workspaceRoot}",
"executable": "${workspaceRoot}\\build\\control-base.elf",
"executable": "${workspaceRoot}\\build\\wlb.elf",
"request": "launch",
"type": "cortex-debug",
"svdFile": "STM32F407.svd",
Expand All @@ -23,7 +23,7 @@
{
"name": "stlink (Win)",
"cwd": "${workspaceRoot}",
"executable": "${workspaceRoot}\\build\\control-base.elf",
"executable": "${workspaceRoot}\\build\\wlb.elf",
"request": "launch",
"type": "cortex-debug",
"svdFile": "STM32F407.svd",
Expand All @@ -42,7 +42,7 @@
{
"name": "dap",
"cwd": "${workspaceRoot}",
"executable": "${workspaceRoot}/build/control-base.elf",
"executable": "${workspaceRoot}/build/wlb.elf",
"request": "launch",
"type": "cortex-debug",
"svdFile": "STM32F407.svd",
Expand All @@ -61,7 +61,7 @@
{
"name": "stlink",
"cwd": "${workspaceRoot}",
"executable": "${workspaceRoot}\\build\\control-base.elf",
"executable": "${workspaceRoot}\\build\\wlb.elf",
"request": "launch",
"type": "cortex-debug",
"svdFile": "STM32F407.svd",
Expand Down
13 changes: 10 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
######################################
# target
######################################
TARGET = control-base
TARGET = wlb

BOARD = typec

Expand Down Expand Up @@ -113,8 +113,12 @@ src/algo/src/MahonyAHRS.c \
src/algo/src/pid.c \
src/algo/src/Swerve_Locomotion.c \
src/algo/src/wheel_legged_locomotion.c \
src/algo/src/leg.c \
src/algo/src/five_bar_leg.c \
src/algo/src/kalman_filter.c \
src/algo/src/wlb_lqr_controller.c \
src/algo/src/FusionAhrs.c \
src/algo/src/FusionCompass.c \
src/algo/src/FusionOffset.c \
src/bsp/src/bsp_can.c \
src/bsp/src/bsp_delay.c \
src/bsp/src/bsp_daemon.c \
Expand Down Expand Up @@ -142,6 +146,7 @@ src/app/src/launch_task.c \
src/app/src/debug_task.c \
src/app/src/robot.c \
src/app/src/ui_task.c \
src/app/src/board_comm_task.c \
src/ui/src/ui_interface.c \
src/ui/src/ui_indicator_0_0.c \
src/ui/src/ui_indicator_0_1.c \
Expand All @@ -154,7 +159,9 @@ src/ui/src/ui_indicator_0_7.c \
src/ui/src/ui_indicator_0_8.c \
src/ui/src/ui_indicator_0_9.c \
src/ui/src/ui_indicator_0_10.c \
src/ui/src/ui_indicator_1_0.c
src/ui/src/ui_indicator_0_11.c \
src/ui/src/ui_indicator_1_0.c \
src/ui/src/ui_indicator_1_1.c

# ASM sources
ASM_SOURCES = \
Expand Down
2 changes: 1 addition & 1 deletion lib/typec-board-base
Loading

0 comments on commit 2869d13

Please sign in to comment.