<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>米尔科技论坛 - 全志T113核心板及开发板</title>
    <link>https://bbs.myir-tech.com/forum-68-1.html</link>
    <description>Latest 20 threads of 全志T113核心板及开发板</description>
    <copyright>Copyright(C) 米尔科技论坛</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Sun, 15 Mar 2026 11:44:55 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://bbs.myir-tech.com/static/image/common/logo_88_31.gif</url>
      <title>米尔科技论坛</title>
      <link>https://bbs.myir-tech.com/</link>
    </image>
    <item>
      <title>C 无法调用 C++ 函数</title>
      <link>https://bbs.myir-tech.com/thread-8913-1-1.html</link>
      <description><![CDATA[在 cnc.cpp 中定义函数

extern \&quot;C\&quot; void cnc_loop(void);
void cnc_loop(void)
{    
    Motor = 1;
    printf(\&quot;entry MotorXForward, Motor=%d \\r\\n\&quot;,Motor);
    MotorXForward();


}

在 C 程序中调用

void cnc_loop(void);

   printf(\&quot;entry cnc_loop,]]></description>
      <category>全志T113核心板及开发板</category>
      <author>Zhangyubiao</author>
      <pubDate>Thu, 31 Oct 2024 08:18:21 +0000</pubDate>
    </item>
    <item>
      <title>GPIO 中断无法产生</title>
      <link>https://bbs.myir-tech.com/thread-8912-1-1.html</link>
      <description><![CDATA[static hal_irqreturn_t gpio_irq_test(void *data)
{
    printf(\&quot;GPIO_PD18 IRQ \\r\\n\&quot;);
   

    return 0;
}


void User_Program_thread(void *param)
{
     int i;
        uint32_t irq;
        int ret = 0;
        gpio_pin_t pin = GPIO_PD18]]></description>
      <category>全志T113核心板及开发板</category>
      <author>Zhangyubiao</author>
      <pubDate>Fri, 25 Oct 2024 07:48:40 +0000</pubDate>
    </item>
    <item>
      <title>RV SPI 程序中 addr 地址是指什么地址？</title>
      <link>https://bbs.myir-tech.com/thread-8902-1-1.html</link>
      <description><![CDATA[hal_spi_slave_test Slave 模式测试命令，该命令需要在master 端运行
hal_spi_slave_test      [debug]

   addr = strtol(argv[3], NULL, 0);
   size = strtol(argv[4], NULL, 0);
   loop = strtol(argv[5], NULL, 0);]]></description>
      <category>全志T113核心板及开发板</category>
      <author>Zhangyubiao</author>
      <pubDate>Sat, 17 Aug 2024 13:49:51 +0000</pubDate>
    </item>
    <item>
      <title>T113-i Timer 函数如何使用？</title>
      <link>https://bbs.myir-tech.com/thread-8870-1-1.html</link>
      <description><![CDATA[typedef enum
{
    SUNXI_TMR0 = 0,
    SUNXI_TMR1,
    SUNXI_TMR2,
    SUNXI_TMR3,
    SUNXI_TMR4,
    SUNXI_TMR_NUM,
}  hal_timer_id_t;



void hal_timer_init(hal_timer_id_t timer);
void hal_timer_uninit(hal_timer_id_t timer);
void hal_time]]></description>
      <category>全志T113核心板及开发板</category>
      <author>Zhangyubiao</author>
      <pubDate>Tue, 28 May 2024 07:29:49 +0000</pubDate>
    </item>
    <item>
      <title>T113开发板启用type-C口debug</title>
      <link>https://bbs.myir-tech.com/thread-8858-1-1.html</link>
      <description><![CDATA[开发板默认是选用TTL UART调试口。

下面截图的两个地方焊接0R电阻。就可以使用USB TypeC。焊接了之后，不再使用TTL调试线，因为会抢信号的。]]></description>
      <category>全志T113核心板及开发板</category>
      <author>米尔国产方案</author>
      <pubDate>Tue, 07 May 2024 06:07:34 +0000</pubDate>
    </item>
    <item>
      <title>QT 主窗口大小和位置无法改变</title>
      <link>https://bbs.myir-tech.com/thread-8847-1-1.html</link>
      <description><![CDATA[默认的主窗口超出屏幕边界，主窗口边缘部分显示不出来。]]></description>
      <category>全志T113核心板及开发板</category>
      <author>Zhangyubiao</author>
      <pubDate>Thu, 25 Apr 2024 13:55:00 +0000</pubDate>
    </item>
    <item>
      <title>米尔T113i方案使用RISC-V实时核RTOS用例</title>
      <link>https://bbs.myir-tech.com/thread-8834-1-1.html</link>
      <description><![CDATA[目前可以使用RISC-V跑RTOS，使用SPI读取AD7606的值。这个连接里面包含SDK与简单的说明文档。

SDK下载地址请联系米尔销售人员获取。]]></description>
      <category>全志T113核心板及开发板</category>
      <author>米尔国产方案</author>
      <pubDate>Thu, 21 Mar 2024 06:52:49 +0000</pubDate>
    </item>
    <item>
      <title>米尔T113开发板实现wifi的AP+STA双开</title>
      <link>https://bbs.myir-tech.com/thread-8833-1-1.html</link>
      <description><![CDATA[在米尔T113的许多应用场景中，需要用到wifi ap模式，方便客户随时连接到设计，查看并配置数据。同时还希望通过wifi sta模式连接到路由器，往云平台上传数据。


我们米尔T113开发板只有一个wifi模块，如何实现呢？
此时可以用到wifi虚拟双网卡模式。
 ...]]></description>
      <category>全志T113核心板及开发板</category>
      <author>米尔国产方案</author>
      <pubDate>Wed, 20 Mar 2024 07:16:44 +0000</pubDate>
    </item>
    <item>
      <title>T113-S3跑linux+LVGL 低成本显示屏</title>
      <link>https://bbs.myir-tech.com/thread-8824-1-1.html</link>
      <description><![CDATA[LVGL对内存的要求相对较低，可以在几百KB到几MB的内存范围内运行。

T113-S3本身内嵌128MB DDR运行LVGL界面非常流畅。
T113原生RGB、MIPI显示接口可以选择的小尺寸、高清屏种类齐全、价格低。
以上搭配可帮助客户实现XX元的高清显示、控制主板。
特别适合仪器仪表、智能 ...]]></description>
      <category>全志T113核心板及开发板</category>
      <author>米尔国产方案</author>
      <pubDate>Sun, 10 Mar 2024 11:21:00 +0000</pubDate>
    </item>
    <item>
      <title>T113_i 内 RISC_V 可以跑了吗？</title>
      <link>https://bbs.myir-tech.com/thread-8821-1-1.html</link>
      <description><![CDATA[关注这款芯片很久了，性价比超高，可惜资料太少，RISC 核不能用]]></description>
      <category>全志T113核心板及开发板</category>
      <author>Zhangyubiao</author>
      <pubDate>Wed, 06 Mar 2024 05:27:30 +0000</pubDate>
    </item>
    <item>
      <title>T113低成本扩展IO方案</title>
      <link>https://bbs.myir-tech.com/thread-8819-1-1.html</link>
      <description><![CDATA[通过I2C总线可以低成本的扩展IO数量，大大增加了使用灵活性。



每个I2C地址可以扩展16个输入/输出，一路I2C总线8个地址最多可扩展128个IO。]]></description>
      <category>全志T113核心板及开发板</category>
      <author>米尔国产方案</author>
      <pubDate>Wed, 06 Mar 2024 02:52:20 +0000</pubDate>
    </item>
    <item>
      <title>T113对接RGB888屏如何使用CAN总线</title>
      <link>https://bbs.myir-tech.com/thread-8814-1-1.html</link>
      <description><![CDATA[T113处理器的RGB接口配置为24bit模式RGB888时，CAN总线的IO就被复用为RGB的数据位了。这种方式用不了CAN总线。


此时需要牺牲颜色灰度，让其工作在RGB666模式，如下表：


如果屏原来就是RGB666，见下表：



如果屏是RGB565，见下表：


 ...]]></description>
      <category>全志T113核心板及开发板</category>
      <author>米尔国产方案</author>
      <pubDate>Sun, 03 Mar 2024 03:54:32 +0000</pubDate>
    </item>
  </channel>
</rss>