acassis commented on code in PR #10902: URL: https://github.com/apache/nuttx/pull/10902#discussion_r1357376812
########## Kconfig: ########## @@ -2034,6 +2034,39 @@ config DEBUG_MOTOR_INFO endif # DEBUG_MOTOR +config DEBUG_STEPPER + bool "Stepper Debug Features" Review Comment: ```suggestion bool "Stepper Motor Debug Features" ########## Kconfig: ########## @@ -2034,6 +2034,39 @@ config DEBUG_MOTOR_INFO endif # DEBUG_MOTOR +config DEBUG_STEPPER + bool "Stepper Debug Features" + default n + depends on STEPPER + ---help--- + Enable motor debug features. + +if DEBUG_STEPPER + +config DEBUG_STEPPER_ERROR + bool "Stepper Error Output" Review Comment: ```suggestion bool "Stepper Motor Error Output" ########## Kconfig: ########## @@ -2034,6 +2034,39 @@ config DEBUG_MOTOR_INFO endif # DEBUG_MOTOR +config DEBUG_STEPPER + bool "Stepper Debug Features" + default n + depends on STEPPER + ---help--- + Enable motor debug features. + +if DEBUG_STEPPER + +config DEBUG_STEPPER_ERROR + bool "Stepper Error Output" + default n + depends on DEBUG_ERROR + ---help--- + Enable motor error output to SYSLOG. + +config DEBUG_STEPPER_WARN + bool "Stepper Warnings Output" Review Comment: ```suggestion bool "Stepper Motor Warnings Output" ########## Kconfig: ########## @@ -2034,6 +2034,39 @@ config DEBUG_MOTOR_INFO endif # DEBUG_MOTOR +config DEBUG_STEPPER + bool "Stepper Debug Features" + default n + depends on STEPPER + ---help--- + Enable motor debug features. + +if DEBUG_STEPPER + +config DEBUG_STEPPER_ERROR + bool "Stepper Error Output" + default n + depends on DEBUG_ERROR + ---help--- + Enable motor error output to SYSLOG. + +config DEBUG_STEPPER_WARN + bool "Stepper Warnings Output" + default n + depends on DEBUG_WARN + ---help--- + Enable motor warning output to SYSLOG. + +config DEBUG_STEPPER_INFO + bool "Stepper Informational Output" Review Comment: ```suggestion bool "Stepper Motor Informational Output" -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org