【先楫HPM5361】IIC读取无刷直流电机磁编码器位置
本帖最后由 hitwpc 于 2024-1-19 22:32 编辑<p><strong><span style="font-size:24px;">I2C模块介绍</span></strong></p>
<p align="left">I2C 的主要特性:</p>
<p align="left">● 支持标准模式(100Kb/s),快速模式(400Kb/s) 和快速模式+(1Mb/s)</p>
<p align="left">● 可配置主从模式</p>
<p align="left">● 支持7 位和10 位地址模式</p>
<p align="left">● 支持广播呼叫地址(general call address)</p>
<p align="left">● 自动时钟延展(clock stretching)</p>
<p align="left">● 可配置的时钟/数据时序</p>
<p align="left">● 支持直接内存访问(DMA)</p>
<p align="left">● 4 字节FIFO</p>
<div style="text-align: center;"></div>
<p align="left">有关I2C协议特性,可参考:</p>
<p align="left"><a href="https://blog.csdn.net/as480133937/article/details/105366932" style="color:blue; text-decoration:underline">IIC原理超详细讲解---值得一看-CSDN博客</a></p>
<p align="center"> </p>
<p><strong><span style="font-size:24px;">AS5600介绍</span></strong></p>
<p align="left">使用的无刷直流电机,电机出轴上安装了一个径向充磁磁铁,AS5600是一种易于编程的磁性旋转位置传感器,具有高分辨率12位模拟或PWM输出。该非接触系统测量轴上径向磁化磁体的绝对角度。AS5600专为无触点电位器应用而设计,其坚固的设计消除了任何均匀外部杂散磁场的影响。行业标准I²C接口支持非易失性参数的简单用户编程,无需专门的程序员。默认情况下,输出表示0到360度的范围。也可以通过编程零角度(开始位置)和最大角度(停止位置)来定义输出的较小范围。AS5600还配备了智能低功耗模式功能,可自动降低功耗。输入引脚(DIR)选择输出相对于旋转方向的极性。如果DIR接地,输出值随顺时针旋转而增加。如果DIR连接到VDD,则输出值随逆时针旋转而增加。</p>
<div style="text-align: center;"></div>
<p align="left">AS5600是12位的霍尔磁编码器,它的地址是0x36,只需要读取0x0C、0x0D这两个寄存器就可以读出角度的原始数据,再将其乘以360,再除以4096,就可以获得角度值。</p>
<div style="text-align: center;"></div>
<h1><span style="font-size:24px;">例程API介绍测试</span></h1>
<p align="left"><b>参考例程</b></p>
<p align="left">SDK\sdk_env_v1.3.0\hpm_sdk\samples\drivers\i2c\polling\master\src</p>
<p align="left">使用的是I2C的轮询收发模式,作为主机。例程中还有其他的模式,如中断和DMA收发。</p>
<p align="left"><b>初始化</b></p>
<p align="left">实验使用的是I2C0,初始化IO引脚,分别是PB02(SCL)、PB03(SDA)。同时设置I2C为标准模式(100Kb/s),采用7位地址。设置IIC频率,完成IIC初始化。</p>
<p align="center"> </p>
<p><b>I2C</b><b>的收发函数</b></p>
<p>读、写函数</p>
<pre>
<code class="language-cpp">hpm_stat_t i2c_master_read(I2C_Type *ptr, const uint16_t device_address,uint8_t *buf, const uint32_t size)
hpm_stat_t i2c_master_write(I2C_Type *ptr, const uint16_t device_address,uint8_t *buf, const uint32_t size)</code></pre>
<p>形参分别是I2C标号、从机地址、数据指针、数据数量</p>
<p>向指定位置读写数据函数</p>
<pre>
<code class="language-cpp">hpm_stat_t i2c_master_address_read(I2C_Type *ptr, const uint16_t device_address, uint8_t *addr, uint32_t addr_size_in_byte, uint8_t *buf, const uint32_t size_in_byte)
hpm_stat_t i2c_master_address_write(I2C_Type *ptr, const uint16_t device_address, uint8_t *addr, uint32_t addr_size_in_byte, uint8_t *buf, const uint32_t size_in_byte)</code></pre>
<p>形参分别是I2C标号、从机地址、目标写入寄存器,数据指针、数据数量</p>
<p align="left"><b>AS5600 </b><b>库</b></p>
<p align="left">可以参考以下驱动库:</p>
<p align="left"><a href="https://github.com/libdriver/as5600" style="color:blue; text-decoration:underline">libdriver/as5600: AS5600 full function driver library for general MCU and Linux. (github.com)</a></p>
<p>在/interface目录下添加的IIC总线驱动函数的内容:</p>
<pre>
<code class="language-cpp">uint8_t as5600_interface_iic_read(uint8_t addr, uint8_t reg, uint8_t *buf, uint16_t len)
{
//i2c_memory_read(&hi2cx, I2C_MEM_ADDR_WIDIH_8,addr,reg,buf,len,0xFFF);
i2c_master_address_read(HPM_I2C0,addr,&reg,1,buf, len);
return 0;
}
uint8_t as5600_interface_iic_write(uint8_t addr, uint8_t reg, uint8_t *buf, uint16_t len)
{
i2c_master_address_write(HPM_I2C0,addr,&reg,1,buf, len);
return 0;
}</code></pre>
<p>在main函数初始化阶段,添加头文件,增加初始化函数:</p>
<pre>
<code class="language-cpp">#include "driver_as5600_basic.h"
as5600_basic_init();</code></pre>
<p>在while中添加读取函数,并用打印出来:</p>
<pre>
<code class="language-cpp"> while (1)
{
as5600_basic_read(&angle_1);
printf("%f\n", angle_1);
board_delay_ms(10);
}</code></pre>
<p>测试视频如下:</p>
<p>0bfd691e586a9f75f5a1500d8b9eb3eb<br />
</p>
<p>大佬,请问这个电机在哪买的</p>
<p> </p>
页:
[1]