140 lines
3.8 KiB
C
140 lines
3.8 KiB
C
#include <rtthread.h>
|
|
#include <stm32f10x.h>
|
|
|
|
#include <rtgui/event.h>
|
|
#include <rtgui/rtgui_server.h>
|
|
|
|
/*
|
|
key_enter PF11
|
|
key_down PG15
|
|
key_up PG11
|
|
key_right PG14
|
|
key_left PG13
|
|
*/
|
|
#define key_enter_GETVALUE() GPIO_ReadInputDataBit(GPIOF,GPIO_Pin_11)
|
|
#define key_down_GETVALUE() GPIO_ReadInputDataBit(GPIOG,GPIO_Pin_15)
|
|
#define key_up_GETVALUE() GPIO_ReadInputDataBit(GPIOG,GPIO_Pin_11)
|
|
#define key_right_GETVALUE() GPIO_ReadInputDataBit(GPIOG,GPIO_Pin_14)
|
|
#define key_left_GETVALUE() GPIO_ReadInputDataBit(GPIOG,GPIO_Pin_13)
|
|
|
|
/* from remote.c */
|
|
extern void rem_start(void);
|
|
extern void rem_encoder(struct rtgui_event_kbd * p);
|
|
extern unsigned int rem_mode;
|
|
/* from remote.c */
|
|
|
|
static void GPIO_Configuration(void)
|
|
{
|
|
GPIO_InitTypeDef GPIO_InitStructure;
|
|
|
|
/* init gpio configuration */
|
|
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOG | RCC_APB2Periph_GPIOE,ENABLE);
|
|
|
|
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
|
|
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
|
|
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11 | GPIO_Pin_13 | GPIO_Pin_14 | GPIO_Pin_15;
|
|
GPIO_Init(GPIOG,&GPIO_InitStructure);
|
|
|
|
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11;
|
|
GPIO_Init(GPIOF,&GPIO_InitStructure);
|
|
|
|
/* PE2 LED */
|
|
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2;
|
|
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
|
|
GPIO_Init(GPIOE,&GPIO_InitStructure);
|
|
GPIO_SetBits(GPIOE,GPIO_Pin_2);
|
|
}
|
|
|
|
static void key_thread_entry(void *parameter)
|
|
{
|
|
rt_time_t next_delay;
|
|
struct rtgui_event_kbd kbd_event;
|
|
|
|
GPIO_Configuration();
|
|
/* start remote */
|
|
rem_start();
|
|
|
|
/* init keyboard event */
|
|
RTGUI_EVENT_KBD_INIT(&kbd_event);
|
|
kbd_event.mod = RTGUI_KMOD_NONE;
|
|
kbd_event.unicode = 0;
|
|
|
|
while (1)
|
|
{
|
|
next_delay = 10;
|
|
kbd_event.key = RTGUIK_UNKNOWN;
|
|
kbd_event.type = RTGUI_KEYDOWN;
|
|
|
|
if( rem_mode== 2 )
|
|
{
|
|
rem_encoder(&kbd_event);
|
|
}
|
|
|
|
if ( key_enter_GETVALUE() == 0 )
|
|
{
|
|
rt_thread_delay( next_delay*4 );
|
|
if (key_enter_GETVALUE() == 0)
|
|
{
|
|
/* HOME key */
|
|
rt_kprintf("key_home\n");
|
|
kbd_event.key = RTGUIK_HOME;
|
|
}
|
|
else
|
|
{
|
|
rt_kprintf("key_enter\n");
|
|
kbd_event.key = RTGUIK_RETURN;
|
|
}
|
|
}
|
|
|
|
if ( key_down_GETVALUE() == 0 )
|
|
{
|
|
rt_kprintf("key_down\n");
|
|
kbd_event.key = RTGUIK_DOWN;
|
|
}
|
|
|
|
if ( key_up_GETVALUE() == 0 )
|
|
{
|
|
rt_kprintf("key_up\n");
|
|
kbd_event.key = RTGUIK_UP;
|
|
}
|
|
|
|
if ( key_right_GETVALUE() == 0 )
|
|
{
|
|
rt_kprintf("key_right\n");
|
|
kbd_event.key = RTGUIK_RIGHT;
|
|
}
|
|
|
|
if ( key_left_GETVALUE() == 0 )
|
|
{
|
|
rt_kprintf("key_left\n");
|
|
kbd_event.key = RTGUIK_LEFT;
|
|
}
|
|
|
|
if (kbd_event.key != RTGUIK_UNKNOWN)
|
|
{
|
|
/* post down event */
|
|
rtgui_server_post_event(&(kbd_event.parent), sizeof(kbd_event));
|
|
|
|
next_delay = 10;
|
|
/* delay to post up event */
|
|
rt_thread_delay(next_delay);
|
|
|
|
/* post up event */
|
|
kbd_event.type = RTGUI_KEYUP;
|
|
rtgui_server_post_event(&(kbd_event.parent), sizeof(kbd_event));
|
|
}
|
|
|
|
/* wait next key press */
|
|
rt_thread_delay(next_delay);
|
|
}
|
|
}
|
|
|
|
static rt_thread_t key_tid;
|
|
void rt_hw_key_init(void)
|
|
{
|
|
key_tid = rt_thread_create("key",
|
|
key_thread_entry, RT_NULL,
|
|
768, 30, 5);
|
|
if (key_tid != RT_NULL) rt_thread_startup(key_tid);
|
|
}
|