RT-Thread和Infineon主持的嵌入式网络应用开发沙龙

主题

会议由RT-Thread && Infineon共同主持,PSoc62开发板现场演示从0到1搭建智能数据网关

image

RT-Thread介绍

rt-thread社区负责人郭占鑫郭工介绍RT-Thread

image

英飞凌合作伙伴介绍

英飞凌产品负责人介绍英飞凌的产品动态、分享未来的一些嵌入式技术发展方向以及应用案例

image

技术分享(钩子函数)

技术人员介绍有关钩子函数在开源项目、日常项目的用法

  • idle线程
  • uart接收
  • IOT项目案例

image

实验环节

现场撸了英飞凌开发板的点灯代码

/*
 * Copyright (c) 2006-2023, RT-Thread Development Team
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 * Change Logs:
 * Date           Author       Notes
 * 2022-06-29     Rbb666       first version
 */

#include <rtthread.h>
#include <rtdevice.h>

#include "drv_gpio.h"

#define LED0_PIN GET_PIN(0, 1)
#define USER_KEY GET_PIN(6, 2)

void irq_callback()
{
    static int flag = 0;
    rt_kprintf("Key Pressed!\r\n");

    if(flag == 0) {
        rt_pin_write(LED0_PIN, PIN_HIGH);
        flag = 1;
    }
    else {
        rt_pin_write(LED0_PIN, PIN_LOW);
        flag = 0;
    }

}

int main(void)
{
    rt_pin_mode(LED0_PIN, PIN_MODE_OUTPUT);
    rt_pin_mode(USER_KEY, PIN_MODE_INPUT_PULLUP);
    rt_pin_attach_irq(USER_KEY, PIN_IRQ_MODE_RISING, irq_callback, RT_NULL);
    rt_pin_irq_enable(USER_KEY, PIN_IRQ_ENABLE);
    return 0;
}

实验点灯效果

image

抽奖环节

开发板免费送

image

RT-Thread抱枕一个

image

合影

RT-Thread社区人员、Infineon、现场开发者人员集体合影

image

致谢

感谢RT-Thread社区为这次技术分享所作的努力,祝愿RT-Thread开源事业越来越红火

感谢英飞凌合作伙伴的大力支持,祝英飞凌芯片大卖

posted @ 2024-06-08 08:30  hywing  阅读(12)  评论(0编辑  收藏  举报