RT-Thread和Infineon主持的嵌入式網路應用開發沙龍

hywing發表於2024-06-08

主題

會議由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開源事業越來越紅火

感謝英飛凌合作伙伴的大力支援,祝英飛凌晶片大賣

相關文章