Commit c154159f authored by Wenxi Xu's avatar Wenxi Xu
Browse files

sbus driver add

parent 5d1dbe0f
Loading
Loading
Loading
Loading

1599115279962725.pdf

0 → 100644
+281 KiB

File added.

No diff preview for this file type.

1663296746649528.pdf

0 → 100644
+559 KiB

File added.

No diff preview for this file type.

+12 −2
Original line number Diff line number Diff line
@@ -8,10 +8,20 @@
# rsource "drivers/Kconfig"
# rsource "lib/Kconfig"

config MOTOR_M3508
    bool "Enable MOTOR_M3508"
config MOTOR_DJI
    bool "Enable MOTOR_DJI"
    default n

config ARES_SBUS
	bool "Enable SBUS"
	default n

config ARES_SBUS_INIT_PRIORITY
	int "SBUS init priority"
	default 90
	help
		fuck

config MOTOR_LOG_LEVEL
    int "Motor log level"
    default 4

assembly.txt

0 → 100644
+55718 −0

File added.

Preview size limit exceeded, changes collapsed.

+4 −0
Original line number Diff line number Diff line
@@ -2,8 +2,12 @@

# keep first
board_runner_args(stm32cubeprogrammer "--port=swd" "--reset-mode=hw")
board_runner_args(openocd)
board_runner_args(pyocd "--target=STM32F407IG")
board_runner_args(jlink "--device=STM32F407IG" "--speed=4000")

# keep first
include(${ZEPHYR_BASE}/boards/common/stm32cubeprogrammer.board.cmake)
include(${ZEPHYR_BASE}/boards/common/openocd.board.cmake)
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake)
Loading