• interrupt handling in RTX STR9
    Hi all I am using STR9 board with RTX kernel on keil I want to use a hadware timer (timer2) in my code but the following code does not work it does not jump to interrupt handler as the overflow occurs...
  • Keil RTX interrupt handling
    I'm using lpc1768 controller keil RTX rtos and uart receive function by an interrupt. I was set a NVIC priority using NVIC_SetPriority(UART1_IRQn,1) while thread processing it don't goes to IRQHandler...
  • RTX tiny and radio interrupt of NRF24LE1
    Hello to everyone. I write code for NRF24LE1 using KEIL and rtx tiny. But i have some problems. When i first create a task and run it, everythink looks good but when i delete it and then created...
  • rtx tiny
    #include <reg51.h> #include <rtx51tny.h> #include <stdio.h> unsigned char global; void First (void) _task_ 0 { os_create_task(1); os_create_task(2); os_delete_task(0); } void Second (void...
  • External Interrupt handling with RTX Kernel
    Hi; I have been working on a simple project a couple of week now. It has two task which work simultaneously, and an interrupt handler in order to catch user button input.the board i use is stm32l152...