差别
这里会显示出您选择的修订版和当前版本之间的差别。
后一修订版 | 前一修订版 | ||
digi:arm-embedded:ccmp2:encoder_dts [2025/03/31 14:29] – 创建 robin | digi:arm-embedded:ccmp2:encoder_dts [2025/03/31 23:44] (当前版本) – robin | ||
---|---|---|---|
行 21: | 行 21: | ||
status = " | status = " | ||
}; | }; | ||
+ | </ | ||
+ | | ||
和 | 和 | ||
+ | | ||
< | < | ||
| | ||
行 39: | 行 42: | ||
</ | </ | ||
+ | 注意,上面这个配置并未验证,在AI的协助下,需要的知识点包括: | ||
+ | < | ||
+ | timers1: timer@address { | ||
+ | compatible = " | ||
+ | /* ...其他公共资源... */ | ||
+ | | ||
+ | pwm { compatible = " | ||
+ | timer@0 { compatible = " | ||
+ | counter { compatible = " | ||
+ | }; | ||
+ | // counter子节点专门用于编码器/ | ||
+ | </ | ||
+ | 下面,以这个编码器节点为例,可能需要的改变包括: | ||
+ | 1、增加在counter内的compatible说明; | ||
+ | 2、counter内增加一些描述 | ||
+ | < | ||
+ | // 编码器模式参数 | ||
+ | st, | ||
+ | st, | ||
+ | st, | ||
+ | st,filter = < | ||
+ | // 通道映射(CH3和CH4) | ||
+ | st, | ||
+ | ch3-mode = " | ||
+ | ch4-mode = " | ||
+ | </ | ||
+ | 而pinctrl处也要相应修改一些内容,注意AF8改为AF2,待查文档确认,并在节点名别名处添加encoder以增加识别度,偏置也改为上拉等。 | ||
+ | |||
+ | AF可以通过下面查:Alternate function mapping | ||
+ | |||
+ | https:// | ||
+ | |||
+ | < | ||
+ | ccmp25_timers1_ch3_4_pins: | ||
+ | pins { | ||
+ | // PD9: TIM1_CH3, PD8: TIM1_CH4 | ||
+ | pinmux = < | ||
+ | < | ||
+ | bias-pull-up; | ||
+ | drive-push-pull; | ||
+ | slew-rate = < | ||
+ | }; | ||
+ | }; | ||
+ | |||
+ | ccmp25_timers1_ch3_4_sleep_pins: | ||
+ | pins { | ||
+ | pinmux = < | ||
+ | < | ||
+ | }; | ||
+ | }; | ||
+ | </ | ||
+ | |||
+ | 下面讲解如何确认I/ | ||
+ | Each I/O pin has a multiplexer with up to 16 alternate function inputs (AF0 to AF15), that can | ||
+ | be configured through GPIOx_AFRL (for pin 0 to 7) and GPIOx_AFRH (for pin 8 to 15): | ||
+ | |||
+ | 对应到这里引脚为8, | ||
+ | |||
+ | ***************疑点************ | ||
+ | 在文档的timers中,即64, | ||
+ | {{: | ||
+ | 即 | ||
+ | < | ||
+ | Each channel can be used for capture, | ||
+ | compare or PWM. | ||
+ | TIM_CH1 and TIM_CH2 can also be used | ||
+ | as external clock (below 1/4 of the | ||
+ | tim_ker_ck clock), external trigger and | ||
+ | quadrature encoder inputs. | ||
+ | TIM_CH1, TIM_CH2 and TIM_CH3 can be | ||
+ | used to interface with digital hall effect | ||
+ | sensors | ||
+ | </ | ||
+ | 也就是,定时器如果是作为capture, | ||
+ | |||
+ | 假定CH3, | ||
+ | |||
+ | < | ||
+ | /* encoder interface for DI1 and DI2 */ | ||
+ | counter_DI_1_2 | ||
+ | compatible = " | ||
+ | pinctrl-names = " | ||
+ | pinctrl-0 = <& | ||
+ | pinctrl-1 = <& | ||
+ | status = " | ||
+ | st, | ||
+ | st, | ||
+ | st, | ||
+ | st, | ||
+ | ch3-mode = " | ||
+ | ch4-mode = " | ||
+ | }; | ||
+ | | ||
+ | }; | ||
+ | |||
+ | |||
+ | |||
+ | ccmp25_timers1_ch3_4_pins: | ||
+ | pins { | ||
+ | pinmux = < | ||
+ | < | ||
+ | bias-pull-up; | ||
+ | drive-push-pull; | ||
+ | slew-rate = <1>; | ||
+ | }; | ||
+ | }; | ||
+ | |||
+ | ccmp25_timers1_ch3_4_sleep_pins: | ||
+ | pins { | ||
+ | pinmux = < | ||
+ | < | ||
+ | }; | ||
+ | }; | ||
+ | </ | ||
+ | |||
+ | 用户空间的验证如下: | ||
+ | < | ||
+ | # 启用计数器 | ||
+ | echo 1 > / | ||
+ | |||
+ | # 读取当前计数值 | ||
+ | cat / | ||
+ | |||
+ | # 旋转编码器后,观察数值变化 | ||
+ | </ | ||
+ | |||
+ | ----- | ||
+ | 进阶: | ||
+ | 使用cubeMX验证,发现:TIM1里可以选择conbined channels的方式是encoder mode,并且它用了:PD11, | ||
+ | {{: | ||
+ | |||
+ | 如果不用encoder mode,则每个通道可选为input capture direct mode, 也许这才是原先想要的方式: | ||
+ | {{: | ||
+ | |||
+ | 补充:用cubeMX生成的设备树发现,和smartIOMUX一样,是用AF8,因此,如果用ch3, | ||
+ | |||
+ | 根据AI给的说法:虽然也可以把将CH3和CH4配置为输入捕获模式,在中断或轮询中读取捕获值,计算脉冲数和方向,或是通过软件逻辑模拟正交编码器的计数和方向判断,但这样实时性较差,占用CPU资源,适合低速场景。 | ||
+ | 因此能用上专用的encoder的模式肯定效率高一些 | ||
+ | |||
+ | 一个完整的电机控制的设备树的例子参考如下,可根据板子情况参考: | ||
+ | < | ||
+ | / { | ||
+ | // 配置时钟(确保定时器时钟源正确) | ||
+ | clocks { | ||
+ | // 假设TIM1使用APB2时钟(需根据实际时钟树配置) | ||
+ | tim1_clk: tim1-clk { | ||
+ | # | ||
+ | compatible = " | ||
+ | clock-frequency = < | ||
+ | }; | ||
+ | }; | ||
+ | |||
+ | // PWM控制器配置(TIM1通道1用于PWM输出) | ||
+ | pwm_motor: pwm-motor { | ||
+ | compatible = " | ||
+ | #pwm-cells = <3>; | ||
+ | reg = < | ||
+ | clocks = <& | ||
+ | status = " | ||
+ | |||
+ | pwm@0 { | ||
+ | // 通道1(TIM1_CH1)作为PWM输出 | ||
+ | reg = <0>; | ||
+ | st, | ||
+ | st, | ||
+ | }; | ||
+ | }; | ||
+ | |||
+ | // 编码器接口(TIM3通道1和2用于正交编码器) | ||
+ | encoder_motor: | ||
+ | compatible = " | ||
+ | reg = < | ||
+ | st, | ||
+ | st, | ||
+ | clocks = <& | ||
+ | status = " | ||
+ | }; | ||
+ | |||
+ | // 霍尔传感器GPIO中断(可选,用于无刷电机换相) | ||
+ | hall_sensor { | ||
+ | compatible = " | ||
+ | hall-u { | ||
+ | label = " | ||
+ | gpios = <& | ||
+ | linux,code = < | ||
+ | }; | ||
+ | hall-v { /* 类似配置 */ }; | ||
+ | hall-w { /* 类似配置 */ }; | ||
+ | }; | ||
+ | |||
+ | // ADC配置(用于电流采样,可选) | ||
+ | adc_motor: adc-motor { | ||
+ | compatible = " | ||
+ | reg = < | ||
+ | vref-supply = <& | ||
+ | st, | ||
+ | status = " | ||
+ | }; | ||
+ | }; | ||
</ | </ | ||