主題
會議由RT-Thread && Infineon共同主持,PSoc62開發板現場演示從0到1搭建智慧資料閘道器
RT-Thread介紹
rt-thread社群負責人郭佔鑫郭工介紹RT-Thread
英飛凌合作伙伴介紹
英飛凌產品負責人介紹英飛凌的產品動態、分享未來的一些嵌入式技術發展方向以及應用案例
技術分享(鉤子函式)
技術人員介紹有關鉤子函式在開源專案、日常專案的用法
- idle執行緒
- uart接收
- IOT專案案例
實驗環節
現場擼了英飛凌開發板的點燈程式碼
/*
* 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;
}
實驗點燈效果
抽獎環節
開發板免費送
RT-Thread抱枕一個
合影
RT-Thread社群人員、Infineon、現場開發者人員集體合影
致謝
感謝RT-Thread社群為這次技術分享所作的努力,祝願RT-Thread開源事業越來越紅火
感謝英飛凌合作伙伴的大力支援,祝英飛凌晶片大賣