2013-02-07 23:32:26 +08:00
|
|
|
|
/*
|
|
|
|
|
* File : serial.c
|
|
|
|
|
* This file is part of RT-Thread RTOS
|
|
|
|
|
* COPYRIGHT (C) 2013 RT-Thread Develop Team
|
|
|
|
|
*
|
|
|
|
|
* The license and distribution terms for this file may be
|
|
|
|
|
* found in the file LICENSE in this distribution or at
|
|
|
|
|
* http://www.rt-thread.org/license/LICENSE
|
|
|
|
|
*
|
|
|
|
|
* Change Logs:
|
|
|
|
|
* Date Author Notes
|
|
|
|
|
* 2012-09-25 prife first implementation
|
|
|
|
|
* 2013-01-15 prife support linux
|
|
|
|
|
* 2013-02-6 prife rewrite to fit the new serial.c
|
|
|
|
|
*/
|
2013-01-08 22:40:58 +08:00
|
|
|
|
#include <rthw.h>
|
|
|
|
|
#include <rtthread.h>
|
2013-01-22 16:57:47 +08:00
|
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2013-01-08 22:40:58 +08:00
|
|
|
|
#include <windows.h>
|
|
|
|
|
#include <mmsystem.h>
|
|
|
|
|
#include <conio.h>
|
2013-01-22 16:57:47 +08:00
|
|
|
|
#endif
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
2013-01-22 16:57:47 +08:00
|
|
|
|
#include <stdio.h>
|
2013-01-08 22:40:58 +08:00
|
|
|
|
#include "serial.h"
|
|
|
|
|
|
2013-02-07 23:18:59 +08:00
|
|
|
|
struct serial_device serial1;
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
2013-02-07 23:18:59 +08:00
|
|
|
|
#define SAVEKEY(key) seial_save_byte(key, &serial1)
|
2013-01-22 16:57:47 +08:00
|
|
|
|
#ifdef _WIN32
|
2013-01-08 22:40:58 +08:00
|
|
|
|
/*
|
|
|
|
|
* Handler for OSKey Thread
|
|
|
|
|
*/
|
|
|
|
|
static HANDLE OSKey_Thread;
|
|
|
|
|
static DWORD OSKey_ThreadID;
|
|
|
|
|
|
|
|
|
|
static DWORD WINAPI ThreadforKeyGet(LPVOID lpParam);
|
|
|
|
|
void rt_hw_usart_init(void)
|
|
|
|
|
{
|
2013-02-07 23:18:59 +08:00
|
|
|
|
rt_hw_serial_init(&serial1, RT_CONSOLE_DEVICE_NAME);
|
2013-01-08 22:40:58 +08:00
|
|
|
|
/*
|
|
|
|
|
* create serial thread that receive key input from keyboard
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
OSKey_Thread = CreateThread(NULL,
|
|
|
|
|
0,
|
|
|
|
|
(LPTHREAD_START_ROUTINE)ThreadforKeyGet,
|
|
|
|
|
0,
|
|
|
|
|
CREATE_SUSPENDED,
|
|
|
|
|
&OSKey_ThreadID);
|
|
|
|
|
if (OSKey_Thread == NULL)
|
|
|
|
|
{
|
|
|
|
|
//Display Error Message
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
SetThreadPriority(OSKey_Thread,
|
|
|
|
|
THREAD_PRIORITY_NORMAL);
|
|
|
|
|
SetThreadPriorityBoost(OSKey_Thread,
|
|
|
|
|
TRUE);
|
|
|
|
|
SetThreadAffinityMask(OSKey_Thread,
|
|
|
|
|
0x01);
|
|
|
|
|
/*
|
|
|
|
|
* Start OS get key Thread
|
|
|
|
|
*/
|
|
|
|
|
ResumeThread(OSKey_Thread);
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-22 16:57:47 +08:00
|
|
|
|
#else /* POSIX version */
|
|
|
|
|
|
|
|
|
|
#include <pthread.h>
|
|
|
|
|
#include <semaphore.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <signal.h>
|
|
|
|
|
#include <termios.h> /* for tcxxxattr, ECHO, etc */
|
|
|
|
|
#include <unistd.h> /* for STDIN_FILENO */
|
|
|
|
|
|
|
|
|
|
static void * ThreadforKeyGet(void * lpParam);
|
|
|
|
|
static pthread_t OSKey_Thread;
|
|
|
|
|
void rt_hw_usart_init(void)
|
|
|
|
|
{
|
|
|
|
|
int res;
|
2013-07-22 23:02:03 +08:00
|
|
|
|
|
|
|
|
|
rt_hw_serial_init(&serial1, RT_CONSOLE_DEVICE_NAME);
|
2013-01-22 16:57:47 +08:00
|
|
|
|
res = pthread_create(&OSKey_Thread, NULL, &ThreadforKeyGet, NULL);
|
|
|
|
|
if (res)
|
|
|
|
|
{
|
|
|
|
|
printf("pthread create faild, <%d>\n", res);
|
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
2013-01-22 16:57:47 +08:00
|
|
|
|
#ifdef _WIN32
|
2013-01-08 22:40:58 +08:00
|
|
|
|
static DWORD WINAPI ThreadforKeyGet(LPVOID lpParam)
|
2013-01-22 16:57:47 +08:00
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
static struct termios oldt, newt;
|
|
|
|
|
/*simulate windows' getch(), it works!!*/
|
|
|
|
|
void set_stty(void)
|
|
|
|
|
{
|
|
|
|
|
/* get terminal input's attribute */
|
|
|
|
|
tcgetattr(STDIN_FILENO, &oldt);
|
|
|
|
|
newt = oldt;
|
|
|
|
|
|
|
|
|
|
/* set termios' local mode */
|
|
|
|
|
newt.c_lflag &= ~(ECHO|ICANON);
|
|
|
|
|
tcsetattr(STDIN_FILENO, TCSANOW, &newt);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void restore_stty(void)
|
|
|
|
|
{
|
|
|
|
|
/* recover terminal's attribute */
|
|
|
|
|
tcsetattr(STDIN_FILENO, TCSANOW, &oldt);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define getch getchar
|
|
|
|
|
|
|
|
|
|
static void * ThreadforKeyGet(void * lpParam)
|
|
|
|
|
#endif /* not _WIN32*/
|
2013-01-08 22:40:58 +08:00
|
|
|
|
{
|
2013-02-07 23:18:59 +08:00
|
|
|
|
/*
|
|
|
|
|
* <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<EFBFBD><EFBFBD>)<EFBFBD><EFBFBD> 0xe04b
|
|
|
|
|
* <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<EFBFBD><EFBFBD>)<EFBFBD><EFBFBD> 0xe048
|
|
|
|
|
* <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<EFBFBD><EFBFBD>)<EFBFBD><EFBFBD> 0xe04d
|
|
|
|
|
* <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<EFBFBD><EFBFBD>)<EFBFBD><EFBFBD> 0xe050
|
|
|
|
|
*/
|
2013-01-08 22:40:58 +08:00
|
|
|
|
unsigned char key;
|
|
|
|
|
|
2013-01-22 16:57:47 +08:00
|
|
|
|
#ifndef _WIN32
|
|
|
|
|
sigset_t sigmask, oldmask;
|
|
|
|
|
/* set the getchar without buffer */
|
|
|
|
|
sigfillset(&sigmask);
|
|
|
|
|
pthread_sigmask(SIG_BLOCK, &sigmask, &oldmask);
|
|
|
|
|
set_stty();
|
|
|
|
|
#endif
|
2013-01-08 22:40:58 +08:00
|
|
|
|
(void)lpParam; //prevent compiler warnings
|
|
|
|
|
for (;;)
|
|
|
|
|
{
|
|
|
|
|
key = getch();
|
2013-01-22 16:57:47 +08:00
|
|
|
|
#ifdef _WIN32
|
2013-01-08 22:40:58 +08:00
|
|
|
|
if (key == 0xE0)
|
|
|
|
|
{
|
|
|
|
|
key = getch();
|
|
|
|
|
|
|
|
|
|
if (key == 0x48) //up key , 0x1b 0x5b 0x41
|
|
|
|
|
{
|
2013-02-07 23:18:59 +08:00
|
|
|
|
SAVEKEY(0x1b);
|
|
|
|
|
SAVEKEY(0x5b);
|
|
|
|
|
SAVEKEY(0x41);
|
2013-01-08 22:40:58 +08:00
|
|
|
|
}
|
|
|
|
|
else if (key == 0x50)//0x1b 0x5b 0x42
|
|
|
|
|
{
|
2013-02-07 23:18:59 +08:00
|
|
|
|
SAVEKEY(0x1b);
|
|
|
|
|
SAVEKEY(0x5b);
|
|
|
|
|
SAVEKEY(0x42);
|
2013-01-08 22:40:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2013-01-22 16:57:47 +08:00
|
|
|
|
#endif
|
2013-02-07 23:18:59 +08:00
|
|
|
|
SAVEKEY(key);
|
2013-01-08 22:40:58 +08:00
|
|
|
|
}
|
2013-01-22 16:57:47 +08:00
|
|
|
|
} /*** ThreadforKeyGet ***/
|