2

I'd like to know if its possible to have an interrupt force the scheduler to switch context to a specific task in RTOS. I'm working with microCOS OS

Here is the task which performs the keyscan and posts the character into a mailbox, I need to add some more features to this code like debounce and auto repeat but I need to sort out a trigger mechanism to get it working properly.

I am not sure how to use polling or interrupts to accomplish this

        static  void  AppTaskKeyscan (void *p_arg)
    {
        CPU_INT08U debouncing = 1;
        CPU_INT16U key;
        key_t button={0,0,0};

        (void)p_arg;

         while (DEF_TRUE) 
         {
            static CPU_INT08U pattern;
            key=P10;

            OSTimeDlyHMSM(0, 0, 0, 50);
            P10=0x0E;
            if ((pattern=P10)==0xee)
                {button.data='1', button.live=1;}       
            else if (pattern==0xde)
                {button.data='4', button.live=1;}
            else if (pattern==0xbe)
                {button.data='7', button.live=1;}
            else if (pattern==0x7e)
                {button.data='*', button.live=1;}
            else
            {
                P10=0x0d;
                if ((pattern=P10)==0xed)
                    {button.data='2', button.live=1;}
                else if (pattern==0xdd)
                    {button.data='5', button.live=1;}
                else if (pattern==0xbd)
                    {button.data='8', button.live=1;}
                else if (pattern==0x7d)
                    {button.data='0', button.live=1;}
                else
                {
                    P10=0x0b;
                    if ((pattern=P10)==0xeb)
                        {button.data='3', button.live=1;}
                    else if (pattern==0xdb)
                        {button.data='6', button.live=1;}
                    else if (pattern==0xbb)
                        {button.data='9', button.live=1;}
                    else if (pattern==0x7b)
                        {button.data='#', button.live=1;}
                    else
                    {
                        P10=0x07;
                        if ((pattern=P10)==0xe7)
                            {button.data='A', button.live=1;}
                        else if (pattern==0xd7)
                            {button.data='B', button.live=1;}
                        else if (pattern==0xb7)
                            {button.data='C', button.live=1;}
                        else if (pattern==0x77)
                            {button.data='D', button.live=1;}
                        else
                            button.live=0;
                    }
                }
            }

            P10=pattern; 

            if (button.live==0)
                OSTimeDlyHMSM(0, 0, 0, 50);
            else
            {
                if (P10==pattern)
                OSTimeDlyHMSM(0, 0, 0, 50);
                else
                button.live=0;
            }

            P10=0x00;              
            if (button.live)        //if button live, set unread flag to 1 and start count down
            {
                button.unread=1;
            }

            if(button.unread&&button.data!='X')
            {
                key=button.data;
                OSMboxPost(KeyMbox, (void *) &key);
                button.live=0;
                button.unread=0;
            }

             OSTimeDlyHMSM(0, 0, 0, 200); 
         } // End of While
    }
4

3 回答 3

2

执行此操作的典型方法是有一个键盘处理任务,该任务有一个循环,它在信号量上挂起。键盘中断处理程序将发布信号量,这将导致处理任务准备好并执行。

于 2012-01-05T17:25:20.207 回答
0

调度程序通常会这样做。它的工作是根据进程/线程的优先级知道何时进行上下文切换(给定线程/进程感知调度程序)

编辑:

关于为什么不这样做的原因

想象一个入侵者产生了一个低优先级任务,迫使 CPU 进行上下文切换(从更高优先级的任务)到执行一些恶意有效负载

于 2012-01-05T16:59:18.300 回答
0

您必须使用可用的中断兼容(即非阻塞)IPC 机制来发出任务信号。维修键盘的最简单方法是让 ISR 将键码放入队列中。任何需要用户输入的任务都将从该队列中读取。

或者,您可以简单地让 ISR 增加一个计数信号量,并将键盘解码推迟到一个任务,然后该任务可以将字符放入队列中,任何读取用户输入的任务都可以读取该队列。如果解码时间较长或执行时间可变,这可能更可取。

特别是在 uC/OS-II 中,需要调度程序运行的 ISR 必须使用 OSIntEnter() 和 OSIntExit() 调用。当最后一个嵌套中断完成时,OSIntExit() 会导致调度程序运行。然后将根据调度策略调度任务。无法绕过策略以强制特定任务违反调度策略运行,您也不应该这样做!如果必须运行特定任务,则将其设为最高优先级。

通常,只有进行操作系统调用的 ISR 才需要 ISR 序言/尾声函数,因为不调用的 ISR 不会导致调度程序需要运行。

于 2012-01-07T21:08:35.877 回答